1
0
Fork 0
forked from github/pelican

Store fonts of notmyidea theme locally

Used google-font-download ((commit ecc521e894c55e83773351264fe5bbef99ae70ad))
to download the fonts.
  font-download -f 'woff woff2' -l 'latin' 'Yanone Kaffeesatz:400'
This commit is contained in:
Jorge Maldonado Ventura 2017-07-30 17:46:18 +02:00
commit 9ce09c0715
8 changed files with 432 additions and 1 deletions

View file

@ -0,0 +1,12 @@
@font-face {
font-family: 'Yanone Kaffeesatz';
font-style: normal;
font-weight: 400;
src:
local('Yanone Kaffeesatz Regular'),
local('YanoneKaffeesatz-Regular'),
/* from https://fonts.gstatic.com/s/yanonekaffeesatz/v8/YDAoLskQQ5MOAgvHUQCcLRTHiN2BPBirwIkMLKUspj4.woff */
url('Yanone_Kaffeesatz_400.woff') format('woff'),
/* from https://fonts.gstatic.com/s/yanonekaffeesatz/v8/YDAoLskQQ5MOAgvHUQCcLfGwxTS8d1Q9KiDNCMKLFUM.woff2 */
url('Yanone_Kaffeesatz_400.woff2') format('woff2');
}