commit c3195fcc87494de98cb45a92b1f6a7227422759d Author: jdreichmann Date: Tue Jul 23 17:03:48 2019 +0200 landing page: create initial layout 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; +} +