mirror of
https://gitlab.com/SpaccInc/SpaccDotWeb.git
synced 2025-06-05 21:29:12 +02:00
38 lines
463 B
CSS
38 lines
463 B
CSS
body {
|
|
background-color: lightgray;
|
|
color: black;
|
|
}
|
|
|
|
div#app > h2 {
|
|
width: max-content;
|
|
rotate: 15deg;
|
|
color: DeepPink;
|
|
}
|
|
|
|
div#transition {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1;
|
|
background: black;
|
|
opacity: 0.25;
|
|
cursor: progress;
|
|
display: none;
|
|
}
|
|
|
|
.particles {
|
|
position: absolute;
|
|
overflow: hidden;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: -1;
|
|
}
|
|
|
|
.particles > * {
|
|
position: absolute;
|
|
}
|