24 lines
302 B
CSS
24 lines
302 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;
|
|
}
|