monofile/src/style/app/uploads.scss

76 lines
1.4 KiB
SCSS
Raw Normal View History

2023-01-29 14:09:22 -08:00
@use "uploader/add_new_files";
2023-01-29 21:06:25 -08:00
@use "uploader/file";
2023-01-29 14:09:22 -08:00
2023-01-28 16:51:47 -08:00
#uploadWindow {
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
2023-01-29 14:09:22 -08:00
padding:10px 15px 10px 15px;
2023-01-29 21:06:25 -08:00
display:flex;
flex-direction: column;
2023-01-28 16:51:47 -08:00
2023-01-29 14:09:22 -08:00
width:350px;
2023-01-29 21:06:25 -08:00
@media screen and (min-width:500px) {
max-height: calc( 100% - 80px );
}
2023-01-29 14:09:22 -08:00
2023-01-28 16:51:47 -08:00
background-color:#222222;
color:#ddd;
2023-01-28 22:43:33 -08:00
h1, p, a {
2023-01-28 16:51:47 -08:00
margin: 0px;
font-size: 14px;
}
2023-01-28 22:43:33 -08:00
a {
color:#999;
}
2023-01-28 16:51:47 -08:00
h1 {
font-weight:600;
font-size: 25px;
}
.number {
font-family: "Inconsolata", monospace;
}
2023-01-29 21:06:25 -08:00
.uploadContainer {
overflow:auto;
}
button {
cursor:pointer;
background-color:#393939;
color:#DDDDDD;
border:none;
outline:none;
padding:5px;
transition-duration: 250ms;
/*overflow:clip;*/
@media screen and (max-width: 500px) {
font-size:16px;
padding:10px;
}
&:hover {
transition-duration: 250ms;
background-color:#434343;
color: #ffffff;
}
}
2023-01-28 16:51:47 -08:00
@media screen and (max-width: 500px) {
width: calc( 100% - 20px );
height: calc( 100% - 20px );
border-radius:0px;
background-color:#00000000;
transform:none;
left:10px;
top:10px;
padding:0px;
}
}