87 lines
1.3 KiB
SCSS
87 lines
1.3 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.otf") format("opentype");
|
|
}
|
|
|
|
// Font ArchitectsDaughter
|
|
@font-face {
|
|
font-family: "PatrickHand";
|
|
src: url('../fonts/PatrickHand.ttf') format("truetype");
|
|
}
|
|
|
|
$font-primary: "PatrickHand", sans-serif;
|
|
$font-secondary: "BrushtipTexe", 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";
|
|
}
|