-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseat-selection.css
108 lines (94 loc) · 1.67 KB
/
seat-selection.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
.seating-container {
max-width: 700px; /* Adjust as needed */
margin: 0 auto;
padding: 7px;
border: 2px solid #ccc; /* Border color */
border-radius: 10px;
background-color: #f9f9f9; /* Background color */
}
h1 {
text-align: center;
color: red;
}
ol {
list-style: none;
padding: 0;
margin: 0;
}
.seats {
padding: 2px;
margin: 5px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.seat {
width: calc(20% - 5px);
display: flex;
flex-direction: column;
align-items: center;
flex: 0 0 14.28%;
padding: 2px;
position: relative;
margin-right: 5px;
margin-bottom: 5px;
}
.seat label {
display: block;
position: relative;
width: 75%;
text-align: center;
font-size: 14px;
font-weight: bolder;
line-height: 1.5rem;
padding: 4px 0;
background: #5bfc60;
border-radius: 5px;
color: black;
}
.seat label:hover {
cursor: pointer;
box-shadow: 0 0 0px 2px green;
}
.seat input[type=checkbox] {
position: absolute;
}
.seat input[type=checkbox]:checked + label {
background: #656e65;
}
.seat:nth-child(2) {
margin-right: 14%;
}
.price {
display: block;
text-align: center;
font-size: 10px;
color: black;
margin-top: 2px;
}
.butt {
text-align: center;
margin-top: auto;
}
.continue-btn {
background-color: red;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
}
.continue-btn:hover {
background-color: darkred;
}
b {
color: #5bfc60;
}
h4{
color: #656e65;
}
p{
color: rgb(3, 115, 243);
}