mirror of https://github.com/vapor/docs.git
76 lines
1.7 KiB
CSS
76 lines
1.7 KiB
CSS
/* ==================== */
|
|
/* IMPORT STATIC FONTS */
|
|
/* ==================== */
|
|
|
|
/* ----- Roboto ----- */
|
|
@font-face {
|
|
font-family: "Roboto";
|
|
src: url('/assets/fonts/Roboto-Regular.ttf') format("truetype");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto";
|
|
src: url('/assets/fonts/Roboto-Light.ttf') format("truetype");
|
|
font-weight: 300;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto";
|
|
src: url('/assets/fonts/Roboto-LightItalic.ttf') format("truetype");
|
|
font-weight: 300;
|
|
font-style: italic;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto";
|
|
src: url('/assets/fonts/Roboto-Italic.ttf') format("truetype");
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto";
|
|
src: url('/assets/fonts/Roboto-Bold.ttf') format("truetype");
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto";
|
|
src: url('/assets/fonts/Roboto-BoldItalic.ttf') format("truetype");
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
}
|
|
|
|
/* ----- Roboto Mono ----- */
|
|
@font-face {
|
|
font-family: "Roboto Mono";
|
|
src: url('/assets/fonts/RobotoMono-Regular.ttf') format("truetype");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto Mono";
|
|
src: url('/assets/fonts/RobotoMono-Italic.ttf') format("truetype");
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto Mono";
|
|
src: url('/assets/fonts/RobotoMono-Bold.ttf') format("truetype");
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto";
|
|
src: url('/assets/fonts/RobotoMono-BoldItalic.ttf') format("truetype");
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
}
|
|
|
|
:root{
|
|
--md-text-font: "Roboto";
|
|
--md-code-font: "Roboto Mono";
|
|
} |