commit a17a3492559b6d6584d37f3dea8959cad7209dd1 Author: Romain de Laage Date: Thu Jan 30 11:54:20 2020 +0100 Initial commit 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; +}