Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | 3x | .varClass { /* label default variables */ --label_font_size: 14px; --label_text_color: var(--zdt_label_default_text); --label_font_family: var(--zd_regular); --label_cursor: default; --label_line_height: 18px; } .label { composes: varClass; vertical-align: middle; line-height: var(--label_line_height); font-size: var(--label_font_size); color: var(--label_text_color); font-family: var(--label_font_family); cursor: var(--label_cursor); } .xsmall { --label_font_size: 12px; } .small { --label_font_size: 13px; } .medium { --label_font_size: 14px; } .large { --label_font_size: 26px; composes: semibold from '../common/common.module.css'; } .pointer { --label_cursor: pointer; } .cursor { --label_cursor: default; } .title { display: block; } .subtitle { display: inline-block; } .font_default { --label_font_family: var(--zd_regular); } .font_primary { --label_font_family: var(--zd_semibold); composes: ftsmooth from '../common/common.module.css'; } .dotted { composes: dotted from '../common/common.module.css'; } |