From a17a3492559b6d6584d37f3dea8959cad7209dd1 Mon Sep 17 00:00:00 2001 From: Romain de Laage Date: Thu, 30 Jan 2020 11:54:20 +0100 Subject: [PATCH] Initial commit --- index.html | 22 ++++++++++++++++++++++ style.css | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..94d2ac9 --- /dev/null +++ b/index.html @@ -0,0 +1,22 @@ + + + + Site vitrine - Romain de Laage + + + + +
+

Romain de Laage

+
+ Lorem ipsum dolor sit amet +
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..d5a8734 --- /dev/null +++ b/style.css @@ -0,0 +1,34 @@ +*{ + box-sizing: border-box; + margin: 0; + font-family: sans-serif; +} +html, body{ + height: 100%; +} +header{ + background: #16a085; + color: #ecf0f1; + height: 100px; + text-align:center; + line-height: 100px; +} +nav{ + display: inline-block; + height: calc(100% - 150px); + width: 200px; + vertical-align:top; +} +section{ + display: inline-block; + height: calc(100% - 150px); + width: calc(100% - 200px); + vertical-align:top; +} +footer{ + background-color: #16a085; + text-align : center; + height: 50px; + line-height: 50px; + color: #ecf0f1; +}