You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
893 B
61 lines
893 B
/* GLOBAL */
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
.container {
|
|
margin-top: 2rem;
|
|
margin-bottom: -2rem;
|
|
height: 100vh;
|
|
width: 90%;
|
|
}
|
|
|
|
span.curser {
|
|
cursor:pointer;
|
|
}
|
|
|
|
img.pb {
|
|
max-width: 2rem;
|
|
height: auto;
|
|
}
|
|
|
|
.load_body{
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 45%;
|
|
transform: translate(-50%,-50%);
|
|
background-color: #2a9d8f;
|
|
}
|
|
.progress{
|
|
position: relative;
|
|
height: 10px;
|
|
width: 1110%;
|
|
border: 10px solid #f4a261;
|
|
border-radius: 15px;
|
|
}
|
|
.progress .color{
|
|
position: absolute;
|
|
background-color: #ffffff;
|
|
width: 0px;
|
|
height: 10px;
|
|
border-radius: 15px;
|
|
animation: progres 4s infinite linear;
|
|
}
|
|
@keyframes progres{
|
|
0%{
|
|
width: 0%;
|
|
}
|
|
25%{
|
|
width: 50%;
|
|
}
|
|
50%{
|
|
width: 75%;
|
|
}
|
|
75%{
|
|
width: 85%;
|
|
}
|
|
100%{
|
|
width: 100%;
|
|
}
|
|
}; |