File "style.css"
Full Path: /home/analogde/www/New/upload03/assets/css/style.css
File size: 3.13 KB
MIME-type: text/x-asm
Charset: utf-8
/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");
/*===== VARIABLES CSS =====*/
:root{
/*===== Colores =====*/
--title-color: #F2F2F3;
--body-color: #0F0F10;
--form-container-color: #181B1B;
--first-color: #3B3E40;
--second-color: #141515;
/*===== Fuente y tipografia =====*/
--body-font: 'Roboto', sans-serif;
--bigger-font-size: 3.5rem;
--normal-font-size: 1rem;
--small-font-size: .75rem;
}
/*===== BASE =====*/
*,::before,::after{
box-sizing: border-box;
}
body{
margin: 0;
padding: 0;
font-family: var(--body-font);
font-size: var(--normal-font-size);
/* background-color: #f3f2ef; */
}
h1{
margin: 0;
}
.container{
height: 100vh;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--body-color);
flex-direction: column;
gap:.5rem;
}
.container h1{
font-size: var(--bigger-font-size);
/* line-height:4rem; */
background: linear-gradient(var(--first-color), var(--second-color));
background-clip: text;
color: transparent;
text-transform: uppercase;
}
.form__container{
width: 430px;
background-color: var(--form-container-color);
opacity: 1;
border-radius: .5rem;
padding: 30px;
color: var(--title-color);
}
.form__container form{
height: 167px;
display: flex;
cursor: pointer;
margin: 30px 0;
align-items: center;
justify-content: center;
flex-direction: column;
border-radius: 5px;
border: 2px dashed var(--first-color);
}
.icon{
font-size:4rem;
}
.helper__text{
font-size: var(--normal-font-size);
margin-top: .8rem;
}
.row{
background-color: var(--second-color);
list-style: none;
padding: 15px 20px;
display: flex;
align-items: center;
justify-content: space-between;
border-radius: .5rem;
margin-bottom: 10px;
}
.file__profgress-icon{
font-size: calc(var(--bigger-font-size) - 1rem);
}
.details span{
font-size: var(--small-font-size);
}
.progress-area .row .content{
width: 100%;
margin-left: 15px;
}
.progress-area .details{
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 7px;
}
.progress-area .content .progress-bar{
height: 6px;
width: 100%;
margin-bottom: 4px;
background: #fff;
border-radius: 30px;
}
.content .progress-bar .progress{
height: 100%;
width: 0%;
background: linear-gradient(var(--first-color), var(--second-color));;
border-radius: inherit;
}
.uploaded-area{
max-height: 200px;
overflow-y: scroll;
/* overflow: hidden; */
}
.uploaded-area.onprogress{
max-height: 150px;
}
.uploaded-area::-webkit-scrollbar{
width: 0px;
}
.uploaded-area .row .content{
display: flex;
align-items: center;
}
.uploaded-area .row .details{
display: flex;
margin-left: 15px;
flex-direction: column;
gap: .3rem;
}
.uploaded-area .row .details .size{
color: #404040;
/* font-size: 11px; */
}
.file__check-icon{
font-size: calc(var(--normal-font-size) + .5rem);
}