diff options
Diffstat (limited to 'static/style.css')
-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; |