Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
0nandon authored Dec 9, 2024
1 parent 8017703 commit dcf492c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,18 @@
<script src="./static/js/index.js"></script>

<style>
body {
display: flex;
justify-content: center; /* Centers horizontally */
align-items: center; /* Centers vertically */
height: 100vh; /* Full viewport height */
margin: 0;
background-color: #f4f4f4;
font-family: Arial, sans-serif;
}
.container2 {
display: flex;
flex-direction: row; /* Ensures horizontal alignment */
flex-direction: row; /* Horizontal alignment of videos */
gap: 20px; /* Space between videos */
text-align: center;
}
Expand All @@ -62,7 +71,6 @@
video {
width: 300px; /* Adjust width as needed */
height: auto;
border: 1px solid #ccc;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
</style>
Expand Down

0 comments on commit dcf492c

Please sign in to comment.