Merge branch 'use-uppercase-for-woodstamp' into 'master'

Use uppercase for woodstamp font

See merge request dungeonslayers/ds4!58
This commit is contained in:
Johannes Loher 2021-01-20 22:23:54 +01:00
commit 495e8344db
4 changed files with 10 additions and 5 deletions

View file

@ -2,7 +2,7 @@
margin-top: $margin-sm; margin-top: $margin-sm;
.attribute { .attribute {
.attribute-label { .attribute-label {
font-family: $font-heading; @include font-heading-upper;
font-size: 2em; font-size: 2em;
text-align: center; text-align: center;
} }
@ -23,7 +23,7 @@
.trait { .trait {
.trait-label { .trait-label {
color: transparent; color: transparent;
font-family: $font-heading; @include font-heading-upper;
font-size: 2em; font-size: 2em;
text-align: center; text-align: center;
//text-shadow: -1px 1px 0 $c-black, 1px 1px 0 $c-black, 1px -1px 0 $c-black, -1px -1px 0 $c-black; //text-shadow: -1px 1px 0 $c-black, 1px 1px 0 $c-black, 1px -1px 0 $c-black, -1px -1px 0 $c-black;

View file

@ -8,7 +8,7 @@
padding-right: 3px; padding-right: 3px;
h2.progression-label { h2.progression-label {
font-family: $font-heading; @include font-heading-upper;
display: block; display: block;
height: 50px; height: 50px;
padding: 0; padding: 0;

View file

@ -35,11 +35,11 @@ header.sheet-header {
border: none; border: none;
background-color: transparent; background-color: transparent;
} }
font-family: $font-heading; @include font-heading-upper;
display: block; display: block;
} }
h2.item-type { h2.item-type {
font-family: $font-heading; @include font-heading-upper;
display: block; display: block;
height: 50px; height: 50px;
padding: 0px; padding: 0px;

View file

@ -28,3 +28,8 @@
background-color: transparent; background-color: transparent;
} }
} }
@mixin font-heading-upper {
font-family: $font-heading;
text-transform: uppercase;
}