diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-01 22:17:44 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-01 22:17:44 +0100 |
commit | 6178c73f98cf2f3ffbac94115a07af3ae62a0b01 (patch) | |
tree | 96ff1898a2493fdbaa39f1b641e2bc50fac7b079 /static/css | |
parent | a8e6e0952b6edcd1282f9f2221e0d4fbb463d0fe (diff) | |
download | site-6178c73f98cf2f3ffbac94115a07af3ae62a0b01.tar.gz site-6178c73f98cf2f3ffbac94115a07af3ae62a0b01.zip |
Migrate to pug
Diffstat (limited to 'static/css')
-rw-r--r-- | static/css/.main.css.swp | bin | 0 -> 12288 bytes | |||
-rw-r--r-- | static/css/main.css | 78 |
2 files changed, 78 insertions, 0 deletions
diff --git a/static/css/.main.css.swp b/static/css/.main.css.swp Binary files differnew file mode 100644 index 0000000..c7a3738 --- /dev/null +++ b/static/css/.main.css.swp diff --git a/static/css/main.css b/static/css/main.css new file mode 100644 index 0000000..37666f7 --- /dev/null +++ b/static/css/main.css @@ -0,0 +1,78 @@ +@font-face { + font-family: "Heroes"; + src: url('../fonts/texgyreheros-regular.otf') format('truetype'); +} +* { + font-family: Heroes; + margin: 0; + padding: 0; +} + +header { + background-color: #519c60; + color: #ffffff; + padding: 30px 0px 1px 0px; +} + +h1 { + font-size: 5em; +} + +h2 { + font-size: 3em; +} + +p { + font-size: 1.2em; +} + +.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; +} |