diff options
author | Florrie <towerofnix@gmail.com> | 2020-02-07 11:49:39 -0400 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2020-02-07 11:49:39 -0400 |
commit | 94bf709c29a26afb600f1fc2176710a5b24238ac (patch) | |
tree | acb633348110acecf7763d919a2ad89d345f6897 /site.css | |
parent | b7150fcb64f68a9a7140a98c5a2dd5c6f9ae1329 (diff) |
02/07/2020
Diffstat (limited to 'site.css')
-rw-r--r-- | site.css | 76 |
1 files changed, 75 insertions, 1 deletions
diff --git a/site.css b/site.css index dc065850..9ec544d8 100644 --- a/site.css +++ b/site.css @@ -72,11 +72,38 @@ a:hover { margin: 10px 5px; } -#sidebar ol { +#sidebar > ol, #sidebar > ul { padding-left: 30px; padding-right: 15px; } +#sidebar > dl { + padding-right: 15px; + padding-left: 0; +} + +#sidebar > dl dt { + padding-left: 15px; + margin-top: 0.5em; +} + +#sidebar > dl dt.current { + font-weight: 800; +} + +#sidebar > dl dd { + margin-left: 0; +} + +#sidebar > dl dd ul { + padding-left: 30px; + margin-left: 0; +} + +#sidebar > dl .side { + padding-left: 10px; +} + #sidebar li.current { font-weight: 800; } @@ -140,6 +167,11 @@ h1 { margin-bottom: 10px; } +.grid-listing h2 { + text-align: center; + width: 100%; +} + #top-index #content h1 { text-align: center; font-size: 2em; @@ -197,3 +229,45 @@ dl dt { dl dd { margin-bottom: 1em; } + +.new { + animation: new 1s infinite; +} + +@keyframes new { + 0% { + color: #bbdd00; + } + + 50% { + color: #eeff22; + } + + 100% { + color: #bbdd00; + } +} + +/* fake :P */ +.loading::after { + content: '.'; + animation: loading 6s infinite; +} + +@keyframes loading { + 0 { + content: '.'; + } + + 33% { + content: '..'; + } + + 66% { + content: '...'; + } + + 100% { + content: '.'; + } +} |