28 lines
859 B
CSS
28 lines
859 B
CSS
@font-face {
|
|
font-family: 'Source Sans Pro';
|
|
src: local('Source Sans Pro Semibold'), local('SourceSansPro-Semibold'),
|
|
url('SourceSansPro-Semibold.woff2') format('woff2'),
|
|
url('SourceSansPro-Semibold.woff') format('woff');
|
|
font-weight: 600;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Source Sans Pro';
|
|
src: local('Source Sans Pro Italic'), local('SourceSansPro-It'),
|
|
url('SourceSansPro-It.woff2') format('woff2'),
|
|
url('SourceSansPro-It.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Source Sans Pro';
|
|
src: local('Source Sans Pro'), local('SourceSansPro-Regular'),
|
|
url('SourceSansPro-Regular.woff2') format('woff2'),
|
|
url('SourceSansPro-Regular.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|