Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
harrysupport authored Dec 15, 2024
1 parent dfb8bfb commit 4f4f547
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,27 @@
color: red;
background-color: rgba(0, 0, 0, 0.1); /* Adds a subtle background highlight */
}

/* Adjust for small screens */
@media (max-width: 600px) {
.custom-popup-content {
width: 90%; /* Increase width for smaller devices */
max-width: none; /* Remove max-width to allow more flexibility */
}

.custom-popup-content video {
width: 100%; /* Make the video fill the container */
height: auto; /* Maintain aspect ratio */
}
}

/* Adjust for even smaller screens like iPhones */
@media (max-width: 400px) {
.custom-popup-content {
width: 95%; /* Even more width for very small devices */
}
}

</style>

</head>
Expand Down

0 comments on commit 4f4f547

Please sign in to comment.