Mobile pass
This commit is contained in:
48
V1/resources/css/components/mobile-menu.css
Normal file
48
V1/resources/css/components/mobile-menu.css
Normal file
@@ -0,0 +1,48 @@
|
||||
.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;
|
||||
}
|
||||
|
||||
.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) {
|
||||
.mobile-menu-container {
|
||||
display: flex;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user