blob: 4699a49add454db5c46c10a94b599228de2d3d3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
@font-face {
font-family: 'FiraSans';
font-style: normal;
font-weight: 400;
src: url(fonts/FiraSansLight.woff) format('woff');
}
@font-face {
font-family: 'FiraSans Condensed';
font-style: normal;
font-weight: 400;
src: url(fonts/FiraSansCondensed-Light.woff) format('woff');
}
body {
font-family: 'FiraSans', sans-serif;
}
.condensed {
font-family: 'FiraSans Condensed', sans-serif;
}
|