mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 14:16:12 +03:00
26 lines
563 B
CSS
26 lines
563 B
CSS
@font-feature-values "Otaru Kisa" {
|
|
@annotation { circled: 1; black-boxed: 3; }
|
|
}
|
|
|
|
@font-feature-values Otaru {
|
|
@annotation { circled: 1; black-boxed: 3; }
|
|
}
|
|
|
|
@font-feature-values Otaru Kisa {
|
|
@annotation { circled: 1; black-boxed: 3; }
|
|
}
|
|
|
|
@font-feature-values Taisho Gothic {
|
|
@annotation { boxed: 1; circled: 4; }
|
|
}
|
|
|
|
@font-feature-values Taisho Gothic, Bar {
|
|
@annotation { boxed: 1; circled: 4; }
|
|
}
|
|
|
|
h3.title {
|
|
/* circled form defined for both fonts */
|
|
font-family: Otaru Kisa, Taisho Gothic;
|
|
font-variant: annotation(circled);
|
|
}
|