sassyons
Version:
Inspired by Tachyons
26 lines (21 loc) • 807 B
Markdown
# Font Styling
| Class | Properties |
| ----- | ---------- |
| i | font-style: italic |
| fs-normal | font-style: normal |
| no-decoration | text-decoration: none |
| u | text-decoration: underline |
| underline | text-decoration: underline |
| overline | text-decoration: overline |
| line-through | text-decoration: line-through |
| b | font-weight: bold |
| bolder | font-weight: bolder |
| lighter | font-weight: lighter |
| fw-normal | font-weight: normal |
You can also achive font-weight numbers for the following numbers:
* 100, 200, 300, 400, 500, 600, 700, 800
* Example = the `fw500` class name will produce `font-weight: 500`
| Class | Properties |
| ----- | ---------- |
| fw⟨num⟩ | font-weight: ⟨num⟩ |
See also [Text Styles](./text.md) and [Font Size](./font-size.md)