32 lines
846 B
CSS
32 lines
846 B
CSS
@font-face {
|
|
font-family: "Roboto Mono";
|
|
src: url("../font/RobotoMono/fonts/ttf/RobotoMono-Regular.ttf") format("truetype");
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto Mono";
|
|
src: url("../font/RobotoMono/fonts/ttf/RobotoMono-Italic.ttf") format("truetype");
|
|
font-style: italic;
|
|
font-weight: 400;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto Mono";
|
|
src: url("../font/RobotoMono/fonts/ttf/RobotoMono-Bold.ttf") format("truetype");
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto Mono";
|
|
src: url("../font/RobotoMono/fonts/ttf/RobotoMono-BoldItalic.ttf") format("truetype");
|
|
font-style: italic;
|
|
font-weight: 700;
|
|
text-rendering: optimizeLegibility;
|
|
}
|