99 lines
1.5 KiB
SCSS
99 lines
1.5 KiB
SCSS
/** Fonts **/
|
|
|
|
// Font Logotype L5R
|
|
@font-face {
|
|
font-family: "LogotypeL5r";
|
|
src: url("../fonts/LogotypeL5r.ttf") format("truetype");
|
|
}
|
|
|
|
// Font BrushtipTexe
|
|
@font-face {
|
|
font-family: "BrushtipTexe";
|
|
src: url("../fonts/BrushtipTexe.ttf") format("truetype");
|
|
}
|
|
|
|
// Font PatrickHand
|
|
@font-face {
|
|
font-family: "PatrickHand";
|
|
src: url("../fonts/PatrickHand.ttf") format("truetype");
|
|
}
|
|
|
|
// Font ManoNegra
|
|
@font-face {
|
|
font-family: "ManoNegra";
|
|
src: url("../fonts/ManoNegra.ttf") format("truetype");
|
|
}
|
|
|
|
$font-primary: "PatrickHand", sans-serif;
|
|
$font-secondary: "BrushtipTexe", sans-serif;
|
|
$font-tertiary: "ManoNegra", sans-serif;
|
|
$font-dice: "LogotypeL5r", sans-serif;
|
|
|
|
body {
|
|
font: 16px $font-primary;
|
|
letter-spacing: 0.05rem;
|
|
}
|
|
|
|
h1,
|
|
h4 {
|
|
font-family: $font-secondary;
|
|
}
|
|
h1 {
|
|
font-size: 2rem;
|
|
}
|
|
h4 {
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
i.strife,
|
|
i.success,
|
|
i.explosive,
|
|
i.opportunity,
|
|
i.d6,
|
|
i.d12,
|
|
i.i_earth,
|
|
i.i_water,
|
|
i.i_fire,
|
|
i.i_air,
|
|
i.i_void {
|
|
font-family: LogotypeL5r;
|
|
line-height: 1rem;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
i.strife:before {
|
|
content: "f";
|
|
}
|
|
i.success:before {
|
|
content: "s";
|
|
}
|
|
i.explosive:before {
|
|
content: "e";
|
|
}
|
|
i.opportunity:before {
|
|
content: "o";
|
|
}
|
|
i.d6:before {
|
|
content: "r";
|
|
}
|
|
i.d12:before {
|
|
content: "k";
|
|
}
|
|
i.i_earth:before {
|
|
content: "g";
|
|
}
|
|
i.i_water:before {
|
|
content: "w";
|
|
}
|
|
i.i_fire:before {
|
|
content: "i";
|
|
}
|
|
i.i_air:before {
|
|
content: "a";
|
|
}
|
|
i.i_void:before {
|
|
content: "v";
|
|
}
|