Newer
Older
* {
box-sizing: border-box;
}
font-family: Arial, Helvetica, sans-serif;
ul {
margin: 0;
padding: 0;
list-style-type: none;
}
background: url("../assets/images/wallpaper_binary.png");
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
header {
width: 100%;
nav {
background-color: #fff1;
ul {
display: flex;
padding: 0;
margin: 0;
list-style-type: none;
li {
a {
display: flex;
padding: 10px 20px;
color: #b8b9c5;
font-weight: 500;
text-decoration: none;
}
.submenu {
visibility: hidden;
position: absolute;
height: auto;
max-height: 0;
transition: max-height .5s;
top: 100%;
left: 50%;
flex-direction: column;
background-image: url("../assets/images/wallpaper_binary.png");
white-space: nowrap;
}
&:hover,
&.active {
background-color: #fff2;
a {
color: white;
}
}
&:hover {
.submenu {
visibility: unset;
max-height: 1000px;
}
}
}
}
}
}
#page-container {
background-color: white;
width: 1200px;
max-width: 100%;
flex: 1;