15 lines
335 B
CSS
15 lines
335 B
CSS
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Source Sans Pro';
|
||
|
|
font-style: normal;
|
||
|
|
font-weight: 400;
|
||
|
|
src: url('source-sans-pro/SourceSansPro-Regular.ttf') format('truetype');
|
||
|
|
}
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Source Sans Pro';
|
||
|
|
font-style: italic;
|
||
|
|
font-weight: 400;
|
||
|
|
src: url('source-sans-pro/SourceSansPro-Italic.ttf') format('truetype');
|
||
|
|
}
|