29 lines
599 B
CSS
29 lines
599 B
CSS
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Source Sans 3';
|
||
|
|
font-style: normal;
|
||
|
|
font-weight: 400;
|
||
|
|
src: url('source-sans-3/Regular.ttf') format('truetype');
|
||
|
|
}
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Source Sans 3';
|
||
|
|
font-style: normal;
|
||
|
|
font-weight: 700;
|
||
|
|
src: url('source-sans-3/Bold.ttf') format('truetype');
|
||
|
|
}
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Source Sans 3';
|
||
|
|
font-style: italic;
|
||
|
|
font-weight: 400;
|
||
|
|
src: url('source-sans-3/Italic.ttf') format('truetype');
|
||
|
|
}
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Source Sans 3';
|
||
|
|
font-style: italic;
|
||
|
|
font-weight: 700;
|
||
|
|
src: url('source-sans-3/BoldItalic.ttf') format('truetype');
|
||
|
|
}
|