From 6e5b4dda43a94a1e56dceafa9ef368f29ae16bd9 Mon Sep 17 00:00:00 2001 From: eneller Date: Sun, 30 Mar 2025 17:49:23 +0200 Subject: [PATCH] basic styling --- index.html | 14 ++++++++++---- styles.css | 22 ++++++++++++++++++++++ 2 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 styles.css diff --git a/index.html b/index.html index 945cc94..1df4584 100644 --- a/index.html +++ b/index.html @@ -8,17 +8,23 @@ -

Mein Name

-

Beruf

-

Adresse

+

Mein Name

+

Beruf

+ + Adresse +

+

+ noreply@example.org

+ Telefon: 01234/56789

- Whatsapp + + Whatsapp

\ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..9bef2bc --- /dev/null +++ b/styles.css @@ -0,0 +1,22 @@ +:root{ + --bg-gradient: radial-gradient(circle at center, #144250, #0c2931); + --fg:#FFF; +} +html{ + font-family: sans-serif; +} +body{ + background: var(--bg-gradient); + overflow-x: hidden; + margin:.5em auto; + max-width:min(100%,800px); + line-height:1.4; + font-size:18px; + color:var(--fg); + padding:0 .2em; + text-align: center; +} +.inline-icon{ + vertical-align: middle; + height: 1em; +} \ No newline at end of file