diff options
author | Jesús <heckyel@hyperbola.info> | 2019-02-03 19:56:06 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-02-03 19:56:06 -0500 |
commit | a5a3047d1778aa0b24772a6555985be7c86e637e (patch) | |
tree | f4b0ee1752afa131141b2c7e909b2dfec5ea0d3c | |
parent | 1992c18ae84f77e001dc47d9e9ed23d322aa7d29 (diff) | |
download | cl-theme-a5a3047d1778aa0b24772a6555985be7c86e637e.tar.lz cl-theme-a5a3047d1778aa0b24772a6555985be7c86e637e.tar.xz cl-theme-a5a3047d1778aa0b24772a6555985be7c86e637e.zip |
fix colors template
-rw-r--r-- | css/style.css | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/css/style.css b/css/style.css index fb86fd0..da49138 100644 --- a/css/style.css +++ b/css/style.css @@ -11,6 +11,18 @@ pre { color: white; } +strong { + color: white; +} + +li { + color: white; +} + +.content blockquote { + background: black; +} + /* html/body/font-fixes */ body, input, textarea, .button { font-family: 'Roboto Condensed', sans-serif; @@ -84,6 +96,11 @@ input:focus, textarea:focus, input[type]:focus { color: #dd7325; } +a:hover { + text-decoration: none; + color: #dd7325; +} + a.navbar-item.is-tab.is-active { border-bottom-color: #dd7325; border-width: 2px; @@ -124,7 +141,7 @@ a.navbar-item:hover { /* main content styling */ .main-content { background-color: #363636; - padding: 3rem 1.5rem; + padding: 1rem 1.5rem; } /* card changes */ @@ -162,7 +179,7 @@ a.navbar-item:hover { .card-content-text p { color: whitesmoke; - font-size: 1.1em; + font-size: 1em; } .card-content-text label { |