From a9c7d436f54d8a9b22e0ea21c16e86464980fa68 Mon Sep 17 00:00:00 2001 From: cyfraeviolae Date: Tue, 22 Feb 2022 19:55:16 -0500 Subject: init --- static/style.css | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 static/style.css (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..b7e94e0 --- /dev/null +++ b/static/style.css @@ -0,0 +1,46 @@ +@font-face { + font-family: EBGaramond; + src: url(EBGaramond-VariableFont_wght.ttf) format('woff2-variations'); + font-style: normal; +} + +@font-face { + font-family: EBGaramond; + src: url(EBGaramond-Italic-VariableFont_wght.ttf) format('woff2-variations'); + font-style: italic; +} + +@font-face { + font-family: FiraMono; + src: url(FiraMono-Regular.ttf); + font-style: normal; +} + +body { + background: #fdf3f3; + color: DarkSlateGrey; + font-family: EBGaramond, serif; + font-size: large; +} + +a { + color: #1a97bf; +} + +a:hover { + color: #075d77; +} + +.container { + margin: 1em; + max-width: 40em; +} + +.title { + font-weight: bold; + letter-spacing: -0.5px; +} + +hr { + border: .1px DarkSlateGrey dashed; +} -- cgit v1.2.3