Add main navigation menu, replace intro blurb with full About page

This commit is contained in:
Râu Cao
2023-08-30 17:17:39 +02:00
parent ea15e69d79
commit 3679412b3c
11 changed files with 146 additions and 59 deletions
@@ -0,0 +1,30 @@
nav#main-menu {
padding: 2rem;
background-color: rgba(0,0,0,.2);
ul {
list-style: none;
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
gap: 3rem;
font-size: 1.5rem;
@include media-max(small) {
justify-content: center;
font-size: 1.2rem;
}
}
li {
a {
text-decoration: none;
color: #fff;
&.active, &:hover {
color: $yellow;
}
}
}
}
+1
View File
@@ -13,6 +13,7 @@
h1 {
display: inline-block;
text-transform: uppercase;
font-weight: bold;
a {
color: inherit;