30 lines
760 B
Sass
30 lines
760 B
Sass
// File: _anonymous-pro.sass
|
|
|
|
// Base font path
|
|
@use '../.config' as config
|
|
$font-path: '#{config.$base-path}/anonymous-pro/static'
|
|
|
|
@font-face
|
|
font-family: 'Anonymous Pro'
|
|
src: url('#{$font-path}/AnonymousPro-Regular.ttf') format('truetype')
|
|
font-weight: normal
|
|
font-style: normal
|
|
|
|
@font-face
|
|
font-family: 'Anonymous Pro'
|
|
src: url('#{$font-path}/AnonymousPro-Bold.ttf') format('truetype')
|
|
font-weight: bold
|
|
font-style: normal
|
|
|
|
@font-face
|
|
font-family: 'Anonymous Pro'
|
|
src: url('#{$font-path}/AnonymousPro-Italic.ttf') format('truetype')
|
|
font-weight: normal
|
|
font-style: italic
|
|
|
|
@font-face
|
|
font-family: 'Anonymous Pro'
|
|
src: url('#{$font-path}/AnonymousPro-BoldItalic.ttf') format('truetype')
|
|
font-weight: bold
|
|
font-style: italic
|
|
|