Created CSS Customizations (markdown)

Lorenz Hübschle-Schneider 2016-02-14 20:26:11 +01:00
parent 9c834c68e9
commit 0463802f04
1 changed files with 15 additions and 0 deletions

15
CSS-Customizations.md Normal file

@ -0,0 +1,15 @@
This is a list of some popular CSS customizations for Glowing Bear. You can use them by copying and pasting them into the "Custom CSS" box in the settings (on https://latest.glowing-bear.org only, for now)
## Change global font
If you want to use the excellent Lato font everywhere, add
```css
body { font-family: 'Lato', sans-serif; }
```
## Disable readmarker
If you don't like the readmarker, kill it with
```css
#readmarker { display:none; }
```