-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
171 lines (147 loc) · 2.91 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/* Global reset and box-sizing */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
font-family: 'Roboto', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
background-color: #000;
position: relative;
}
/* Background Image */
.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); /* Blurred effect */
z-index: -1; /* Ensures it stays behind the content */
}
/* Container styling */
.container {
max-width: 800px;
margin: 50px auto;
background-color: rgba(0, 0, 0, 0.9); /* Darker transparency for background visibility */
padding: 20px;
border-radius: 10px;
text-align: center;
color: #fff;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
h1 {
color: #f39c12;
margin-bottom: 20px;
}
.screen {
background-color: #fff;
height: 50px;
width: 100%;
text-align: center;
line-height: 50px;
font-size: 24px;
font-weight: 500; /* Changed to medium font weight */
color: #000;
margin: 20px 0;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.seat-grid {
display: flex;
flex-direction: column;
align-items: center;
}
.row {
display: flex;
justify-content: center;
margin-bottom: 10px;
}
.seat {
background-color: #4CAF50;
height: 40px;
width: 40px;
margin: 5px;
text-align: center;
line-height: 40px;
cursor: pointer;
border-radius: 5px;
}
.seat.selected {
background-color: #f39c12;
}
.seat.unavailable {
background-color: #e74c3c;
cursor: not-allowed;
}
.seat:hover:not(.unavailable):not(.selected) {
background-color: #666;
}
/* Legend */
.legend {
display: flex;
justify-content: space-around;
margin: 20px 0;
}
.legend-item {
display: flex;
align-items: center;
}
.legend-item div {
height: 20px;
width: 20px;
margin-right: 10px;
}
.static-available {
background-color: #4CAF50;
}
.static-selected {
background-color: #f39c12;
}
.static-unavailable {
background-color: #e74c3c;
}
.summary {
margin-top: 20px;
font-size: 18px;
}
.btn {
padding: 10px 20px;
background-color: #ffcc00;
border: none;
color: #000;
font-size: 18px;
border-radius: 5px;
cursor: pointer;
margin: 0 auto;
display: block;
}
.btn:hover {
background-color: #e6b800;
}
/* Footer styling */
.footer {
display: flex;
justify-content: space-between;
width: 100%;
padding: 10px 20px;
background-color: rgba(0, 0, 0, 0.8); /* Transparency for footer */
color: #fff;
position: fixed;
bottom: 0;
}
.footer .legal, .footer .designed-by {
font-size: 12px;
}
.footer .designed-by {
text-align: right;
}