manager/templates/login/login.css

76 lines
1.2 KiB
CSS
Raw Normal View History

2023-04-24 15:51:18 +00:00
.buttonTryAgain {
font-family: 'Open Sans', sans-serif !important;
background-color: transparent;
border: solid;
border-radius: 15px;
padding: 2%;
border-color: #afb3f7;
color: white;
transition: all 0.2s ease 0s;
}
.buttonTryAgain:hover {
background-color: #afb3f7;
box-shadow: 2px 2px 5px #afb3f7;
}
.buttonTryAgain:active {
background-color: transparent;
}
.box {
text-align: center;
display: flex;
flex-direction: column;
background-color: rgb(122, 147, 172);
padding: 10%;
color: white;
border-radius: 15px;
box-shadow: 2px 2px 5px rgb(122, 147, 172) ;
-webkit-user-select: none;
user-select: none;
2023-04-26 21:26:20 +00:00
2023-04-24 15:51:18 +00:00
}
.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: rgb(40, 40, 40);
font-size: 12px;
}