-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (56 loc) · 1009 Bytes
/
style.css
File metadata and controls
57 lines (56 loc) · 1009 Bytes
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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
/* border: 1px solid red; */
scroll-behavior: smooth;
}
.contain{
max-width: 1200px;
margin: auto;
}
.btn{
background-color: #1cd10036;
border: 1px solid #1DD100;
border-radius: 5px;
cursor: pointer;
}
header{
height: 80vh;
background-image: url(images/banner.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.main{
background-color: #F7F8F8;
}
hr{
border: 1px solid #808080;
border-style: dashed;
}
.seat-selected{
background: #1DD100;
color: white;
}
.seat-not-selected{
background-color: #80808022;
}
.cursor{
cursor: not-allowed;
}
.popup{
position: fixed;
width: 100%;
height: 100vh;
backdrop-filter: blur(11px);
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
}
.inside_pop{
background: #fff;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}