mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-13 09:06:14 +01:00
16 lines
344 B
CSS
16 lines
344 B
CSS
|
/**
|
||
|
* @provides font-slabo
|
||
|
* @requires phui-fontkit-css
|
||
|
*/
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Slabo';
|
||
|
font-style: normal;
|
||
|
src: local('Slabo'),
|
||
|
local('Slabo-Regular'),
|
||
|
url(/rsrc/externals/font/slabo/Slabo-Regular.woff2)
|
||
|
format('woff2'),
|
||
|
url(/rsrc/externals/font/slabo/Slabo-Regular.woff)
|
||
|
format('woff');
|
||
|
}
|