Use uppercase for woodstamp font

This commit is contained in:
Johannes Loher 2021-01-19 17:20:50 +01:00
parent fbfd9dea20
commit ec10a26360
4 changed files with 10 additions and 5 deletions

View file

@ -2,7 +2,7 @@
margin-top: $margin-sm;
.attribute {
.attribute-label {
font-family: $font-heading;
@include font-heading-upper;
font-size: 2em;
text-align: center;
}
@ -23,7 +23,7 @@
.trait {
.trait-label {
color: transparent;
font-family: $font-heading;
@include font-heading-upper;
font-size: 2em;
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;

View file

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

View file

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

View file

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