diff options
author | Bryson Steck <brysonsteck@protonmail.com> | 2022-12-27 11:09:08 -0700 |
---|---|---|
committer | Bryson Steck <brysonsteck@protonmail.com> | 2022-12-27 11:09:08 -0700 |
commit | 0b6c6241b7b53a5fa99e49e5b9723c5dd8e423c8 (patch) | |
tree | a224456ecfaee05ea89457ab0fdf60756e4d8c95 /static | |
parent | f8d04008580da2ea60dd916e0a73575e3f7d8e6a (diff) | |
download | website-0b6c6241b7b53a5fa99e49e5b9723c5dd8e423c8.tar website-0b6c6241b7b53a5fa99e49e5b9723c5dd8e423c8.tar.gz website-0b6c6241b7b53a5fa99e49e5b9723c5dd8e423c8.tar.bz2 |
create projects list and add more projects
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css index 36fd15d..98dce71 100644 --- a/static/style.css +++ b/static/style.css @@ -52,6 +52,12 @@ font-weight: 900; } +@font-face { + font-family: JetBrainsMono; + src: url(/fonts/JetBrainsMono-Regular.ttf); + font-weight: normal; +} + body { max-width: 1050px; margin: 0 auto; @@ -60,7 +66,23 @@ body { font-family: Inter; } -p { +code { + font-family: JetBrainsMono; + color: #79740e; +} + +ul, li, p { + color: #a89984; +} + +.project-icon { + float: right; + border-radius: 15px; + margin-left: 10px; + max-width: 13%; +} + +.normal-span { color: #a89984; } @@ -123,6 +145,7 @@ img.pfp { .list { background-color: #3c3836; margin-bottom: 8px; + color: #a89984; } .list a { @@ -130,6 +153,12 @@ img.pfp { font-size: 18px; } +.list img { + float: right; + border-radius: 15px; + max-width: 12%; +} + .sidebar { max-height: 13em; min-height: 13em; |