Skip to content

Commit

Permalink
Final: Enhance app functionalities (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangsonww committed Jul 29, 2024
1 parent b8e42cb commit 9bf8805
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions MovieVerse-Frontend/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion MovieVerse-Frontend/js/quiz.js
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ function generateRandomQuestions() {
});

headerElement.addEventListener("mouseover", function () {
headerElement.style.color = "blue";
headerElement.style.color = "orange";
});

headerElement.addEventListener("mouseout", function () {
Expand Down

0 comments on commit 9bf8805

Please sign in to comment.