19 lines
268 B
SCSS
19 lines
268 B
SCSS
@font-face {
|
|
font: {
|
|
family: 'Terminus';
|
|
display: swap;
|
|
style: normal;
|
|
weight: 500;
|
|
};
|
|
src: url('/Terminus.woff2') format('woff2');
|
|
}
|
|
|
|
* {
|
|
font: {
|
|
family: 'Terminus', monospace;
|
|
size: 15px;
|
|
};
|
|
letter-spacing: 2px;
|
|
text-wrap: nowrap;
|
|
cursor: text;
|
|
} |