diff options
| author | gamerdonkey | 2021-08-02 00:56:23 -0500 |
|---|---|---|
| committer | gamerdonkey | 2021-08-02 00:56:23 -0500 |
| commit | ab3de5023eaee426fd16bfae938347664e17daa3 (patch) | |
| tree | 99256a8ab5df203b5655ad18fbdb219c08580ab7 /themes/gamerdonkey-theme/static | |
| parent | 7ecca64a31eddcdbb1fc0d448afd4f179bfd886a (diff) | |
| download | gamerdonkey.com-blog-ab3de5023eaee426fd16bfae938347664e17daa3.tar.gz gamerdonkey.com-blog-ab3de5023eaee426fd16bfae938347664e17daa3.tar.bz2 gamerdonkey.com-blog-ab3de5023eaee426fd16bfae938347664e17daa3.zip | |
Updating the theme. Fixing some small CSS issues.
Diffstat (limited to 'themes/gamerdonkey-theme/static')
| -rw-r--r-- | themes/gamerdonkey-theme/static/css/style.css | 30 |
1 files changed, 25 insertions, 5 deletions
diff --git a/themes/gamerdonkey-theme/static/css/style.css b/themes/gamerdonkey-theme/static/css/style.css index bb5fb78..fce750d 100644 --- a/themes/gamerdonkey-theme/static/css/style.css +++ b/themes/gamerdonkey-theme/static/css/style.css @@ -1,19 +1,32 @@ body { - background: black; - color: lightgray; - border: solid 1px lightgray; + background: #090909; + color: ghostwhite; margin: 1em auto; max-width: 50em; padding: 0em 1em 1em 1em; font-family: Futura, "Trebuchet MS", Arial, sans-serif; } +h1, h2, h3, h4, h5, h6 { + color: snow; + content: '~ '; +} + +.entry-content h1:before, +.entry-content h2:before, +.entry-content h3:before, +.entry-content h4:before, +.entry-content h5:before, +.entry-content h6:before { + content: '~ ' +} + a { - color: white; + color: darkorange; } ul { - list-style-type: "* "; + list-style-type: "-> "; } header#banner { @@ -28,6 +41,7 @@ nav#menu { nav#menu ul { list-style: none; + padding-left: 0; } nav#menu ul li { @@ -42,12 +56,18 @@ nav#menu ul li:last-child::after { content: ''; } +section#content { + border: 2px double ghostwhite; + padding: 0em 1em 1em 1em; +} + img { max-width: 100%; height: auto; } footer#contentinfo { + margin-top: 0.5em; font-size: 0.7em; text-align: center; } |
