diff options
author | Jesús <heckyel@hyperbola.info> | 2019-02-05 15:11:09 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-02-05 15:11:09 -0500 |
commit | 274e71620c064ac39d51148b64bb20a9714e133b (patch) | |
tree | f79b41c37268ee7b2bf9240f6c6ebd2b7d526f20 | |
parent | f9df2cac8056c5507ee6e6458da13bb21accc023 (diff) | |
download | cl-theme-274e71620c064ac39d51148b64bb20a9714e133b.tar.lz cl-theme-274e71620c064ac39d51148b64bb20a9714e133b.tar.xz cl-theme-274e71620c064ac39d51148b64bb20a9714e133b.zip |
fix styles
-rw-r--r-- | css/style.css | 36 |
1 files changed, 33 insertions, 3 deletions
diff --git a/css/style.css b/css/style.css index 8323d74..2876c88 100644 --- a/css/style.css +++ b/css/style.css @@ -6,13 +6,18 @@ Author: jesús e. /* basic formatting changes (mostly to cater for darker colours) */ +code { + background-color: #323b43; + color: #1cc7d0; +} + li { color: white; } pre { - background: black; - color: white; + background-color: #282828; + color: #78dcfa; } strong { @@ -24,10 +29,35 @@ video { height: auto; } +a.pagination-previous.disabled, +a.pagination-next.disabled { + background: #0c0f0f; + color: white; + cursor: not-allowed; + border-color: #dbdbdb; + box-shadow: none; + color: #7a7a7a; + opacity: .5; +} + .content blockquote { background: black; } +.content dl, +.content dt, +.content dd { + color: white; +} + +.content h2, +.content h3, +.content h4, +.content h5, +.content h6 { + color: white; +} + /* html/body/font-fixes */ body, input, textarea, .button { font-family: 'Roboto Condensed', sans-serif; @@ -275,7 +305,7 @@ a.navbar-item:hover { } } -@media screen and (max-width: 480px) { +@media screen and (max-width: 600px) { .main-content { padding: 0rem; } |