diff options
author | Bryson Steck <brysonsteck@protonmail.com> | 2022-12-27 00:48:42 -0700 |
---|---|---|
committer | Bryson Steck <brysonsteck@protonmail.com> | 2022-12-27 00:48:42 -0700 |
commit | 199f5ca505ca7392b3e770e83c5150a9f897d6d0 (patch) | |
tree | c8a4c1b5576db270b8b73ae848bc0e76e3ad6001 /static/style.css | |
parent | 4cd9efaf56b61e86782e13a5b15411b679b5c259 (diff) | |
download | website-199f5ca505ca7392b3e770e83c5150a9f897d6d0.tar website-199f5ca505ca7392b3e770e83c5150a9f897d6d0.tar.gz website-199f5ca505ca7392b3e770e83c5150a9f897d6d0.tar.bz2 |
somewhat functional website now
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 147 |
1 files changed, 147 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..36fd15d --- /dev/null +++ b/static/style.css @@ -0,0 +1,147 @@ +@font-face { + font-family: Inter; + src: url(/fonts/Inter-Thin.ttf); + font-weight: 100; +} + +@font-face { + font-family: Inter; + src: url(/fonts/Inter-ExtraLight.ttf); + font-weight: 200; +} + +@font-face { + font-family: Inter; + src: url(/fonts/Inter-Light.ttf); + font-weight: 300; +} + +@font-face { + font-family: Inter; + src: url(/fonts/Inter-Regular.ttf); + font-weight: 400; +} + +@font-face { + font-family: Inter; + src: url(/fonts/Inter-Medium.ttf); + font-weight: 500; +} + +@font-face { + font-family: Inter; + src: url(/fonts/Inter-SemiBold.ttf); + font-weight: 600; +} + +@font-face { + font-family: Inter; + src: url(/fonts/Inter-Bold.ttf); + font-weight: 700; +} + +@font-face { + font-family: Inter; + src: url(/fonts/Inter-ExtraBold.ttf); + font-weight: 800; +} + +@font-face { + font-family: Inter; + src: url(/fonts/Inter-Black.ttf); + font-weight: 900; +} + +body { + max-width: 1050px; + margin: 0 auto; + background-color: #282828; + color: #ebdbb2; + font-family: Inter; +} + +p { + color: #a89984; +} + +a { + color: #458588; + font-style: underline; +} + +a:visited { + color: #b16286; + font-style: underline; +} + +a:hover { + color: #83a598; + font-style: underline; +} + +.navbar { + padding: 20px 0; + font-size: 20px; + display: block; +} + +.navbar-title { + font-weight: 600; + padding-right: 10px; + padding-top: 2px; +} + +.nav { + display: inline; + padding-left: 0; + padding-bottom: 1px; +} + +.navbar-item { + font-size: 18px; + padding-right: 10px; + padding-bottom: 5px; + list-style-type: none; + display: inline; +} + +.time { + float: right; + font-size: 17px; + padding-top: 2px; +} + +img.pfp { + max-width: 40%; + border-radius: 15px; +} + +.box { + background-color: #3c3836; +} + +.list { + background-color: #3c3836; + margin-bottom: 8px; +} + +.list a { + font-weight: bold; + font-size: 18px; +} + +.sidebar { + max-height: 13em; + min-height: 13em; + font-size: 15px; +} + +.project img { + max-width: 100%; +} + +footer { + text-align: center; + padding: 30px 0; + color: #7c6f64; +} |