| 1 |
/* ── Word Cloud ─────────────────────────────────────────────────────────────── */ |
| 2 |
.bkwc-wrap { |
| 3 |
box-sizing: border-box; |
| 4 |
} |
| 5 |
|
| 6 |
.bkwc-cloud { |
| 7 |
display: flex; |
| 8 |
flex-wrap: wrap; |
| 9 |
font-family: var(--bkwcl-cl-ff, inherit); |
| 10 |
font-style: var(--bkwcl-cl-fst, normal); |
| 11 |
text-transform: var(--bkwcl-cl-tt, none); |
| 12 |
} |
| 13 |
|
| 14 |
.bkwc-word { |
| 15 |
display: inline-block; |
| 16 |
line-height: 1.4; |
| 17 |
text-decoration: none; |
| 18 |
cursor: default; |
| 19 |
transition: transform 0.2s ease, opacity 0.2s ease, font-weight 0.1s ease; |
| 20 |
} |
| 21 |
|
| 22 |
a.bkwc-word { |
| 23 |
cursor: pointer; |
| 24 |
} |
| 25 |
|
| 26 |
a.bkwc-word:hover { |
| 27 |
text-decoration: none; |
| 28 |
opacity: 0.8; |
| 29 |
} |
| 30 |
|
| 31 |
/* hover=scale */ |
| 32 |
.bkwc-word[data-hover="scale"]:hover { |
| 33 |
transform: scale(1.12); |
| 34 |
} |
| 35 |
|
| 36 |
/* hover=bold */ |
| 37 |
.bkwc-word[data-hover="bold"]:hover { |
| 38 |
font-weight: 900 !important; |
| 39 |
} |
| 40 |
|
| 41 |
@media (prefers-reduced-motion: reduce) { |
| 42 |
.bkwc-word { |
| 43 |
transition: none !important; |
| 44 |
transform: none !important; |
| 45 |
} |
| 46 |
} |
| 47 |
|