From e1b7e1f50709c89b7b6448bd86999a5a562f0e1b Mon Sep 17 00:00:00 2001 From: Duncan Wilkie Date: Mon, 26 Jun 2023 10:15:27 -0500 Subject: Start over cleanly --- assets/css/style.css | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 assets/css/style.css (limited to 'assets/css') diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100644 index 0000000..3f0accd --- /dev/null +++ b/assets/css/style.css @@ -0,0 +1,115 @@ +html { + background-color: #0f1011; +} + +pre { + font-family: Iosevka; + background-color: #292b2b; + border-radius: 0.5rem; + padding: 1rem; + overflow-x: auto; +} + +h1 { + font-size: 1.7rem; +} + +h2 { + font-size: 1.2rem; +} + +section { + padding-top: 1rem; +} + +body { + background-color: #1d1f21; + font-family: IBM Plex Sans; + color: #c5c8c6; + max-width: 54rem; + margin: 0.5rem auto; + position: relative; + padding: 1rem; + border-radius: 4px; + line-height: 150%; +} + +header { + display: flex; + align-items: center; + justify-content: space-between; + border-bottom: 5px double #292b2b; +} + +header ul { + list-style-type: none; + border-left: 5px double #292b2b; + padding-left: 1rem; +} + + +header a img { + max-width: 8rem; +} + + +footer { + margin-top: 2rem; + border-top: 5px double #292b2b; + color: #898b8a; + font-size: 80%; + line-height: 100%; +} + +footer div { + display: flex; + align-items: center; +} +footer img { + height: 1.6rem; + padding-left: 1rem; +} + + +img, +picture, +video { + max-width: 100%; +} + +a { + outline: none; +} + +a:link { + color: #81a2be; +} + +a:visited { + color: #b294bb; +} + +a:focus { + text-decoration: none; + background: #5a5b5a; + +} + +a:hover { + text-decoration: none; + background: #3f3f3f; +} + +a:active { + color: #de935f; +} + +.rss-icon { + max-width: 1.3rem; + padding-left: 0.7rem; +} + +#addressbook { + text-align: center; + border-bottom: 5px double #292b2b; +} -- cgit v1.2.3