Ragemp-roleplay-skript/custom.css
2019-04-16 13:59:07 +02:00

47 lines
No EOL
790 B
CSS

body {
margin: 0 auto;
background: transparent;
}
.pagePanel {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.newPanel {
width: auto;
height: auto;
min-height: 250;
background-color: rgba(0, 0, 0, 0.8);
border-radius: 5px;
padding: 20px;
color: #FFF;
text-align: center;
}
.newSpacer {
width: 100%;
height: 20px;
}
.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #f0ad4e;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}