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

40 lines
865 B
SCSS
Raw Normal View History

2020-04-05 16:23:27 +02:00
.v-tooltip__content {
2020-04-08 16:41:31 +02:00
&.spell-tooltip-container,
&.condition-tooltip-container {
2020-04-05 16:23:27 +02:00
opacity: 1 !important;
2020-04-08 16:41:31 +02:00
.spell-tooltip, .condition-tooltip {
2020-04-05 16:23:27 +02:00
text-align: left;
width: 50vw;
max-width: 555px;
min-width: 350px;
background-color: #fff;
color: #555;
margin: -5px -16px -21px;
padding: 12px;
box-shadow: 0 0 12px #333;
border-radius: 5px;
.spell-tooltip-title {
background-color: $color-dragon;
color: #fff;
margin: -12px -12px 6px;
padding: 12px;
border-radius: 5px 5px 0 0;
}
.spell-details {
margin-bottom: 24px;
}
2020-04-08 16:41:31 +02:00
.condition-tooltip-title {
background-color: $color-hero;
color: #fff;
margin: -12px -12px 6px;
padding: 12px;
border-radius: 5px 5px 0 0;
}
2020-04-05 16:23:27 +02:00
}
}
}