| 1 |
.bkbg-fs-wrap { |
| 2 |
box-sizing: border-box; |
| 3 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; |
| 4 |
} |
| 5 |
.bkbg-fs-wrap * { box-sizing: border-box; } |
| 6 |
.bkbg-fs-wrap .bkbg-fs-title { |
| 7 |
font-family: var(--bkbg-fs-tt-font-family, inherit); |
| 8 |
font-size: var(--bkbg-fs-tt-font-size-d, 24px); |
| 9 |
font-weight: var(--bkbg-fs-tt-font-weight, 700); |
| 10 |
font-style: var(--bkbg-fs-tt-font-style, normal); |
| 11 |
text-decoration: var(--bkbg-fs-tt-text-decoration, none); |
| 12 |
text-transform: var(--bkbg-fs-tt-text-transform, none); |
| 13 |
line-height: var(--bkbg-fs-tt-line-height-d, 1.2); |
| 14 |
letter-spacing: var(--bkbg-fs-tt-letter-spacing-d, normal); |
| 15 |
word-spacing: var(--bkbg-fs-tt-word-spacing-d, normal); |
| 16 |
} |
| 17 |
.bkbg-fs-subtitle { |
| 18 |
font-family: var(--bkbg-fs-ts-font-family, inherit); |
| 19 |
font-size: var(--bkbg-fs-ts-font-size-d, 15px); |
| 20 |
font-weight: var(--bkbg-fs-ts-font-weight, 400); |
| 21 |
font-style: var(--bkbg-fs-ts-font-style, normal); |
| 22 |
text-decoration: var(--bkbg-fs-ts-text-decoration, none); |
| 23 |
text-transform: var(--bkbg-fs-ts-text-transform, none); |
| 24 |
line-height: var(--bkbg-fs-ts-line-height-d, 1.5); |
| 25 |
letter-spacing: var(--bkbg-fs-ts-letter-spacing-d, normal); |
| 26 |
word-spacing: var(--bkbg-fs-ts-word-spacing-d, normal); |
| 27 |
} |
| 28 |
.bkbg-fs-scale { width: 100%; } |
| 29 |
.bkbg-fs-row { display: flex; align-items: flex-start; gap: 16px; } |
| 30 |
.bkbg-fs-sample { word-break: break-word; min-width: 0; } |
| 31 |
.bkbg-fs-meta { display: flex; flex-direction: column; gap: 2px; align-items: flex-end; min-width: 80px; flex-shrink: 0; } |
| 32 |
|
| 33 |
/* Typography responsive */ |
| 34 |
@media (max-width: 1024px) { |
| 35 |
.bkbg-fs-wrap .bkbg-fs-title { font-size: var(--bkbg-fs-tt-font-size-t, var(--bkbg-fs-tt-font-size-d, 24px)); line-height: var(--bkbg-fs-tt-line-height-t, var(--bkbg-fs-tt-line-height-d, 1.2)); letter-spacing: var(--bkbg-fs-tt-letter-spacing-t, var(--bkbg-fs-tt-letter-spacing-d, normal)); word-spacing: var(--bkbg-fs-tt-word-spacing-t, var(--bkbg-fs-tt-word-spacing-d, normal)); } |
| 36 |
.bkbg-fs-subtitle { font-size: var(--bkbg-fs-ts-font-size-t, var(--bkbg-fs-ts-font-size-d, 15px)); line-height: var(--bkbg-fs-ts-line-height-t, var(--bkbg-fs-ts-line-height-d, 1.5)); letter-spacing: var(--bkbg-fs-ts-letter-spacing-t, var(--bkbg-fs-ts-letter-spacing-d, normal)); word-spacing: var(--bkbg-fs-ts-word-spacing-t, var(--bkbg-fs-ts-word-spacing-d, normal)); } |
| 37 |
} |
| 38 |
@media (max-width: 767px) { |
| 39 |
.bkbg-fs-wrap .bkbg-fs-title { font-size: var(--bkbg-fs-tt-font-size-m, var(--bkbg-fs-tt-font-size-t, var(--bkbg-fs-tt-font-size-d, 24px))); line-height: var(--bkbg-fs-tt-line-height-m, var(--bkbg-fs-tt-line-height-t, var(--bkbg-fs-tt-line-height-d, 1.2))); letter-spacing: var(--bkbg-fs-tt-letter-spacing-m, var(--bkbg-fs-tt-letter-spacing-t, var(--bkbg-fs-tt-letter-spacing-d, normal))); word-spacing: var(--bkbg-fs-tt-word-spacing-m, var(--bkbg-fs-tt-word-spacing-t, var(--bkbg-fs-tt-word-spacing-d, normal))); } |
| 40 |
.bkbg-fs-subtitle { font-size: var(--bkbg-fs-ts-font-size-m, var(--bkbg-fs-ts-font-size-t, var(--bkbg-fs-ts-font-size-d, 15px))); line-height: var(--bkbg-fs-ts-line-height-m, var(--bkbg-fs-ts-line-height-t, var(--bkbg-fs-ts-line-height-d, 1.5))); letter-spacing: var(--bkbg-fs-ts-letter-spacing-m, var(--bkbg-fs-ts-letter-spacing-t, var(--bkbg-fs-ts-letter-spacing-d, normal))); word-spacing: var(--bkbg-fs-ts-word-spacing-m, var(--bkbg-fs-ts-word-spacing-t, var(--bkbg-fs-ts-word-spacing-d, normal))); } |
| 41 |
} |
| 42 |
|