Combat/automation enhancements !
All checks were successful
Release Creation / build (release) Successful in 58s

This commit is contained in:
2025-11-13 13:59:02 +01:00
parent 6ad8226265
commit 2c25820152
26 changed files with 233 additions and 220 deletions

View File

@@ -188,21 +188,21 @@
}
.opposed-roll-result {
padding: 1rem;
padding: 0.5rem;
background: rgba(0, 0, 0, 0.05);
border-radius: 5px;
font-family: var(--font-primary);
.opposed-header {
text-align: center;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--color-border-light-primary);
margin-bottom: 0.3rem;
padding-bottom: 0.2rem;
border-bottom: 1px solid var(--color-border-light-primary);
h3 {
margin: 0;
font-family: var(--font-title);
font-size: calc(var(--font-size-standard) * 1.2);
font-size: calc(var(--font-size-standard) * 1);
color: var(--color-dark-1);
}
}
@@ -210,8 +210,8 @@
.opposed-content {
display: flex;
flex-direction: column;
gap: 1rem;
margin-bottom: 1rem;
gap: 0.15rem;
margin-bottom: 0.3rem;
}
.opposed-winner,
@@ -219,7 +219,7 @@
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.75rem;
padding: 0.3rem 0.4rem;
border-radius: 5px;
}
@@ -236,34 +236,34 @@
.character-info {
display: flex;
align-items: center;
gap: 0.75rem;
gap: 0.5rem;
img {
width: 48px;
height: 48px;
width: 32px;
height: 32px;
border-radius: 50%;
border: 2px solid var(--color-border-light-primary);
border: 1px solid var(--color-border-light-primary);
}
.character-name {
display: flex;
flex-direction: column;
gap: 0.25rem;
gap: 0.15rem;
strong {
font-size: calc(var(--font-size-standard) * 0.85);
font-size: calc(var(--font-size-standard) * 0.75);
text-transform: uppercase;
color: var(--color-dark-2);
}
.winner-name {
font-size: calc(var(--font-size-standard) * 1.1);
font-size: calc(var(--font-size-standard) * 0.95);
font-weight: bold;
color: var(--color-success);
}
.loser-name {
font-size: calc(var(--font-size-standard) * 1.1);
font-size: calc(var(--font-size-standard) * 0.95);
font-weight: bold;
color: var(--color-failure);
}
@@ -273,18 +273,18 @@
.roll-result {
display: flex;
align-items: center;
gap: 0.5rem;
gap: 0.3rem;
.roll-value {
font-size: calc(var(--font-size-standard) * 1.5);
font-size: calc(var(--font-size-standard) * 1.2);
font-weight: bold;
font-family: var(--font-title);
}
.critical-badge {
padding: 0.25rem 0.5rem;
padding: 0.15rem 0.3rem;
border-radius: 3px;
font-size: calc(var(--font-size-standard) * 0.8);
font-size: calc(var(--font-size-standard) * 0.7);
font-weight: bold;
text-transform: uppercase;
background: var(--color-critical-success);
@@ -304,14 +304,14 @@
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.5rem 0;
font-size: calc(var(--font-size-standard) * 1.1);
gap: 0.3rem;
padding: 0;
font-size: calc(var(--font-size-standard) * 0.85);
font-weight: bold;
color: var(--color-dark-2);
i {
font-size: calc(var(--font-size-standard) * 1.3);
font-size: calc(var(--font-size-standard) * 0.9);
}
}
@@ -319,8 +319,8 @@
display: flex;
justify-content: center;
gap: 0.375rem;
padding: 0.75rem;
margin-top: 0.5rem;
padding: 0.5rem;
margin-top: 0.3rem;
border-top: 1px solid var(--color-border-light-primary);
background: rgba(0, 0, 0, 0.05);
border-radius: 0 0 5px 5px;