You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
anonupload/assets/main.css

132 lines
2.2 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
body{
background: #111;
font-family: "Roboto", sans-serif;
2 years ago
text-align: center;
}
p{
color: #fff;
}
a{
color:#fff;
}
.wrapper{
margin-top: 10vh;
2 years ago
text-align: -webkit-center;
}
ul{
color: #848484;
list-style-type: none;
display: inline-flex;
padding: 0;
font-size: 11px;
}
ul li{
padding-right: .2vh;
}
2 years ago
form{
position: absolute;
top: 50%;
left: 50%;
2 years ago
margin-top: -100px;
2 years ago
margin-left: -250px;
width: 500px;
height: 200px;
2 years ago
border: 2px dashed #353535;
}
form p{
2 years ago
position: absolute;
width: 100%;
height: 100%;
2 years ago
margin-top: -20vh;
text-align: center;
color: #ffffff;
2 years ago
z-index: -1;
}
form input{
margin: 0;
padding: 0;
width: 100%;
height: 100%;
outline: none;
opacity: 0;
}
form button{
2 years ago
margin: 0;
color: #fff;
background: #2d2d2d;
border: none;
width: 508px;
height: 35px;
margin-top: 15px;
margin-left: -4px;
border-radius: 4px;
border-bottom: 4px solid #252525;
transition: all .2s ease;
outline: none;
}
form button:hover{
2 years ago
background: #383838;
}
form button:active{
border:0;
}
.notification{
width: 25%;
padding: 10px;
border-radius: 5px;
font-size: 12.5px;
}
.notification.error{
background: #ce3e3e;
color: #fff;
}
.notification.success{
background:#36923b;
color: #fff;
2 years ago
}
2 years ago
.download-area{
position: absolute;
top: 50%;
left: 50%;
margin-top: -100px;
margin-left: -250px;
width: 500px;
height: 200px;
}
.download-area p{
position: absolute;
width: 100%;
height: 100%;
margin-top: -20vh;
text-align: center;
color: #ffffff;
z-index: -1;
}
.download-btn{
margin: 0;
color: #fff;
background: #2d2d2d;
border: none;
width: 508px;
height: 35px;
margin-top: 15px;
margin-left: -4px;
border-radius: 4px;
border-bottom: 4px solid #252525;
transition: all .2s ease;
outline: none;
}
2 years ago
.download-btn.timer{
2 years ago
color: #fff;
background: #2d2d2d;
2 years ago
pointer-events: none;
}
2 years ago
.download-btn:hover{
background: #383838;
}
.download-btn:active{
border:0;
}