From 8ef598fe905a54ae3f70bb2d6b9bf53def89b2f3 Mon Sep 17 00:00:00 2001 From: ada Date: Tue, 1 Nov 2022 14:47:21 +0100 Subject: [PATCH 1/3] Update 'index.html' --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index edfb1fd..8f7fc50 100644 --- a/index.html +++ b/index.html @@ -7,6 +7,6 @@ -

+

From 3331a0a2f33be0acbacfe495e742494b656d4d14 Mon Sep 17 00:00:00 2001 From: suzan Date: Tue, 1 Nov 2022 14:48:28 +0100 Subject: [PATCH 2/3] Upload files to '' --- comingsoon.svg | 92 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 comingsoon.svg diff --git a/comingsoon.svg b/comingsoon.svg new file mode 100644 index 0000000..93f567f --- /dev/null +++ b/comingsoon.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + COMING SOON COMING SOON + + + From f2c2ac6fc22d98df9623a717ada2b0e8562e49de Mon Sep 17 00:00:00 2001 From: bo Date: Tue, 1 Nov 2022 14:49:21 +0100 Subject: [PATCH 3/3] added background animation lovely! --- style.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..696fb8a --- /dev/null +++ b/style.css @@ -0,0 +1,16 @@ + body { + background-color: black; + margin-top: 10%; + margin-left: 10%; + margin-right: 10%; + font-family: monospace; + color: #AB00FF; + animation: blink 3s infinite alternate; + } + .special { + transform: rotate(180deg); + } + @keyframes blink { + 0% { background: black } + 100% { background: white } + } \ No newline at end of file