From b29f9db64e14c8a58a0f0cb1be8765d8654fdf7d Mon Sep 17 00:00:00 2001 From: Fraser Embrey <7635426+FraserEmbrey@users.noreply.github.com> Date: Fri, 15 Nov 2024 01:12:03 +0000 Subject: [PATCH] Add files via upload --- index.html | 60 +++++++++++++++++++++++++++++++++++++++++++ styles.css | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 134 insertions(+) create mode 100644 index.html create mode 100644 styles.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..275d9ac --- /dev/null +++ b/index.html @@ -0,0 +1,60 @@ + + + + + + Nibbles Night — 11th December + + + + +
+

Nibbles Night

+

Join us on December 11th for a cosy evening of delightful bites and non-alcoholic cocktails.

+
+ +
+

Event Details

+

Date: December 11th

+

Time: 5 PM

+

Location: Fraser's Flat

+
+ + + +
+

Non-Alcoholic Cocktails

+ +
+ + + + + diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..d2ca9ba --- /dev/null +++ b/styles.css @@ -0,0 +1,74 @@ +/* Basic Reset */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +/* Body Styling */ +body { + font-family: Palatino, sans-serif; + background-color: #f7f7f7; + color: #333; + padding: 20px; + max-width: 600px; + margin: auto; +} + +/* Header Styling */ +header { + text-align: center; + margin-bottom: 20px; +} + +header h1 { + font-size: 2em; + color: #2c3e50; +} + +header p { + font-size: 1.1em; + color: #555; +} + +/* Section Styling */ +section { + margin-bottom: 30px; +} + +h2 { + font-size: 1.5em; + color: #2c3e50; + border-bottom: 2px solid #e74c3c; + padding-bottom: 5px; + margin-bottom: 15px; +} + +h3 { + font-size: 1.2em; + color: #e74c3c; + margin-top: 15px; + margin-bottom: 10px; +} + +/* List Styling */ +ul { + list-style-type: none; + padding-left: 10px; +} + +li { + font-size: 1em; + padding: 5px 0; + color: #555; +} + +/* Footer Styling */ +footer { + text-align: center; + padding: 10px 0; + font-size: 0.9em; + color: #888; + border-top: 1px solid #ddd; + margin-top: 20px; +}