58 lines
1.0 KiB
SCSS
58 lines
1.0 KiB
SCSS
// file: crates/ksp-app-config-desk/frontend/sass/splash.scss
|
|
// version: 1
|
|
|
|
body {
|
|
display: flex;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: transparent;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
#splash-container {
|
|
position: relative;
|
|
width: 960px;
|
|
height: 637px;
|
|
opacity: 1;
|
|
}
|
|
|
|
#splash-image {
|
|
position: absolute;
|
|
inset: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 1;
|
|
}
|
|
|
|
#app-name {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
z-index: 2;
|
|
transform: translate(-50%, -50%);
|
|
color: #fff;
|
|
font-family: "Arial Black", Arial, sans-serif;
|
|
font-size: 76px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
#splash-status {
|
|
position: absolute;
|
|
right: 1rem;
|
|
bottom: 1rem;
|
|
left: 1rem;
|
|
z-index: 3;
|
|
padding: 0.55rem 0.75rem;
|
|
color: #fff;
|
|
background: rgba(0, 0, 0, 0.35);
|
|
font-family: monospace;
|
|
font-size: 0.82rem;
|
|
}
|