monofile/src/style/app/pulldown.scss

38 lines
559 B
SCSS
Raw Normal View History

2023-01-28 14:08:08 -08:00
@use "../base";
#overlay {
position:absolute;
left:0px;
height: 100%;
2023-01-30 21:32:01 -08:00
width:100%;
top:0px;
opacity:0.25;
border:none;
outline:none;
2023-01-28 14:08:08 -08:00
background-color:#AAAAAA;
z-index: 1000;
}
.pulldown {
position: absolute;
2023-01-30 21:32:01 -08:00
width: 300px;
2023-01-28 14:08:08 -08:00
height: 400px;
background-color: #191919;
2023-01-30 21:32:01 -08:00
color: #dddddd;
2023-01-28 14:08:08 -08:00
top:0px;
left:50%;
transform:translateX(-50%);
2023-01-28 22:21:55 -08:00
@media screen and (max-width: 500px) {
2023-01-28 14:08:08 -08:00
width: 100%;
height: 100%;
}
2023-01-30 21:32:01 -08:00
p, h1, h2 {
margin:0px;
}
2023-01-28 14:08:08 -08:00
z-index: 1001;
}