18 lines
238 B
CSS
18 lines
238 B
CSS
:root {
|
|
font-family: "Atkinson Hyperlegible", sans-serif;
|
|
background-color: black;
|
|
color: #efefef;
|
|
}
|
|
|
|
section {
|
|
padding: 2em;
|
|
}
|
|
|
|
#dot,
|
|
#safetyDot {
|
|
width: 7px;
|
|
height: 7px;
|
|
background-color: red;
|
|
display: inline-block;
|
|
}
|
|
|