Số tiền cần thanh toán: 70.000 VNĐ
-
+
diff --git a/js/navbarHandle.js b/js/navbarHandle.js
new file mode 100644
index 0000000..c796034
--- /dev/null
+++ b/js/navbarHandle.js
@@ -0,0 +1,19 @@
+$(document).ready(function() {
+ var $offcanvasNavbar = $('#offcanvasNavbar');
+ var $navbar = $('.navbar-nav');
+
+ $(window).resize(function() {
+ moveLoginButtons();
+ });
+ function moveLoginButtons() {
+ if ($(window).width() <= 280) {
+ $('.login-button').appendTo($offcanvasNavbar.find('.navbar-nav'));
+ } else {
+
+ $('.login-button').appendTo($navbar);
+ }
+ }
+
+ moveLoginButtons();
+ });
+
\ No newline at end of file
diff --git a/style.css b/style.css
index 4e7ac0a..8766253 100644
--- a/style.css
+++ b/style.css
@@ -28,8 +28,8 @@ body {
.header .navbar {
height: 80px;
- background-color: rgba(var(--bs-body-bg-rgb), 1.5); /* Adjust the alpha value to make it darker */
- transition: 0.3s background-color; /* Fixing the transition property */
+ background-color: rgba(var(--bs-body-bg-rgb), 1.5);
+ transition: 0.3s background-color;
padding: 0.5rem;
box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}
@@ -69,6 +69,25 @@ body {
display: none;
}
+@media (max-width: 353px) {
+ .header .right-bt-sign {
+ display: none;
+ }
+ .header .left-bt-login {
+ border-radius: 50px;
+ }
+}
+@media (max-width: 261px) {
+ .header .right-bt-sign {
+ display: none;
+ }
+ .header .left-bt-login {
+ border-radius: 50px;
+ font-size: 10px;
+ padding: 13 px;
+ }
+}
+
.content1 {
margin-top: 90px;
}
@@ -472,4 +491,25 @@ body {
position: relative;
z-index: 1;
text-align: center;
+}
+
+/* MovieInfo */
+.showtimes-container {
+ margin-top: 30px;
+}
+
+.showtime-buttons .btn {
+ margin: 5px;
+}
+
+@media (max-width: 768px) {
+ #qr-code-modal {
+ width: 100% !important;
+ padding: 10px;
+ }
+
+ #qr-code-modal img {
+ width: 100% !important;
+ height: auto;
+ }
}
\ No newline at end of file