Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
development:dokuwiki:css_tweaks [2021/06/24 11:47] kalenpw removed |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== CSS Tweaks ====== | ||
- | ---- | ||
- | Add to '' | ||
- | |||
- | <code css> | ||
- | * { | ||
- | font-size: .95rem; | ||
- | letter-spacing: | ||
- | font-family: | ||
- | line-height: | ||
- | } | ||
- | |||
- | /* inline code more padding */ | ||
- | code { | ||
- | padding: 2px 5px 2px 5px; | ||
- | } | ||
- | |||
- | /* kbd plugin neater padding */ | ||
- | kbd { | ||
- | padding: 2px 5px 2px 5px !important; | ||
- | } | ||
- | |||
- | /* needed to override the * font */ | ||
- | .code *{ | ||
- | font-family: | ||
- | } | ||
- | |||
- | /* wiki name by logo */ | ||
- | # | ||
- | font-size: 2rem; | ||
- | } | ||
- | |||
- | |||
- | /* hierarchy of pages */ | ||
- | .youarehere { | ||
- | border-bottom: | ||
- | } | ||
- | .youarehere .bchead { | ||
- | display: none; | ||
- | } | ||
- | .youarehere span { | ||
- | font-size: 1rem; | ||
- | } | ||
- | |||
- | /* history of pages visited */ | ||
- | .breadcrumbs .trace { | ||
- | display: none; | ||
- | } | ||
- | |||
- | </ |