40 lines
657 B
CSS
40 lines
657 B
CSS
.boot-screen {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: #000;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 48px;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.boot-logo {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.boot-apple {
|
|
width: 80px;
|
|
height: 80px;
|
|
fill: #00ffff;
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
.boot-progress-track {
|
|
width: 200px;
|
|
height: 4px;
|
|
background: rgba(0, 255, 255, 0.15);
|
|
border: 1px solid rgba(0, 255, 255, 0.3);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.boot-progress-bar {
|
|
height: 100%;
|
|
background: #00ffff;
|
|
transition: width 0.05s linear;
|
|
box-shadow: 0 0 8px #00ffff;
|
|
}
|