diff options
Diffstat (limited to 'org/css')
-rw-r--r-- | org/css/blog.css | 5 | ||||
-rw-r--r-- | org/css/guest-book.css | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/org/css/blog.css b/org/css/blog.css index 9f6477e..dbe52ac 100644 --- a/org/css/blog.css +++ b/org/css/blog.css @@ -3,6 +3,11 @@ body { background-image: url("../images/blog-background.jpg"); } +/* Helps it nicely degrade when css is removed */ +hr { + display: none; +} + .container { background-color: #bebebe; width: 65%; diff --git a/org/css/guest-book.css b/org/css/guest-book.css index 244f9f3..dd86966 100644 --- a/org/css/guest-book.css +++ b/org/css/guest-book.css @@ -3,6 +3,11 @@ body { background-image: url("../images/guest-book-background.png"); } +/* Helps it nicely degrade when css is removed */ +hr { + display: none; +} + .container { background-color: #bebebe; width: 60%; |