From 38b8e7047b944a8f6ed41bea6bda1e7e3fe00259 Mon Sep 17 00:00:00 2001 From: quidtum Date: Mon, 30 Nov 2020 20:23:16 -0500 Subject: init --- static/style.css | 119 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 119 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..6355b03 --- /dev/null +++ b/static/style.css @@ -0,0 +1,119 @@ +@font-face { + font-family: EBGaramond; + src: url(/static/EBGaramond-VariableFont_wght.ttf) format('woff2-variations'); + font-style: normal; +} + +@font-face { + font-family: EBGaramond; + src: url(/static/EBGaramond-Italic-VariableFont_wght.ttf) format('woff2-variations'); + font-style: italic; +} + +body { + background: #fdf3f3; + color: DarkSlateGrey; + font-family: EBGaramond, serif; +} + +a { + color: #1eaedb; +} + +a:hover { + color: #0e99c4; +} + +button[type="submit"] { + color: DarkSlateGrey; +} + +@media (max-width: 800px) { + .container { + margin-left: 0.5em; + margin-right: 0.5em; + } + + .navbar { + margin-top: 0.5em; + } +} +@media (min-width: 800px) { + .container { + margin-left: 3em; + margin-right: 3em; + } + + .navbar { + margin-top: 3em; + } + + body { + font-size: large; + } +} + +.row { + margin-bottom: 2em; +} + +.verse { + list-style: none; + padding-left: 0; + margin: 0; +} + +.verse > li { + margin-bottom: 0; +} + +p { + margin-top: 0; +} + +.neighbors { + margin-bottom: 1.5em; +} + +form > div { + margin-bottom: 8px; +} + +label { + margin-right: 4px; +} + +.focus { + font-weight: bold; +} + +.outline { + background: black; +} + +.domain-name, .title { + letter-spacing: -1.5px; +} + +input[type="text"] { + width: 75%; + max-width: 50em; +} + +.nonbreaking { + white-space: nowrap; +} + +.manage-box { + display: inline-block; + border: 1px crimson dotted; + padding: .5em; +} + +.manage-btn { + margin: .5em; +} + +.manage-form { + display: inline-block; +} -- cgit v1.2.3