21 lines
507 B
CSS
21 lines
507 B
CSS
/*
|
|
* Here are the font definitions.
|
|
* You can modify it or create your own and make it loaded
|
|
* after this one in the HTML header section of the index.html
|
|
* template file.
|
|
*/
|
|
|
|
@font-face {
|
|
font-family: 'Roboto Condensed';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url(/static/fonts/RobotoCondensed-Regular.ttf) format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Roboto Condensed';
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
src: url(/static/fonts/RobotoCondensed-Bold.ttf) format('truetype');
|
|
}
|