44 lines
545 B
CSS
44 lines
545 B
CSS
|
html {
|
||
|
background-color: #121212;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: rgb(255, 167, 248);
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: "Inter", sans-serif;
|
||
|
font-size: 1.125em;
|
||
|
}
|
||
|
|
||
|
code {
|
||
|
font-family: "Courier New", Courier, monospace;
|
||
|
}
|
||
|
|
||
|
.inline-list {
|
||
|
list-style: none;
|
||
|
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
|
||
|
.inline-list li {
|
||
|
display: block;
|
||
|
|
||
|
padding-inline-end: 0.5ch;
|
||
|
}
|
||
|
|
||
|
.inline-list li + li {
|
||
|
border-inline-start: 1px solid white;
|
||
|
padding-inline-start: 0.5ch;
|
||
|
}
|
||
|
|
||
|
abbr {
|
||
|
text-decoration: none;
|
||
|
}
|