added some more things

This commit is contained in:
Robin-qwerty 2024-04-09 16:19:28 +02:00
parent 6ea8f49b3f
commit eb7cb7b11f
3 changed files with 124 additions and 37 deletions

View file

@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -10,9 +9,8 @@
<link rel="stylesheet" href="../style/style.css">
<script src="../script/navbar.js" defer></script>
</head>
<body>
<div class="top-bar">
<header class="top-bar">
<div class="logo">
<a href="../../">
<span class="mono">[N]</span>
@ -31,7 +29,7 @@
<li><a href=".../../index.html#contact" onclick="hideMenu()">Contact</a></li>
</ul>
</nav>
</div>
</header>
<div id="pricing-plan-header">
<h1>Pricing Plans</h1>
@ -88,5 +86,4 @@
<hr>
</div>
</body>
</html>

View file

@ -22,6 +22,10 @@ body {
text-decoration: none;
}
nav a {
font-size: 20px;
}
header {
position: sticky;
top: 0%;
@ -76,6 +80,11 @@ section#intro {
border-bottom: 3px solid gray;
}
section#intro p {
max-width: 65%;
text-align: center;
font-size: 18px;
}
div section {
width: fit-content;
@ -182,8 +191,7 @@ div.rows {
justify-content: space-between;
background-color: var(--theme-color);
color: #fff;
padding: 0.5rem 2rem;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
/* padding: 0.5rem 2rem; */
}
.top-bar .logo {
@ -297,7 +305,7 @@ div.rows {
flex: 1;
margin: 0.5rem;
max-width: 325px;
min-width: 250px; /* Add a minimum width */
min-width: 250px;
}
.pricing-plan h2 {
@ -336,6 +344,55 @@ div.rows {
@media (max-width: 600px) {
.pricing-plan {
max-width: calc(50% - 1rem); /* Adjusting max-width for smaller screens */
max-width: calc(50% - 1rem);
}
}
/* ---------- Footer Styles ---------- */
.footer {
margin-top: 50px;
background-color: #333;
color: #fff;
padding-top: 20px;
}
.footer-content {
display: flex;
justify-content: space-around;
align-items: flex-start;
max-width: 1200px;
margin: 0 auto;
}
.footer-section {
padding: 0 20px;
}
.footer-section h3 {
margin-bottom: 10px;
}
.footer-section ul {
padding: 0;
margin: 0;
}
.footer-section ul li {
list-style-type: none;
margin-bottom: 5px;
}
.footer-section ul li a {
color: #fff;
text-decoration: none;
transition: color 0.3s;
}
.footer-section ul li a:hover {
color: #ffcc00;
}
.footer-bottom {
background-color: #222;
padding: 10px 0;
text-align: center;
}