yuno/html/styles.css

55 lines
786 B
CSS
Raw Normal View History

2024-08-04 07:28:54 +00:00
body,
html {
height: 100%;
}
body {
background-color: lightgray;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
.game-container {
2024-08-04 08:17:17 +00:00
width: 100%;
height: 100%;
2024-08-04 07:28:54 +00:00
display: flex;
justify-content: center;
align-items: center;
}
2024-08-04 08:17:17 +00:00
.lds-dual-ring {
display: inline-block;
position: absolute;
left: 0;
right: 0;
margin: auto;
width: 80px;
height: 80px;
}
.lds-dual-ring:after {
content: " ";
display: block;
width: 64px;
height: 64px;
border-radius: 50%;
border: 6px solid #fff;
border-color: #fff transparent #fff transparent;
animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
2024-08-04 07:28:54 +00:00
#bevy {
z-index: 2;
}