0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 18:32:41 +00:00

font-size corrections

This commit is contained in:
Victor Losada Hernandez
2023-03-21 14:37:04 +01:00
parent 25b5badf90
commit 6281ed044e
2 changed files with 36 additions and 25 deletions

View File

@@ -4,7 +4,7 @@ const dedent = require('dedent-tabs').default;
module.exports = {
dwarvish: () => {
return dedent `##### Dwarvish Script: Sample Alphabet
{{script,wide,scriptFrame,dwarvish
{{script,wide,frame,dwarvish
| a | b | c | d | e | f | g | h | i | j | k | l | m |
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
| a | b | c | d | e | f | g | h | i | j | k | l | m |
@@ -16,7 +16,7 @@ module.exports = {
},
elvish: () => {
return dedent `##### Elvish Script: Sample Alphabet
{{script,wide,scriptFrame,elvish
{{script,wide,frame,elvish
| a | b | c | d | e | f | g | h | i | j | k | l | m |
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
| a | b | c | d | e | f | g | h | i | j | k | l | m |
@@ -28,7 +28,7 @@ module.exports = {
},
draconic: () => {
return dedent `##### Draconic Script: Sample Alphabet
{{script,wide,scriptFrame,draconic
{{script,wide,frame,draconic
| a | b | c | d | e | f | g | h | i | j | k | l | m |
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
| a | b | c | d | e | f | g | h | i | j | k | l | m |

View File

@@ -920,34 +920,45 @@ break-inside : avoid;
font-family: BookInsanityRemake;
text-transform: uppercase;
outline: 1px solid #000;
font-size: 0.7cm;
font-weight: normal;
}
th{
font-size: 0.45cm;
}
td {
font-size: 0.7cm;
}
}
}
&.frame {
border: initial;
border-style: solid;
border-image-outset: .45cm .35cm .4cm .4cm;
border-image-repeat: stretch;
border-image-slice: 170;
border-image-source: @scriptBorder;
border-image-width: 1.4cm;
}
&.dwarvish table tr td {
font-family: Davek;
font-size: .45cm;/*this should be fixed in the font*/
}
&.elvish table tr td {
font-family: Rellanic;
}
&.draconic table tr td {
font-family: Lokharic;
}
}
.scriptFrame {
border: initial;
border-style: solid;
border-image-outset: .45cm .35cm .4cm .4cm;
border-image-repeat: stretch;
border-image-slice: 170;
border-image-source: @scriptBorder;
border-image-width: 1.4cm;
}
.dwarvish td {
font-family: Davek !important;
font-size: .45cm !important;/*this should be fixed in the font*/
}
.elvish td {
font-family: Rellanic !important;
}
.draconic td {
font-family: Lokharic !important;
}
}