9 lines
654 B
SCSS
9 lines
654 B
SCSS
/* file: kb-app-demo-desktop/frontend/sass/splash.scss */
|
|
/* version: 1 */
|
|
html, body { width: 100%; height: 100%; margin: 0; background: transparent; overflow: hidden; }
|
|
body { display: grid; place-items: center; font-family: sans-serif; }
|
|
#splash-container { width: 100%; height: 100%; display: grid; place-content: center; justify-items: center; gap: 1rem; opacity: 0; background: radial-gradient(circle, #1f2937, #030712); color: #f9fafb; }
|
|
#splash-container img { width: min(55vw, 420px); max-height: 55vh; object-fit: contain; }
|
|
#splash-container h1 { margin: 0; letter-spacing: .08em; }
|
|
#messages-container { min-height: 1.5rem; color: #d1d5db; }
|