diff options
-rw-r--r-- | src/pretty.css | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/src/pretty.css b/src/pretty.css index 0431ade..849d6c8 100644 --- a/src/pretty.css +++ b/src/pretty.css @@ -1,5 +1,38 @@ +@import url("https://static.adelielinux.org/font/font-amal.css"); + +html { + background: #eee; +} + body { - font-family: 'Liberation Sans',sans-serif; + background: white; + box-shadow: 2px 2px 10px 2px rgba(0,0,0,.2); + font-family: 'Frank Ruhl Libre', Times, serif; + padding: 1em; +} + +@media screen and (min-width: 1280px) { + body { margin: 0 18%; } +} + +h1,h2,h3,h4,h5,h6,div.toc,div.navheader { + font-family: 'IBM Plex Sans', 'Helvetica Neue', Helvetica, sans-serif; +} + +h2 { + margin-top: 2.5em; +} + +h3 { + margin-top: 2.2em; +} + +h4 { + margin-top: 2em; +} + +h5 { + margin-top: 1.5em; } .command { |