Skip to content

Commit

Permalink
Fixed front-end bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangsonww committed Dec 24, 2023
1 parent 92de89c commit 9b22ab5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
9 changes: 8 additions & 1 deletion discussions.css
Original file line number Diff line number Diff line change
Expand Up @@ -534,4 +534,11 @@ main {
align-items: center;
}

}
}

@media (max-width: 705px) {
#search-title,
#alt-title {
display: none;
}
}
2 changes: 1 addition & 1 deletion discussions.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h4 id="alt-title">Here, you can ask the chatbot about any movie-related topics

<!-- Chatbot UI -->
<div id="chatbotContainer">
<div id="chatbotHeader">MovieVerse Assistant</div>
<div id="chatbotHeader">The MovieVerse Assistant</div>
<div id="chatbotBody"></div>
<input id="chatbotInput" type="text" placeholder="Ask me about anything...">
</div>
Expand Down
6 changes: 3 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
}

body {
background-image: url("https://wallpaperaccess.com/full/433561.jpg");
background-image: url("universe.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
Expand Down Expand Up @@ -524,15 +524,15 @@ p {
}

.movie-details-body {
background-image: url("https://wallpaperaccess.com/full/433561.jpg");
background-image: url("universe.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
}

.movie-details-body2 {
background-image: url("https://wallpaperaccess.com/full/433561.jpg");
background-image: url("universe.jpg");
background-position: center;
height: 100vh;
background-size: auto;
Expand Down
4 changes: 2 additions & 2 deletions trivia.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ <h1 id="trivia-label">Movie Trivia Quiz</h1>

<form id="quiz-form" style="margin-bottom: 30px">
<div id="quiz-container"></div>
<button type="button" id="regenerate-questions">Get New Questions</button>
<button type="submit" id="submit">Submit Answers</button>
<button type="button" id="regenerate-questions" style="color: black">Get New Questions</button>
<button type="submit" id="submit" style="color: black">Submit Answers</button>
</form>

<button id="movie-timeline-btn" onclick="window.location.href='movie-timeline.html'" title="Explore movies through different eras!" style="bottom: 140px">Movie Timeline</button>
Expand Down

0 comments on commit 9b22ab5

Please sign in to comment.