21 lines
No EOL
397 B
CSS
21 lines
No EOL
397 B
CSS
@import "color-scheme.css";
|
|
@import "classes.css";
|
|
|
|
@font-face {
|
|
font-family: terminess-nf;
|
|
src: url(../fonts/TerminessNerdFont-Regular.ttf);
|
|
}
|
|
|
|
:root {
|
|
font-size: 20px;
|
|
font-family: terminess-nf;
|
|
|
|
padding: 1rem;
|
|
width: 1000px;
|
|
max-width: calc(100% - 2rem);
|
|
line-height: 1.6;
|
|
margin: auto;
|
|
|
|
color: var(--text);
|
|
background-color: var(--background);
|
|
} |