diff options
-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 { |