1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 13:14:20 +00:00

tooltips créatures

This commit is contained in:
Maxime Moraine 2021-03-13 18:33:35 +01:00
parent 37e28207f0
commit e15a84fa0e
7 changed files with 281 additions and 5 deletions

View file

@ -7,3 +7,5 @@ $color-table-header-bg: #6f6f6f;
$color-gold: #bab468;
$color-gold-dark: #9f994f;
$color-gold-light: #d6d082;
$color-red: #9b1c47;
$color-purple: #563f5a;

View file

@ -28,8 +28,12 @@
&.tooltip-spell {
background-color: $color-dragon;
}
// &.tooltip-condition {
// }
&.tooltip-monster {
background-color: $color-red;
}
&.tooltip-condition {
background-color: $color-purple;
}
color: #fff;
font-family: 'Oswald', sans-serif;
font-weight: bold;
@ -60,6 +64,11 @@
margin-bottom: .5rem;
padding-bottom: .5rem;
}
.monster-details {
border-bottom: 2px solid $color-red;
margin-bottom: .5rem;
padding-bottom: .5rem;
}
}
}