mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 09:12:41 +01:00
15 lines
334 B
CSS
15 lines
334 B
CSS
|
/**
|
||
|
* @provides font-roboto-slab
|
||
|
* @requires phui-fontkit-css
|
||
|
*/
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Roboto Slab';
|
||
|
font-style: normal;
|
||
|
src: local('RobotoSlab'),
|
||
|
url(/rsrc/externals/font/robotoslab/RobotoSlab.woff2)
|
||
|
format('woff2'),
|
||
|
url(/rsrc/externals/font/robotoslab/RobotoSlab.woff)
|
||
|
format('woff');
|
||
|
}
|