mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 15:06:20 +00:00
38 lines
799 B
CSS
38 lines
799 B
CSS
.nitro-loading {
|
|
position: relative;
|
|
background-image: radial-gradient(#1d1a24, #003a6b);
|
|
z-index: 100;
|
|
}
|
|
|
|
.nitro-loading_animation {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
margin: auto;
|
|
right: 0;
|
|
left: 0;
|
|
background: url('@/assets/images/loading/loading.gif') no-repeat top left;
|
|
width: 84px;
|
|
height: 84px;
|
|
zoom: 1.5;
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
.nitro-loading_logo {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
background: url('@/assets/images/notifications/coolui.png') no-repeat top left;
|
|
width: 150px;
|
|
height: 100px;
|
|
z-index: 2;
|
|
}
|
|
|
|
.nitro-loading_text {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
|
|
z-index: 3;
|
|
} |