diff --git a/client/src/components/css/Booking.css b/client/src/components/css/Booking.css index 47c2517..2789215 100644 --- a/client/src/components/css/Booking.css +++ b/client/src/components/css/Booking.css @@ -8,10 +8,15 @@ /* 200px left and right padding */ font-family: Arial, sans-serif; gap: 20px; - background-color: #FAFAFA; + background-color: #333; + color: #fff !important; /* Add some space between the sections */ } +.booking-movie-title { + color: #fff !important; +} + .showtimes { max-width: 500px; /* Limit the width of each section */ @@ -108,7 +113,7 @@ } .cta p { - color: #666; + color: #C5C5C5 !important; margin-bottom: 10px; } diff --git a/client/src/components/css/BookingHistory.css b/client/src/components/css/BookingHistory.css index 9125b9b..aae8c5c 100644 --- a/client/src/components/css/BookingHistory.css +++ b/client/src/components/css/BookingHistory.css @@ -1,8 +1,8 @@ .booking-history { - width: auto; + padding: 20px; - height: auto; + height: 100vh; color: #fff !important; } diff --git a/client/src/components/css/PaymentCancel.css b/client/src/components/css/PaymentCancel.css new file mode 100644 index 0000000..03ae1af --- /dev/null +++ b/client/src/components/css/PaymentCancel.css @@ -0,0 +1,57 @@ +/* PaymentSuccess.css */ + +.payment-success-container { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 100vh; + background-color: #333; + /* Green background color */ + color: #fff; + /* White text color */ +} + +.payment-success-text { + font-size: 32px; + margin-bottom: 16px; + color: #C5C5C5; +} + +.payment-success-message { + font-size: 18px; + text-align: center; + max-width: 400px; + padding: 16px; + border-radius: 8px; + background-color: rgba(255, 255, 255, 0.1); + /* Transparent white background */ + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); + /* Shadow for the container */ +} + +.main-layout { + display: flex; + flex-direction: column; + min-height: 100vh; +} + +.main-layout { + display: flex; + flex-direction: column; + min-height: 100vh; +} + +.content { + flex: 1; +} + +.content { + flex: 1; +} + + +.yes-img { + margin-top: 10px; + width: 60px; +} \ No newline at end of file diff --git a/client/src/components/css/PaymentSucess.css b/client/src/components/css/PaymentSucess.css index e9fd15b..e5ba7b2 100644 --- a/client/src/components/css/PaymentSucess.css +++ b/client/src/components/css/PaymentSucess.css @@ -5,17 +5,17 @@ flex-direction: column; align-items: center; justify-content: center; - height: 90vh; - background-color: #fff; + height: 100vh; + background-color: #333; /* Green background color */ - color: grey; + color: #fff; /* White text color */ } .payment-success-text { font-size: 32px; margin-bottom: 16px; - color: grey; + color: #C5C5C5; } .payment-success-message { @@ -29,11 +29,13 @@ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Shadow for the container */ } + .main-layout { display: flex; flex-direction: column; min-height: 100vh; } + .main-layout { display: flex; flex-direction: column; @@ -46,4 +48,4 @@ .content { flex: 1; -} +} \ No newline at end of file diff --git a/client/src/components/css/Seating.css b/client/src/components/css/Seating.css index 3a420ff..710277f 100644 --- a/client/src/components/css/Seating.css +++ b/client/src/components/css/Seating.css @@ -4,19 +4,22 @@ box-sizing: border-box; margin: 0; padding: 0; + } .seating-showtime { font-size: 1.0em; - color: #000; + color: #fff; font-weight: 200; margin: 0; padding-right: 10px; + + } .seating-movie-title { font-size: 1.2em; - color: #000; + color: #fff; font-weight: 200; margin: 0; } @@ -27,7 +30,7 @@ border: 0px solid #d1d1d1; background-color: #f6c20a; cursor: pointer; - color: #fafafa; + color: #3B3B3B; } @@ -47,6 +50,9 @@ align-items: center; gap: 120px; + background-color: #333; + color: #fff !important; + } diff --git a/client/src/components/pages/PaymentCancel.js b/client/src/components/pages/PaymentCancel.js index 69d0e7a..c849743 100644 --- a/client/src/components/pages/PaymentCancel.js +++ b/client/src/components/pages/PaymentCancel.js @@ -1,5 +1,5 @@ import React from 'react'; -import '../css/PaymentSucess.css'; // Import your CSS file for styling +import '../css/PaymentCancel.css'; // Import your CSS file for styling const PaymentCancel = () => { return ( diff --git a/client/src/components/pages/PaymentSuccess.js b/client/src/components/pages/PaymentSuccess.js index c8ba6f8..1350b3a 100644 --- a/client/src/components/pages/PaymentSuccess.js +++ b/client/src/components/pages/PaymentSuccess.js @@ -18,7 +18,7 @@ const PaymentSuccess = () => { }, [setLoading]); return ( -
+
{loading && (
@@ -26,7 +26,7 @@ const PaymentSuccess = () => {
)} {!loading && ( // Only render this part when not loading -
+

Payment Successful!

Thank you for your payment. Your transaction was successful.