diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-11 00:37:15 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-11 00:37:15 +0200 |
commit | 5d06eb0846b2ec624348b47b9235178a96badae8 (patch) | |
tree | e3e6901c2341aa9f2e14bb65a57d0c9a6f7b5a49 | |
parent | 68908d66e88cfd9b6a846d5f722f1ae9bad61267 (diff) | |
download | website-5d06eb0846b2ec624348b47b9235178a96badae8.tar.xz |
stylepoking
-rw-r--r-- | src/style.css | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/src/style.css b/src/style.css index 70837c8..ad71adc 100644 --- a/src/style.css +++ b/src/style.css @@ -1,24 +1,19 @@ @import url(https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700); -*, *:before, *:after { - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; -} +*, *:before, *:after { box-sizing: border-box; } html { background-color: #eee; } body { + font-size: 16px; + font-family: 'PT Sans'; max-width: 42rem; margin: -1.5rem auto; - padding-left: 1rem; - padding-right: 1rem; + padding: 0 1rem; border: 1px solid #ccc; background-color: #fcfcfc; - font-family: 'PT Sans'; - font-size: 16px; - -moz-hyphens: auto; - -webkit-hyphens: auto; + -moz-hyphens: auto; -webkit-hyphens: auto; + -ms-hyphens: auto; hyphens: auto; } a, a:visited { @@ -34,14 +29,14 @@ header { padding-top: 1.25rem; } header nav ul { - font-family: 'DejaVu Sans Mono'; font-size: 0.9rem; + font-family: 'DejaVu Sans Mono'; list-style-type: none; padding: 0; } header nav ul li { - margin-right: 0.5rem; display: inline; + margin-right: 0.5rem; } header nav a, header nav a:visited { color: #444; |