From 8e3c594fec0e11ae3157dd3b4b75035993ac2d01 Mon Sep 17 00:00:00 2001 From: will Date: Thu, 29 Aug 2024 00:44:13 +0100 Subject: [PATCH] Added autocue doomsday clock + Assets directory --- assets/arrow.svg | 75 +++++++++++++++++++++++++++++++++++++ assets/clock.svg | 72 +++++++++++++++++++++++++++++++++++ star.svg => assets/star.svg | 0 autocue/index.html | 20 ++++++++++ index.html | 2 +- 5 files changed, 168 insertions(+), 1 deletion(-) create mode 100644 assets/arrow.svg create mode 100644 assets/clock.svg rename star.svg => assets/star.svg (100%) diff --git a/assets/arrow.svg b/assets/arrow.svg new file mode 100644 index 0000000..53f7a23 --- /dev/null +++ b/assets/arrow.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + diff --git a/assets/clock.svg b/assets/clock.svg new file mode 100644 index 0000000..3ccaec9 --- /dev/null +++ b/assets/clock.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + diff --git a/star.svg b/assets/star.svg similarity index 100% rename from star.svg rename to assets/star.svg diff --git a/autocue/index.html b/autocue/index.html index 4b53a5c..51b0c8f 100644 --- a/autocue/index.html +++ b/autocue/index.html @@ -19,6 +19,17 @@ body { bottom: 0; left: 0; margin: 20px; +} +#clock { + position: absolute; + bottom: 0; + right: 0; + width: 250px; + height: 250px; + margin: 10px; +} +#arrow { + transition: transform 1.5s; }