Newer
Older
ul {
margin: 0;
padding: 0;
list-style-type: none;
}
a {
color: $blue_2;
text-decoration: none;
&:hover {
color: $blue_3;
}
}
blue {
color: $blue_2;
}
background: url("/assets/images/wallpaper_binary_white.png");
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
header {
width: 100%;
nav {
display: flex;
align-items: center;
height: $navbar_height;
a {
display: flex;
align-items: center;
gap: 10px;
img {
height: 40px;
width: auto;
}
img.logo-text {
width: 120px;
height: auto;
}
ul {
display: flex;
padding: 0;
margin: 0;
list-style-type: none;
.burger {
display: none;
}
@media screen and (max-width: $screen_s) {
justify-content: space-between;
.burger {
display: flex;
font-weight: bold;
border: 1px solid;
margin: 0 20px;
cursor: pointer;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 100%;
}
ul {
display: none;
&.responsive-show {
display: flex;
position: absolute;
right: 0;
max-width: 100vw;
min-width: 50vw;
top: $navbar_height;
flex-direction: column;
background-color: white;
box-shadow: 0 4px 6px 2px #0000000a;
li {
&.active {
a {
border: none;
}
}
.submenu {
display: flex;
visibility: visible;
position: relative;
height: unset;
max-height: unset;
transition: max-height 0.6s;
top: unset;
left: unset;
li {
a {
font-weight: 400;
color: $light_1;
}
}
margin-left: 20px;
}
}
}
}
}
}
}
#page-container {
background-color: white;
width: 1200px;
max-width: 100%;
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
font-size: 12px;
span {
color: $light_1;
}
.logo {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
img {
width: 35px;
&.text-logo {
width: 100px;
}
}
}