This commit is contained in:
rwanoux
2024-11-22 18:18:10 +01:00
parent 1f1198b2d5
commit 9a4a3553d4
4 changed files with 15 additions and 8 deletions
+1 -1
View File
File diff suppressed because one or more lines are too long
+4
View File
@@ -39,6 +39,10 @@
flex: 2; flex: 2;
} }
.flexsmall {
flex: 0.5
}
// Alignment styles. // Alignment styles.
.align-left { .align-left {
justify-content: flex-start; justify-content: flex-start;
+5 -7
View File
@@ -225,9 +225,8 @@ ul.unstyled li {
.system-vermine2047 .sheet.actor form div.hexa { .system-vermine2047 .sheet.actor form div.hexa {
clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
background: radial-gradient(circle, rgba(255, 255, 255, 0.425) 0%, rgba(0, 0, 0, 0.288) 100%); background: radial-gradient(circle, rgba(255, 255, 255, 0.425) 0%, rgba(0, 0, 0, 0.288) 100%);
height: unset; height: 1.5rem;
max-width: 1.5rem; max-width: 1.5rem;
aspect-ratio: 1/1;
color: black; color: black;
transform: rotate(90deg); transform: rotate(90deg);
transition: 0.2s; transition: 0.2s;
@@ -377,9 +376,8 @@ ul.unstyled li {
&.hexa { &.hexa {
clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
background: radial-gradient(circle, rgba(255, 255, 255, 0.425) 0%, rgba(0, 0, 0, 0.288) 100%); background: radial-gradient(circle, rgba(255, 255, 255, 0.425) 0%, rgba(0, 0, 0, 0.288) 100%);
height: unset; height: 1.5rem;
max-width: 1.5rem; max-width: 1.5rem;
aspect-ratio: 1/1;
color: black color: black
} }
@@ -725,9 +723,9 @@ ul.unstyled li {
text-align: center; text-align: center;
clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
background: radial-gradient(circle, rgba(255, 255, 255, 0.425) 0%, rgba(0, 0, 0, 0.288) 100%); background: radial-gradient(circle, rgba(255, 255, 255, 0.425) 0%, rgba(0, 0, 0, 0.288) 100%);
max-height: 1.2rem; max-height: 1.5rem;
max-width: 1.2rem; max-width: 1.5rem;
min-width: 1.2rem; min-width: 1.5rem;
aspect-ratio: 1/1; aspect-ratio: 1/1;
color: black; color: black;
vertical-align: center; vertical-align: center;
+5
View File
@@ -539,3 +539,8 @@ span.game-mode {
color: rgba(245, 124, 124, 0.8); color: rgba(245, 124, 124, 0.8);
} }
} }
.shadow {
box-shadow: 0 0.5rem 2rem black;
margin: 2rem 0
}