31 lines
814 B
CSS
31 lines
814 B
CSS
@font-face {
|
|
font-family: "Roboto";
|
|
src: url("../fonts/Roboto-Light.woff2") format("woff2"),
|
|
url("../fonts/Roboto-Light.woff") format("woff"),
|
|
url("../fonts/Roboto-Light.ttf") format("truetype");
|
|
font-weight: 300;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto";
|
|
src: url("../fonts/Roboto-Regular.woff2") format("woff2"),
|
|
url("../fonts/Roboto-Regular.woff") format("woff"),
|
|
url("../fonts/Roboto-Regular.ttf") format("truetype");
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto";
|
|
src: url("../fonts/Roboto-Medium.woff2") format("woff2"),
|
|
url("../fonts/Roboto-Medium.woff") format("woff"),
|
|
url("../fonts/Roboto-Medium.ttf") format("truetype");
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
}
|
|
|
|
body {
|
|
font-family: "Roboto", sans-serif;
|
|
}
|