24 lines
682 B
CSS
24 lines
682 B
CSS
|
@font-face {
|
||
|
font-family: 'Space Mono';
|
||
|
src: url('../fonts/spacemono/SpaceMono-BoldItalic.ttf') format('truetype');
|
||
|
font-weight: bold;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: 'Space Mono';
|
||
|
src: url('../fonts/spacemono/SpaceMono-Bold.ttf') format('truetype');
|
||
|
font-weight: bold;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: 'Space Mono';
|
||
|
src: url('../fonts/spacemono/SpaceMono-Italic.ttf') format('truetype');
|
||
|
font-weight: normal;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: 'Space Mono';
|
||
|
src: url('../fonts/spacemono/SpaceMono-Regular.ttf') format('truetype');
|
||
|
font-weight: normal;
|
||
|
font-style: normal;
|
||
|
}
|