From 9bf880520b7a972107e6ce248c2eabcb413c2893 Mon Sep 17 00:00:00 2001 From: Son Nguyen Date: Mon, 29 Jul 2024 21:46:56 +0700 Subject: [PATCH] Final: Enhance app functionalities (#196) --- MovieVerse-Frontend/css/style.css | 8 ++++++++ MovieVerse-Frontend/js/quiz.js | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/MovieVerse-Frontend/css/style.css b/MovieVerse-Frontend/css/style.css index 8c4c4373..d723151c 100644 --- a/MovieVerse-Frontend/css/style.css +++ b/MovieVerse-Frontend/css/style.css @@ -1285,6 +1285,14 @@ header h1 { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); } +.question-header { + color: #ff8623; +} + +.question-header:hover { + color: #ffeb3b; +} + #rating { color: inherit; } diff --git a/MovieVerse-Frontend/js/quiz.js b/MovieVerse-Frontend/js/quiz.js index 6578f393..9fd71e87 100644 --- a/MovieVerse-Frontend/js/quiz.js +++ b/MovieVerse-Frontend/js/quiz.js @@ -783,7 +783,7 @@ function generateRandomQuestions() { }); headerElement.addEventListener("mouseover", function () { - headerElement.style.color = "blue"; + headerElement.style.color = "orange"; }); headerElement.addEventListener("mouseout", function () {