diff options
author | Jesús <heckyel@hyperbola.info> | 2019-02-05 19:33:42 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-02-05 19:33:42 -0500 |
commit | f896fec24da3b1ef1a26e23a2ad5bf2c581acb86 (patch) | |
tree | 14a2487213e22be7d4812b53726b77b0b49adaf9 | |
parent | 5cd720e50a854b6184072ea7f33a540cf3baf077 (diff) | |
download | cl-theme-f896fec24da3b1ef1a26e23a2ad5bf2c581acb86.tar.lz cl-theme-f896fec24da3b1ef1a26e23a2ad5bf2c581acb86.tar.xz cl-theme-f896fec24da3b1ef1a26e23a2ad5bf2c581acb86.zip |
fix links colors
-rw-r--r-- | css/style.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/css/style.css b/css/style.css index 2876c88..e79975a 100644 --- a/css/style.css +++ b/css/style.css @@ -1,7 +1,7 @@ /* github.com/plasticneko */ /* bulma css framework (github.com/jgthms | bulma.io) Author: jeremy thomas -Author: jesús e. +Author: jesus e. */ /* basic formatting changes (mostly to cater for darker colours) */ @@ -58,6 +58,10 @@ a.pagination-next.disabled { color: white; } +.is-cyan { + color: #0dd3ff; +} + /* html/body/font-fixes */ body, input, textarea, .button { font-family: 'Roboto Condensed', sans-serif; @@ -131,6 +135,10 @@ input:focus, textarea:focus, input[type]:focus { color: #dd7325; } +a { + color: #0099e5; +} + a:hover { text-decoration: none; color: #dd7325; |