diff --git a/index.html b/index.html index 884b0ad..bff3734 100644 --- a/index.html +++ b/index.html @@ -47,10 +47,10 @@
- + @@ -82,7 +82,8 @@ - Code of Conduct + Code of Conduct + License @@ -254,6 +255,18 @@ +
+ + + + + + + + + + +
@@ -274,6 +287,19 @@ LinkedIn diff --git a/website/styles/style.css b/website/styles/style.css index 23483b6..6ab3124 100644 --- a/website/styles/style.css +++ b/website/styles/style.css @@ -52,6 +52,35 @@ body { transition-duration: 0.2s; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; } +.star-rating { + display: flex; + justify-content: center; + direction: rtl; /* This reverses the order of the stars */ + } + + .star-rating input { + display: none; + /* Hide the radio buttons */ + } + + .star-rating label { + font-size: 2em; + /* Star size */ + color: grey; + /* Default star color */ + cursor: pointer; + } + + .star-rating input:checked~label { + color: gold; + /* Gold color for selected stars */ + } + + .star-rating label:hover, + .star-rating label:hover~label { + color: gold; + /* Change color on hover */ + } input { color: white;