aboutsummaryrefslogtreecommitdiffstats
path: root/public/projects/js-small-apps/clock/style.css
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-02-20 16:11:50 +0100
committerArmand Philippot <git@armandphilippot.com>2022-02-20 16:15:08 +0100
commit73a5c7fae9ffbe9ada721148c8c454a643aceebe (patch)
treec8fad013ed9b5dd589add87f8d45cf02bbfc6e91 /public/projects/js-small-apps/clock/style.css
parentb01239fbdcc5bbc5921f73ec0e8fee7bedd5c8e8 (diff)
chore!: restructure repo
I separated public files from the config/dev files. It improves repo readability. I also moved dotenv helper to public/inc directory and extract the Matomo tracker in the same directory.
Diffstat (limited to 'public/projects/js-small-apps/clock/style.css')
-rw-r--r--public/projects/js-small-apps/clock/style.css75
1 files changed, 75 insertions, 0 deletions
diff --git a/public/projects/js-small-apps/clock/style.css b/public/projects/js-small-apps/clock/style.css
new file mode 100644
index 0000000..f1327e1
--- /dev/null
+++ b/public/projects/js-small-apps/clock/style.css
@@ -0,0 +1,75 @@
+*,
+*::before,
+*::after {
+ box-sizing: border-box;
+ padding: 0;
+ margin: 0;
+}
+
+body {
+ display: flex;
+ flex-flow: column nowrap;
+ min-height: 100vh;
+ font-size: 16px;
+ font-size: 1rem;
+ font-family: Georgia, "Times New Roman", Times, serif;
+}
+
+.header,
+.app,
+.footer {
+ width: min(calc(100vw - 2rem), 800px);
+ margin: auto;
+}
+
+.header {
+ font-size: 2rem;
+ text-align: center;
+ margin-bottom: 2rem;
+ padding: 2rem 0;
+}
+
+.footer {
+ font-size: 0.9rem;
+ text-align: center;
+ margin-top: 3rem;
+ padding: 2rem 0;
+}
+
+.app {
+ flex: 1;
+ display: flex;
+ flex-flow: row wrap;
+ align-items: center;
+ justify-content: center;
+ gap: clamp(1rem, 5vw, 3rem);
+}
+
+#date {
+ flex: 0 0 100%;
+ font-size: 1.5rem;
+ text-align: center;
+ padding: 1rem 0;
+}
+
+#svg-clock {
+ width: 20rem;
+ height: 20rem;
+}
+
+#digital-clock {
+ display: flex;
+ flex-flow: row nowrap;
+ gap: 0.5rem;
+ width: max-content;
+ padding: 2rem;
+ border: 5px solid #000;
+ font-family: Verdana, Geneva, Tahoma, sans-serif;
+ font-size: 2rem;
+ font-weight: 600;
+}
+
+#text-clock {
+ flex: 0 0 100%;
+ text-align: center;
+}