diff --git a/assets/css/global.css b/assets/css/global.css new file mode 100644 index 0000000..2216b9c --- /dev/null +++ b/assets/css/global.css @@ -0,0 +1,33 @@ +:root { + --bg-color: #302050; + --outline-color: #6040A0; + --text-color: white; + color: var(--text-color); + background-color: var(--bg-color); +} + +body { + margin: 0; + padding: 0; + + display: flex; + height: 100dvh; + width: 100dvw; + align-items: center; + justify-content: center; + +} + +main { + display: flex; + padding: 16px; + gap: 8px; + outline: 4px var(--outline-color) solid; + flex-direction: column; +} + +main > span { + font-size: 32px; + font-family: sans-serif; + text-align: center; +} \ No newline at end of file diff --git a/assets/css/index.css b/assets/css/index.css new file mode 100644 index 0000000..e69de29 diff --git a/index.html b/index.html new file mode 100644 index 0000000..b0209ac --- /dev/null +++ b/index.html @@ -0,0 +1,16 @@ + + + + + + Main - Lucielle's Page + + + + +
+ Website Logo + Lucielle +
+ + \ No newline at end of file