mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
[PR]Add custom formula to weapon base attack (#964)
* Add custom formula to weapon base attack * Remove log * Update weapon custom damage formula label + update font-size in px
This commit is contained in:
parent
471cbd55df
commit
a72d4583cd
43 changed files with 161 additions and 140 deletions
|
|
@ -87,7 +87,7 @@
|
|||
gap: 5px;
|
||||
|
||||
.title {
|
||||
font-size: 20px;
|
||||
font-size: var(--font-size-20);
|
||||
color: @golden;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
|
@ -103,7 +103,7 @@
|
|||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 3px 5px;
|
||||
font-size: 12px;
|
||||
font-size: var(--font-size-12);
|
||||
|
||||
background: @beige-15;
|
||||
border: 1px solid @beige;
|
||||
|
|
|
|||
|
|
@ -81,13 +81,13 @@
|
|||
gap: 5px;
|
||||
|
||||
.title {
|
||||
font-size: 20px;
|
||||
font-size: var(--font-size-20);
|
||||
color: @golden;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.label {
|
||||
font-size: 12px;
|
||||
font-size: var(--font-size-12);
|
||||
color: @beige;
|
||||
margin: 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
&.resource-roll {
|
||||
.reroll-message {
|
||||
text-align: center;
|
||||
font-size: 18px;
|
||||
font-size: var(--font-size-18);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
|
@ -191,7 +191,7 @@
|
|||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
font-size: 10px;
|
||||
font-size: var(--font-size-10);
|
||||
z-index: 2;
|
||||
filter: drop-shadow(0 0 3px black);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -82,12 +82,12 @@
|
|||
.header-label {
|
||||
padding: 8px;
|
||||
.title {
|
||||
font-size: 16px;
|
||||
font-size: var(--font-size-16);
|
||||
color: @golden;
|
||||
font-weight: 700;
|
||||
}
|
||||
.label {
|
||||
font-size: 12px;
|
||||
font-size: var(--font-size-12);
|
||||
color: @beige;
|
||||
margin: 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 10px;
|
||||
font-size: var(--font-size-10);
|
||||
padding: 8px;
|
||||
--button-size: 0;
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@
|
|||
position: absolute;
|
||||
top: 8px;
|
||||
right: 8px;
|
||||
font-size: 18px;
|
||||
font-size: var(--font-size-18);
|
||||
}
|
||||
|
||||
.countdown-container {
|
||||
|
|
|
|||
|
|
@ -161,7 +161,7 @@
|
|||
height: 32px;
|
||||
position: absolute;
|
||||
right: 20px;
|
||||
font-size: 16px;
|
||||
font-size: var(--font-size-16);
|
||||
z-index: 1;
|
||||
color: light-dark(@dark-blue-50, @beige-50);
|
||||
}
|
||||
|
|
@ -304,18 +304,18 @@
|
|||
gap: 5px;
|
||||
|
||||
h1 {
|
||||
font-size: 32px;
|
||||
font-size: var(--font-size-32);
|
||||
}
|
||||
h2 {
|
||||
font-size: 28px;
|
||||
font-size: var(--font-size-28);
|
||||
font-weight: 600;
|
||||
}
|
||||
h3 {
|
||||
font-size: 20px;
|
||||
font-size: var(--font-size-20);
|
||||
font-weight: 600;
|
||||
}
|
||||
h4 {
|
||||
font-size: 16px;
|
||||
font-size: var(--font-size-16);
|
||||
color: @beige;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
border-radius: 50%;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
font-size: 12px;
|
||||
font-size: var(--font-size-12);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -118,7 +118,7 @@
|
|||
|
||||
button {
|
||||
border-radius: 50%;
|
||||
font-size: 12px;
|
||||
font-size: var(--font-size-12);
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
margin-right: 4px;
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@
|
|||
}
|
||||
|
||||
i {
|
||||
font-size: 18px;
|
||||
font-size: var(--font-size-18);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -80,7 +80,7 @@
|
|||
width: 80%;
|
||||
|
||||
.item-name input[type='text'] {
|
||||
font-size: 32px;
|
||||
font-size: var(--font-size-32);
|
||||
height: 42px;
|
||||
text-align: center;
|
||||
width: 90%;
|
||||
|
|
@ -117,7 +117,7 @@
|
|||
label {
|
||||
position: absolute;
|
||||
top: -7px;
|
||||
font-size: 12px;
|
||||
font-size: var(--font-size-12);
|
||||
font-variant: petite-caps;
|
||||
z-index: 2;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue