manager/templates/login/login.css
2023-05-05 13:53:36 +02:00

81 lines
1.3 KiB
CSS

.buttonTryAgain {
font-family: 'Open Sans', sans-serif !important;
background-color: transparent;
border: solid;
border-radius: 15px;
padding: 2%;
border-color: rgb(46, 196, 255);
color: white;
transition: all 0.2s ease 0s;
}
.buttonTryAgain:hover {
color: black;
background-color: rgb(46, 196, 255);
box-shadow: 2px 2px 5px rgb(46, 196, 255);
}
.buttonTryAgain:active {
background-color: transparent;
}
.top-title {
padding: 5% !important;
}
.box {
text-align: center;
display: flex;
flex-direction: column;
background-color: #36374c;
padding: 10%;
color: white;
border-radius: 15px;
box-shadow: 2px 2px 5px #36374c ;
-webkit-user-select: none;
user-select: none;
}
.loading {
-webkit-animation: rotating 1s linear infinite;
animation: rotating 1s linear infinite;
width: 30%;
height: 30%;
}
.discord-logo {
width: 30%;
height: 30%;
}
.loadingSpan {
font-size: 20vw;
}
@-webkit-keyframes rotating {
from{
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to{
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.infoSpan {
color: white;
font-size: 12px;
}