From 65bc73c3ad675dec2f4c630532fe94f7f7a70ac4 Mon Sep 17 00:00:00 2001 From: Joris Guyonvarch Date: Sun, 15 Feb 2015 12:44:05 +0100 Subject: Bootstrap architecture --- style.css | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 style.css (limited to 'style.css') diff --git a/style.css b/style.css new file mode 100644 index 0000000..a1489cb --- /dev/null +++ b/style.css @@ -0,0 +1,73 @@ +body { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + background-color: #FBDEE3; +} + +.headerMenuContent { + width: 800px; + margin: auto; +} + +.header { + padding: 30px; + text-align: center; + font-size: 36px; + color: #222222; + text-shadow: 2px 2px #ADADAD; +} + +#content { + margin-top: 90px; +} + +h1 { + font-size: 30px; + margin-bottom: 30px; + margin-left: 10px; +} + +h2 { + font-size: 26px; + margin-bottom: 30px; + margin-left: 10px; + text-decoration: underline; +} + +p { + margin-bottom: 30px; + text-indent: 30px; + line-height: 24px; +} + +img { + border: 1px solid black; + display: block; + margin: auto; + margin-bottom: 30px; +} + +ul { + margin-bottom: 30px; +} + +li { + list-style-type: square; + margin-left: 30px; + margin-bottom: 5px; +} + +a { + text-decoration: none; + color: darkblue; +} + +a:hover { + color: #4C4C80; +} + +.contact { + background-color: #EEEEEE; + padding: 30px; + text-align: center; + color: #555555; +} -- cgit v1.2.3