Gordon Pedersen
e017269685
Split out some separation of concerns: - color - font/typography - icon/emoji related - z-indexes - the rest (mostly layout)
16 lines
No EOL
579 B
CSS
16 lines
No EOL
579 B
CSS
/* typography and fonts */
|
|
|
|
:root { --font: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif, var(--emoji-font) }
|
|
|
|
body, html { font-family: var(--font) }
|
|
body { font-size: 1.2em }
|
|
|
|
.address, .author, .honey, .page-heading { font-family: "VC Honey Deck",var(--font) }
|
|
|
|
#advanced :is(.field.textarea, textarea), .EasyMDEContainer { font-family: 'MD IO 0.4', monospace, var(--emoji-font) }
|
|
|
|
li, p { line-height: 160% }
|
|
.author { font-size: 1.2em }
|
|
nav.bottom.s :is(small,.label) { font-size: .75rem }
|
|
#directory a { font-size: 1.1rem }
|
|
#directoryIndex a { font-size: 1.5rem } |