mirror of
https://github.com/mollersuite/monofile.git
synced 2024-11-25 07:06:25 -08:00
37 lines
727 B
SCSS
37 lines
727 B
SCSS
@use "base";
|
|
@use "app/topbar";
|
|
@use "app/pulldown";
|
|
@use "app/uploads";
|
|
|
|
.menuBtn {
|
|
text-decoration:none;
|
|
font-size:16px;
|
|
transition-duration: 100ms;
|
|
|
|
color:#555555;
|
|
background-color: #00000000;
|
|
border:none;
|
|
margin:0 0 0 0;
|
|
cursor:pointer;
|
|
|
|
position:relative;
|
|
top:-1px;
|
|
|
|
&:hover {
|
|
color:slategray;
|
|
transition-duration: 100ms;
|
|
}
|
|
}
|
|
|
|
#appContent {
|
|
position:absolute;
|
|
left:0px;
|
|
top:40px;
|
|
width:100%;
|
|
height: calc( 100% - 40px );
|
|
background-image: linear-gradient(#333,base.$Background);
|
|
|
|
@media screen and (max-width:500px) {
|
|
background-image: linear-gradient(#303030,base.$Background);
|
|
}
|
|
} |