From ccf12078a699ac409f3d22e4a77aad9172342ed0 Mon Sep 17 00:00:00 2001 From: Ben Date: Sat, 28 Sep 2019 23:20:57 +0100 Subject: [PATCH] cssss --- css/main.css | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 css/main.css diff --git a/css/main.css b/css/main.css new file mode 100644 index 0000000..8fa0f20 --- /dev/null +++ b/css/main.css @@ -0,0 +1,63 @@ +html { + background-color: #FAFAF8; +} + +body { + font-family: 'Quicksand', sans-serif; + color: #222; + font-size: 16px; + line-height: 1.4; + text-align: justify; +} + +h1, h2, h3, h4, h5, h6 { + font-weight: lighter; + font-family: 'Merriweather', serif; +} + +small { + font-size: 60%; +} + +a { + color: #03a5fc; +} + +a:link, a:visited { + text-decoration: none; +} + +a:hover { + text-decoration: underline; + font-size: 101%; +} + +.masthead { + font-family: 'Merriweather', serif; + text-align: center; + font-size: 500%; +} + +.nav { + text-align: center; +} + +.break { + height: 20px; +} + +.container { + width: 100%; + height: fit-content; + padding-top: 20px; + padding-bottom: 20px; + + border: 1px solid #EEE; + background-color: #FFF; +} + +.text { + margin: 2em auto; + max-width: 700px; +} +