diff options
-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; } |