mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
24 lines
526 B
CSS
24 lines
526 B
CSS
|
/**
|
||
|
* @provides font-source-sans-pro
|
||
|
*/
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Source Sans Pro';
|
||
|
font-style: normal;
|
||
|
font-weight: 400;
|
||
|
src: local('Source Sans Pro'),
|
||
|
local('SourceSansPro-Regular'),
|
||
|
url(/rsrc/externals/font/SourceSansPro.woff)
|
||
|
format('woff');
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Source Sans Pro';
|
||
|
font-style: normal;
|
||
|
font-weight: 700;
|
||
|
src: local('Source Sans Pro Bold'),
|
||
|
local('SourceSansPro-Bold'),
|
||
|
url(/rsrc/externals/font/SourceSansProBold.woff)
|
||
|
format('woff');
|
||
|
}
|