monofile/src/style/app/uploads.scss

97 lines
2.1 KiB
SCSS
Raw Normal View History

2023-01-28 16:51:47 -08:00
#uploadWindow {
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
padding:10px;
background-color:#222222;
color:#ddd;
h1, p {
margin: 0px;
font-size: 14px;
}
h1 {
font-weight:600;
font-size: 25px;
}
.number {
font-family: "Inconsolata", monospace;
}
2023-01-28 22:21:55 -08:00
#add_new_files {
background-color:#191919;
border: 1px solid gray;
width:350px;
padding: 0px 0px 10px 0px;
@media screen and (max-width: 500px) {
width:100%;
}
p {
font-family: "Fira Code", monospace;
text-align: left;
margin: 0px 0px 0px 10px;
font-size: 30px;
span {
font-size:16px;
position:relative;
top:-4px;
left:10px;
}
@media screen and (max-width:500px) {
font-size: 40px;
span {
font-size:20px;
position:relative;
top:-6px;
left:10px;
}
}
}
#file_add_btns {
width:calc( 100% - 20px );
margin:auto;
position:relative;
display:flex;
flex-direction:row;
column-gap:10px;
button {
background-color:#444444;
color:white;
border:none;
border-radius: 8px;
padding:5px;
flex-basis:50%;
flex-grow:1;
@media screen and (max-width: 500px) {
font-size:16px;
padding:10px;
}
}
}
}
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;
}
}