27 lines
545 B
CSS
27 lines
545 B
CSS
@import "tailwindcss";
|
|
|
|
@font-face {
|
|
font-family: "JetBrains Mono";
|
|
src: url(fonts/JetBrainsMono-Regular.ttf) format("truetype");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "JetBrains Mono";
|
|
src: url(fonts/JetBrainsMono-Bold.ttf) format("truetype");
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "JetBrains Mono";
|
|
src: url(fonts/JetBrainsMono-Italic.ttf) format("truetype");
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|
|
|
|
html {
|
|
font-family: "JetBrains Mono", monospace;
|
|
}
|