Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed UI Layout #100

Merged
merged 1 commit into from
Mar 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion MovieVerse-Frontend/html/analytics.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,22 @@
margin-right: 0;
}
}

body {
background-image: url("images/universe-1.png");
background-repeat: repeat-y;
background-size: 100% auto;
}

@media (max-width: 767px) {
body {
background-size: auto;
background-position: top center;
}
}
</style>
</head>
<body class="movie-details-body">
<body>
<header id="homepage-header" style="margin-top: -5px">
<a id="indexLink" href="../../index.html" style="text-decoration: none; color: inherit; cursor: pointer; margin-bottom: 0">
<h1 id="my-heading" style="margin-bottom: -10px">
Expand Down
2 changes: 1 addition & 1 deletion MovieVerse-Frontend/html/feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,8 @@ <h1 id="my-heading" style="margin-bottom: -10px; margin-top: 19px">
<textarea id="message" name="message" placeholder="Your Feedback" required></textarea>
<button type="submit">Send Feedback</button>
<p style="color: black">Need immediate assistance? Submit a support request using the link below and we'll get back to you as soon as possible.</p>
<button id="supportBtn" onclick="window.location.href='support.html'">Request Support</button>
</form>
<button id="supportBtn" onclick="window.location.href='support.html'">Request Support</button>
</div>

<script>
Expand Down
2 changes: 1 addition & 1 deletion MovieVerse-Frontend/html/support.html
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,8 @@ <h1 id="my-heading" style="margin-bottom: -10px; margin-top: 19px">
<textarea id="message" name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
<p style="color: black">Have a feedback for us? Or any suggestions to improve our app? Click the button below to be redirected to the feedback page.</p>
<button id="supportBtn" onclick="window.location.href='feedback.html'" title="Submit a feedback">Submit Feedback</button>
</form>
<button id="supportBtn" onclick="window.location.href='feedback.html'" title="Submit a feedback">Submit Feedback</button>
</div>

<script>
Expand Down
Loading