diff --git a/new-website/feedback.css b/new-website/feedback.css index 40101671..6ffbdced 100644 --- a/new-website/feedback.css +++ b/new-website/feedback.css @@ -122,4 +122,30 @@ body.dark #form-messages .alert-danger { background-color: #333; /* Darker background color for messages */ color: #fff; /* Light text color for messages */ border-color: #333; /* Darker border color for messages */ -} \ No newline at end of file +} + + + + +/*star rating*/ +.star-rating { + direction: ltr; /* Optional: this can change star direction */ +} + +.star-rating ul { + list-style-type: none; + padding: 0; + display: inline-block; +} + +.star-rating .star { + display: inline-block; + font-size: 2em; + color: lightgrey; + cursor: pointer; +} + +.star-rating .star.selected, +.star-rating .star.hover { + color: gold; +} diff --git a/new-website/feedback.html b/new-website/feedback.html index 2d417ed1..dc026ec5 100644 --- a/new-website/feedback.html +++ b/new-website/feedback.html @@ -23,6 +23,7 @@ ResourceHub +
@@ -35,7 +36,18 @@

Fill this feedback form

Reach out to us.

- + +
+
    +
  • +
  • +
  • +
  • +
  • +
+
+ +
@@ -81,7 +93,57 @@

We value your feedback

+ \ No newline at end of file diff --git a/new-website/home.js b/new-website/home.js index b546fe3f..1d454746 100644 --- a/new-website/home.js +++ b/new-website/home.js @@ -17,4 +17,5 @@ function toggleDarkMode() { particlesJS.load('particles-js', './assets/homeparticles.json', function () { console.log('callback - particles.js config loaded'); -}); \ No newline at end of file +}); +