From 5f053fce39c81106ecbd76e39c0fd796a2b8980a Mon Sep 17 00:00:00 2001 From: Andree Date: Sat, 23 Sep 2023 15:11:25 -0500 Subject: [PATCH 1/3] day 01 finished --- 01 - JavaScript Drum Kit/index-START.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html index 4070d32767..bcf3d5d6ac 100644 --- a/01 - JavaScript Drum Kit/index-START.html +++ b/01 - JavaScript Drum Kit/index-START.html @@ -58,6 +58,26 @@ From e578b8eb53238796214c58097ae1cedc8910656e Mon Sep 17 00:00:00 2001 From: Andree Date: Mon, 25 Sep 2023 19:54:40 -0500 Subject: [PATCH 2/3] css + JS CLOCK finished --- 02 - JS and CSS Clock/index-START.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/02 - JS and CSS Clock/index-START.html b/02 - JS and CSS Clock/index-START.html index 55ab1a5331..9ee6a6cfa3 100644 --- a/02 - JS and CSS Clock/index-START.html +++ b/02 - JS and CSS Clock/index-START.html @@ -63,12 +63,37 @@ background: black; position: absolute; top: 50%; + transform-origin: 100%; + transform: rotate(90deg); } From 720a9ab94c4b855d581a41cdafef2d323ec7dab2 Mon Sep 17 00:00:00 2001 From: Andree Date: Mon, 25 Sep 2023 20:30:21 -0500 Subject: [PATCH 3/3] exercise 3 finished (my solution) --- 03 - CSS Variables/index-START.html | 38 +++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/03 - CSS Variables/index-START.html b/03 - CSS Variables/index-START.html index d5fcc3a2ae..213383e606 100644 --- a/03 - CSS Variables/index-START.html +++ b/03 - CSS Variables/index-START.html @@ -26,6 +26,21 @@

Update CSS Variables with JS

/* misc styles, nothing to do with CSS variables */ + :root { + --base: #ffc600; + --spacing: 10px; + --blur: 10px; + } + + img { + padding: var(--spacing); + background: var(--base); + filter: blur(var(--blur)); + } + + .hl { + color: var(--base); + } body { text-align: center; @@ -46,6 +61,29 @@

Update CSS Variables with JS