From c3195fcc87494de98cb45a92b1f6a7227422759d Mon Sep 17 00:00:00 2001 From: jdreichmann Date: Tue, 23 Jul 2019 17:03:48 +0200 Subject: [PATCH] landing page: create initial layout --- index.html | 16 ++++++++++++++++ main.css | 31 +++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 index.html create mode 100644 main.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..2201757 --- /dev/null +++ b/index.html @@ -0,0 +1,16 @@ + + + + Finally, coffee! + + + + +
+
+
FGHT
NZS!
+
DRNK C0FFƎE
+
+
+ + diff --git a/main.css b/main.css new file mode 100644 index 0000000..20bb9c2 --- /dev/null +++ b/main.css @@ -0,0 +1,31 @@ +body { + background-color: #333; +} + +.sticker { + background-color: black; + height: 40vh; + width: 50vh; + position: relative; + margin: 5vh auto; +} + +.sticker .red { + height: 10%; + width: 100%; + margin: 0 0; + background-color: red; +} + +.sticker .text { + color: white; + font-family: "Courier new", monospace, sans-serif; + font-weight: bold; + font-size: 4em; + text-align: center; +} + +.sticker .text.bigger { + font-size: 7em; +} +