53 lines
990 B
CSS
53 lines
990 B
CSS
.mobile-menu-container {
|
|
font-family: 'Mona-Sans';
|
|
padding: 25px 10vmin;
|
|
width: calc(100% - 20vmin);
|
|
display: none;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
position: fixed;
|
|
z-index: 50;
|
|
top: 0;
|
|
}
|
|
|
|
.mobile-menu-icon:hover,
|
|
.mobile-menu-icon:focus {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mobile-menu-items {
|
|
display: none;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
position: fixed;
|
|
width: 100%;
|
|
right: 0;
|
|
color: #F8FAFC;
|
|
background-color: #222;
|
|
padding: 35px 0px;
|
|
top: calc(10vh + 25px);
|
|
}
|
|
|
|
.mobile-menu-items a {
|
|
color: #F8FAFC;
|
|
border-bottom: 1px solid #d4d6d8;
|
|
text-decoration: none;
|
|
font-weight: 200;
|
|
font-size: 35px;
|
|
text-transform: uppercase;
|
|
margin-bottom: 35px;
|
|
}
|
|
|
|
.menu-menu-items a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
body {
|
|
padding-top: 140px;
|
|
}
|
|
|
|
.mobile-menu-container {
|
|
display: flex;
|
|
}
|
|
} |