just-a-blog

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

commit 77b2fa944316f1e7d6e5b0d0912235a0463a80b9
parent 0516833cefe294f517ee3e25d2a73410f287c238
Author: Robert D Herb <github@robertdherb.com>
Date:   Tue, 23 Feb 2016 22:24:48 -0600

Make a default style.

Diffstat:
html/style/default.css | 33+++++++++++++++++++++++++--------
1 file changed, 25 insertions(+), 8 deletions(-)

diff --git a/html/style/default.css b/html/style/default.css @@ -6,34 +6,47 @@ body { padding-left: 10%; padding-right: 10%; + color: #565e65; + background-color: #f3f4f5; } -a { +a, a.visited { + color: #95c7ae; +} + +a.active { + color: #ae95c7; } h1 { - + color: #1c2023; } h2 { - + color: #1c2023; } h3 { - + color: #1c2023; } -ul { - +ul.nav { + list-style-type: none; + padding-left: 0; } + .nav > li { + display: inline; + } + + ol { } @@ -49,8 +62,12 @@ p { } -code { - +pre { + border: 5px solid #c7ae95; + background-color: #c795ae; + margin-left: 5%; + margin-right: 5%; + padding: 5px; }