Use uppercase for woodstamp font
This commit is contained in:
parent
fbfd9dea20
commit
ec10a26360
4 changed files with 10 additions and 5 deletions
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -28,3 +28,8 @@
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@mixin font-heading-upper {
|
||||||
|
font-family: $font-heading;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue