31 lines
600 B
CSS
31 lines
600 B
CSS
@font-face {
|
|
font-family: "IosevkaTerm";
|
|
src: url("/IosevkaTerm/IosevkaTerm-SemiBold.ttf") format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
:root {
|
|
font-family: "IosevkaTerm";
|
|
font-weight: 200;
|
|
line-height: 1.5;
|
|
color-scheme: light dark;
|
|
color: rgba(255, 255, 255, 0.87);
|
|
background-color: #000000;
|
|
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
p {
|
|
font-size: large;
|
|
margin-bottom: 12rem;
|
|
}
|
|
|
|
#app {
|
|
max-width: 1280px;
|
|
margin-left: 2rem;
|
|
} |