From 7708be131843ac5641622d42e2559f33a1d1ebc8 Mon Sep 17 00:00:00 2001 From: Lynne Lawson Date: Thu, 2 May 2019 23:11:30 +1000 Subject: [PATCH] rearranged css --- style.css | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/style.css b/style.css index 4561d09..0a33cfe 100644 --- a/style.css +++ b/style.css @@ -4,6 +4,7 @@ body { background-color: #eee; font-size: 1.1em; } + a { color: #777; text-decoration-style: dotted; @@ -11,6 +12,7 @@ a { a:hover { text-decoration-style: solid; } + article, footer { width: 50%; max-width: 1000px; @@ -18,15 +20,10 @@ article, footer { margin: 0 auto; line-height: 1.4em; } -@media only screen and (max-width:550px){ - article, footer { - min-width:0; - width:100%; - } -} footer { color: #777; } + h1, h2 { font-weight: 200; font-family: serif; @@ -35,6 +32,7 @@ h1 { text-align: center; font-size: 3em; } + ul { list-style-type: none; } @@ -44,3 +42,10 @@ ul.compact { ul li { margin-top: 5px; } + +@media only screen and (max-width:550px){ + article, footer { + min-width:0; + width:100%; + } +}