From 3b6dff9045184de9b511d720c89f6618dc19ac25 Mon Sep 17 00:00:00 2001 From: Paul Martin Date: Tue, 7 Nov 2023 23:24:46 +0100 Subject: [PATCH] initial commit --- blob-animation.js | 0 home.html | 13 +++++++++++++ noise-texture.svg | 9 +++++++++ style.css | 41 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 63 insertions(+) create mode 100644 blob-animation.js create mode 100644 home.html create mode 100644 noise-texture.svg create mode 100644 style.css diff --git a/blob-animation.js b/blob-animation.js new file mode 100644 index 0000000..e69de29 diff --git a/home.html b/home.html new file mode 100644 index 0000000..4264f8e --- /dev/null +++ b/home.html @@ -0,0 +1,13 @@ + + + + DAIALECT + + + + +
+

DAIA
LECT

+
+ + \ No newline at end of file diff --git a/noise-texture.svg b/noise-texture.svg new file mode 100644 index 0000000..a7420a0 --- /dev/null +++ b/noise-texture.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..6a31f33 --- /dev/null +++ b/style.css @@ -0,0 +1,41 @@ +body +{ + background-color: #FFE49F; + color: #E07A31; +} + +.main-title +{ + font-family: "League Spartan Black"; + font-size: 200px; + display: flex; + text-align: center; + display: flex; + justify-content: center; + align-items: center; + width: 60%; + height: 200%; + z-index: 100; + position: relative; +} + +body::before, +body::after { + position: absolute; + left: 0; + top: 0; + content: ''; + width: 2048px; + height: 2048px; + z-index: 50; + opacity:100%; +} + +body::before { + background: url("noise-texture.svg"); + mix-blend-mode: soft-light; +} + + + +