diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-05-20 12:33:21 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-05-20 12:33:21 -0400 |
commit | cacf5366512f83295d2e2809e4a6a09378f63f42 (patch) | |
tree | b6c4efdd488aed1603a4f97da9820f57cd58a315 /resources/public/main.css |
initial commit
Diffstat (limited to 'resources/public/main.css')
-rw-r--r-- | resources/public/main.css | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/resources/public/main.css b/resources/public/main.css new file mode 100644 index 0000000..3911cd9 --- /dev/null +++ b/resources/public/main.css @@ -0,0 +1,97 @@ +@font-face { + /* https://indestructibletype.com/Jost.html */ + font-family: Jost; + src: url('/Jost-400-Book.otf'); +} + +html, body { + background: #d8f0ff; + font-family: Jost; +} + +#title-container { + padding-top: 4em; + padding-bottom: 0.5em; +} + +#container { + padding: 0em 1.5em; +} +#posts { + min-height: 400px; +} +#logo { + height: 90px; +} + +.block { + padding-bottom: 20px; + border-top: 1px solid #888; +} + +.block img { + max-width: 40em; + border: 1px solid #888; +} + +h1 { + font-size: 4em; + display: inline; + padding-left: 0.1em; +} + +h1 { + color: black; +} + +h1:hover { + color: #ff3300; +} + +h2 { + font-size: 2.2em; +} + +h3 { + font-size: 1.7em; +} + +h4, h5 { + font-size: 1.6em; +} + +p, li { + font-size: 1.5em; + max-width: 50em; +} + +a, a code { + text-decoration: none; + color: #ff3300; +} + +p, li, span { +} + +#footer { + color: #666; + text-align: right; +} + +code { + padding: 2px; + font-family: monospace, monospace; + font-size: 0.8em; +} + +pre { + padding: 4px; + background: #333; + color: #ccc; + font-family: fixed; +} + +.codecolor0 { color: #2c6; } +.codecolor1 { color: yellow; } +.codecolor2 { color: pink; } +.codecolor3 { color: #c44; } |