From c05a6934bdf7cadd726e3072d09687168d6d797a Mon Sep 17 00:00:00 2001 From: bendwit <184859846+BenDWit@users.noreply.github.com> Date: Mon, 23 Jun 2025 16:07:00 +0200 Subject: [PATCH] finished stylized todolist --- .../CSS/stylized-TODO-list/index.html | 44 +++++++++++++++++++ .../CSS/stylized-TODO-list/styles.css | 37 ++++++++++++++++ 2 files changed, 81 insertions(+) create mode 100644 Certified_Full_Stack_Developer/CSS/stylized-TODO-list/index.html create mode 100644 Certified_Full_Stack_Developer/CSS/stylized-TODO-list/styles.css diff --git a/Certified_Full_Stack_Developer/CSS/stylized-TODO-list/index.html b/Certified_Full_Stack_Developer/CSS/stylized-TODO-list/index.html new file mode 100644 index 0000000..6111134 --- /dev/null +++ b/Certified_Full_Stack_Developer/CSS/stylized-TODO-list/index.html @@ -0,0 +1,44 @@ + + + + + + Styled To-Do List + + + + + + \ No newline at end of file diff --git a/Certified_Full_Stack_Developer/CSS/stylized-TODO-list/styles.css b/Certified_Full_Stack_Developer/CSS/stylized-TODO-list/styles.css new file mode 100644 index 0000000..10960fa --- /dev/null +++ b/Certified_Full_Stack_Developer/CSS/stylized-TODO-list/styles.css @@ -0,0 +1,37 @@ +body { + background-color: gray; +} + +.todo-list { + color: black; + background-color: rgba(0, 0, 0, 0.21) +} + +a { + text-decoration: none; +} + +a:link { + text-decoration: none; + color: red; +} + +a:visited { + text-decoration: none; + color: green; +} + +a:hover { + text-decoration: none; + color: hotpink; +} + +a:active { + text-decoration: outline; + color: blue; +} + +a:focus { + outline: 2px solid orange; + outline-offset: 2px; +} \ No newline at end of file