diff options
author | Joris Guyonvarch | 2015-02-15 12:44:05 +0100 |
---|---|---|
committer | Joris Guyonvarch | 2015-02-15 12:44:05 +0100 |
commit | 65bc73c3ad675dec2f4c630532fe94f7f7a70ac4 (patch) | |
tree | f48dbf2d6a24ecd2d762d2ef04f921fe3ea6aaf3 /style.css |
Bootstrap architecture
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 73 |
1 files changed, 73 insertions, 0 deletions
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; +} |