diff options
author | Alex Auvolat <alex@adnab.me> | 2020-03-02 21:10:36 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-03-02 21:10:36 +0100 |
commit | f5547bf84bbd7e22b1ed9180f42b7e5095f4bdba (patch) | |
tree | ef1a29ea4ffc5f3fe733a3ae984a7f851e6ad749 /src/css | |
parent | 74c6a06b4b664328e7a2d7e2de4474df28202429 (diff) | |
download | site-f5547bf84bbd7e22b1ed9180f42b7e5095f4bdba.tar.gz site-f5547bf84bbd7e22b1ed9180f42b7e5095f4bdba.zip |
Add association page and documents from 2020-01-13
Diffstat (limited to 'src/css')
-rw-r--r-- | src/css/main.css | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/src/css/main.css b/src/css/main.css new file mode 100644 index 0000000..1d572cf --- /dev/null +++ b/src/css/main.css @@ -0,0 +1,91 @@ +@font-face { + font-family: "Heroes"; + src: url('../fonts/texgyreheros-regular.otf') format('truetype'); +} +* { + font-family: Heroes; + margin: 0; + padding: 0; +} +body { + margin-bottom: 42px; +} + +header { + background-color: #519c60; + color: #ffffff; + padding: 30px 0px 1px 0px; +} + +h1 { + font-size: 5em; +} + +h2 { + font-size: 3em; +} + +p { + margin-top: 1em; + font-size: 1.2em; +} + +ul { +} + +li { + margin-left: 42px; + padding-top: 4px; + padding-bottom: 4px; +} + +.spacing { + margin-top: 1em; +} + +header > .container > h1 { + margin: 10px 0px -27px 0px; +} + +header > .container > .menu-item { + float: right; +} + +header > .container > .menu-item > img { + vertical-align: -9px; +} + +header > .container > .menu-item > a,span { + font-size: 30px; + color: white; + text-decoration: none; +} + +.container { + padding: 0px 40px 0px 40px; +} + +.chapeau { + font-size: 1.8em; + font-weight: bold; + line-height: 1.2; +} + +.service-box { + color: #000; + text-decoration: none; + border: 0.2em solid #000; + width: 250px; + text-align:center; + margin-right: 1em; + float: left; +} + +.service-box:hover { + background-color: #000; + color: #fff; +} + +.list > br { + clear: both; +} |