This commit comments out the About and Contact links in the navigation menu and removes the corresponding sections from the index page. Additionally, adjusted header styles for a full-width layout.
92 lines
1.1 KiB
CSS
92 lines
1.1 KiB
CSS
.header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: #0e0c0c;
|
|
z-index: 1000;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
backdrop-filter: blur(5px);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1rem 2rem;
|
|
height: 70px;
|
|
width: 100%;
|
|
border-bottom: 1px solid #444;
|
|
}
|
|
|
|
.header-spacer {
|
|
height: 70px;
|
|
/* Should match the header height */
|
|
}
|
|
|
|
|
|
.logo-container {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo {
|
|
margin-left: 2em;
|
|
height: 4em;
|
|
width: auto;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.logo:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.nav-main {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.nav-main a {
|
|
margin: 0 1rem;
|
|
color: white;
|
|
text-decoration: none;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.nav-main a:hover {
|
|
color: #ffa500;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.header {
|
|
height: 65px;
|
|
}
|
|
|
|
.logo {
|
|
margin-left: 1em;
|
|
height: 3em;
|
|
}
|
|
|
|
.header-spacer {
|
|
height: 65px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.header {
|
|
padding: 0.5rem;
|
|
height: 60px;
|
|
}
|
|
|
|
.logo {
|
|
margin-left: 0.5em;
|
|
height: 2.5em;
|
|
}
|
|
|
|
.nav-main a {
|
|
margin: 0 0.5rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.header-spacer {
|
|
height: 60px;
|
|
}
|
|
} |