From 2077195d2dffd4e430b206e8725355bcda18b417 Mon Sep 17 00:00:00 2001 From: lucielle Date: Tue, 26 May 2026 22:50:15 -0500 Subject: [PATCH] create base page with card --- assets/css/global.css | 33 +++++++++++++++++++++++++++++++++ assets/css/index.css | 0 index.html | 16 ++++++++++++++++ 3 files changed, 49 insertions(+) create mode 100644 assets/css/global.css create mode 100644 assets/css/index.css create mode 100644 index.html 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