23 lines
357 B
SCSS
23 lines
357 B
SCSS
$color-bg: #0e0d14; /* background */
|
|
$color-txt: #ffc0cb; /* text */ /* #ac4aed */
|
|
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
background-color: $color-bg;
|
|
}
|
|
|
|
.centered {
|
|
position: absolute;
|
|
inset: 0 0 0 0;
|
|
margin: auto;
|
|
|
|
display: flex;
|
|
}
|
|
|
|
.heading {
|
|
font-family: monospace;
|
|
font-size: 2em;
|
|
font-weight: bold;
|
|
color: $color-txt;
|
|
}
|