Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
chaturadissanayake authored Sep 16, 2024
1 parent 4353ab6 commit ae21282
Showing 1 changed file with 26 additions and 34 deletions.
60 changes: 26 additions & 34 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,40 +1,44 @@
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
body, html {
height: 100%;
font-family: 'Roboto', sans-serif;
background-color: #1d1f27;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}

.background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('Assets/krists-luhaers-AtPWnYNDJnM-unsplash.jpg');
background-size: cover;
background-position: center;
filter: blur(8px); /* Blur effect */
z-index: -1; /* Ensure it stays behind the content */
}

.container {
width: 800px;
text-align: center;
background-color: #2d2f3b;
position: relative;
z-index: 1;
max-width: 800px;
margin: 50px auto;
background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background for readability */
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
color: #fff;
}

h1 {
color: #f39c12;
}

h2 {
color: #ffffff;
}

.movie-selection label {
display: block;
margin-bottom: 10px;
color: #fff;
font-size: 18px;
.movie-selection {
margin-bottom: 20px;
}

.movie-dropdown {
Expand All @@ -52,19 +56,7 @@ h2 {
outline: none;
}

.screen {
background-color: #ffffff;
height: 60px;
width: 100%;
text-align: center;
line-height: 60px;
font-size: 24px;
font-weight: bold;
color: #000000;
margin: 20px 0;
border-radius: 5px;
}

/* Seat Layout Styles */
.seat-grid {
display: flex;
flex-direction: column;
Expand Down

0 comments on commit ae21282

Please sign in to comment.