diff options
author | o5pxels <o5pxels@gmail.com> | 2021-03-30 15:15:45 -0500 |
---|---|---|
committer | o5pxels <o5pxels@gmail.com> | 2021-03-30 15:15:45 -0500 |
commit | 0978643a61d49516d15f52f8bca98900edc60ba2 (patch) | |
tree | 0449aed0bb6eeb3fbf17e5906714e560ff6f91fe /assets | |
parent | 9f7566f850be56435bf8235e04702166cabca736 (diff) | |
download | personal-website-0978643a61d49516d15f52f8bca98900edc60ba2.tar.xz personal-website-0978643a61d49516d15f52f8bca98900edc60ba2.zip |
Add opengraph meta tags, add vinyls to about, remove extra blog nav item
Diffstat (limited to 'assets')
-rw-r--r-- | assets/css/main.css | 35 |
1 files changed, 31 insertions, 4 deletions
diff --git a/assets/css/main.css b/assets/css/main.css index 5d8594d..4340a36 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -55,7 +55,7 @@ body#about header ul#nav { width: 403.2px; } ul#nav li { - font-size: 12px; + font-size: 12px; margin: 1.5em; width: 20%; /* Four equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */ text-align: center; /* If you want the text to be centered */ @@ -69,20 +69,31 @@ body#about { max-width: 570px; } +ol#vinyls li { + font-family: 'Source Code Pro'; +} +li.nostyle { + list-style-type: none; +} + body { - font-family: 'Source Sans Pro'; font-size: 14px; margin: 0 auto; } +p, +ul { + font-family: 'Source Sans Pro'; +} + section#intro h1:after { content: ' // Dylan Bolger'; color: #d3d3d3; } section#webthings h2:after { - content: ' // <3'; - color: #d3d3d3; + content: ' // <3'; + color: #d3d3d3; } section#projects h1:after { @@ -114,6 +125,10 @@ div.project.objc h2:after { color: #d3d3d3; } +div.project a { + font-family: 'Source Code Pro'; +} + h1, h2, h3, @@ -171,3 +186,15 @@ section h1 { font-weight: bold; font-size: 28px; } + +@media (prefers-color-scheme: dark) { + html { + background-color: #313134; + } + body { + color: white; + } + a { + color: #0074d9; + } +} |