From 8beaec6c20b869e2587ba2f26f4828d19917730b Mon Sep 17 00:00:00 2001 From: El2-D2-42 Date: Mon, 16 Oct 2023 11:26:11 +0100 Subject: [PATCH 1/3] Add bullet points to description list --- html_css/styling-lists.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/html_css/styling-lists.html b/html_css/styling-lists.html index 5efcc09..3c420c0 100644 --- a/html_css/styling-lists.html +++ b/html_css/styling-lists.html @@ -12,6 +12,21 @@ font-size: 10px; } + dl { + list-style-type: none; /* Remove default list style */ + padding-left: 0; /* Remove default padding */ + } + + dt::before { + content: '\2022'; /* Unicode character for bullet point */ + font-size: 1.5em; /* Adjust size if needed */ + margin-right: 0.5em; /* Adjust spacing if needed */ + } + + dd { + margin-left: 1.5em; /* Adjust indentation of descriptions */ + } + h2 { font-size: 2rem; } From ce76be008e3a32fde0e91c27e08409d5f1df0640 Mon Sep 17 00:00:00 2001 From: El2-D2-42 Date: Mon, 6 Nov 2023 09:37:24 +0000 Subject: [PATCH 2/3] Add elapsed time measurement --- dom_manipulation/button.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/dom_manipulation/button.html b/dom_manipulation/button.html index 790c6e8..768e874 100644 --- a/dom_manipulation/button.html +++ b/dom_manipulation/button.html @@ -6,11 +6,12 @@ From 69312673c06f4f32e6e628de478eec35d05515c0 Mon Sep 17 00:00:00 2001 From: El2-D2-42 Date: Mon, 6 Nov 2023 09:55:31 +0000 Subject: [PATCH 3/3] Add elapsed time measurement --- dom_manipulation/button.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dom_manipulation/button.html b/dom_manipulation/button.html index 768e874..c89bdaf 100644 --- a/dom_manipulation/button.html +++ b/dom_manipulation/button.html @@ -6,12 +6,12 @@