manager/templates/login/login.css

81 lines
1.3 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%;
2023-04-28 15:29:41 +00:00
border-color: rgb(46, 196, 255);
2023-04-24 15:51:18 +00:00
color: white;
transition: all 0.2s ease 0s;
}
.buttonTryAgain:hover {
2023-04-28 15:29:41 +00:00
color: black;
background-color: rgb(46, 196, 255);
box-shadow: 2px 2px 5px rgb(46, 196, 255);
2023-04-24 15:51:18 +00:00
}
.buttonTryAgain:active {
background-color: transparent;
}
2023-04-28 15:29:41 +00:00
.top-title {
padding: 5% !important;
}
2023-04-24 15:51:18 +00:00
.box {
text-align: center;
display: flex;
flex-direction: column;
2023-04-28 15:29:41 +00:00
background-color: rgb(38, 37, 37);
2023-04-24 15:51:18 +00:00
padding: 10%;
color: white;
border-radius: 15px;
2023-04-28 15:29:41 +00:00
box-shadow: 2px 2px 5px rgb(38, 37, 37) ;
2023-04-24 15:51:18 +00:00
-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 {
2023-04-28 15:29:41 +00:00
color: white;
2023-04-24 15:51:18 +00:00
font-size: 12px;
}