monofile/src/style/app.scss

32 lines
511 B
SCSS
Raw Normal View History

2023-01-28 01:33:33 -08:00
@use "base";
@use "app/topbar";
2023-01-28 14:08:08 -08:00
@use "app/pulldown";
2023-01-28 16:51:47 -08:00
@use "app/uploads";
2023-01-28 01:33:33 -08:00
.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;
}
2023-01-28 14:08:08 -08:00
}
#appContent {
position:absolute;
left:0px;
top:40px;
width:100%;
height: calc( 100% - 40px );
}