Files
khadhroony-solana-project/crates/ksp-app-config-desk/frontend/sass/splash.scss
2026-08-16 12:32:11 +02:00

66 lines
1.2 KiB
SCSS

// file: crates/ksp-app-config-desk/frontend/sass/splash.scss
// version: 3
@font-face {
font-family: "Dos Amazigh";
src: url("../fonts/DOS_Amazigh.ttf") format("truetype");
font-weight: normal;
font-style: normal;
font-display: swap;
}
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: 0;
}
#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: "Dos Amazigh", 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;
}