-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
93 lines (93 loc) · 1.74 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
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
*{
box-sizing: border-box;
}
body{
background-color: #242324;
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Lato',sans-serif;
}
.movie-container{
margin: 20px 0;
}
.movie-container select{
background-color: #fff;
margin-left: 20px;
border: none;
border-radius: 5px;
padding:7px 2px 5px 8px;
font-size: 14px;
}
.container{
perspective: 700px;
margin-bottom: 20px;
margin-top: 10px;
}
.seat{
width: 15px;
height: 12px;
background-color: #444451;
margin: 3px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.seat.selected{
background-color: #6feaf6;
}
.seat.occupied{
background-color: #fff;
}
.seat:nth-child(2){
margin-right: 20px;
}
.seat:nth-last-child(3){
margin-right: 20px;
}
.seat:not(.occupied):hover{
cursor: pointer;
scale: 1.2;
}
.showcase .seat:not(.occupied):hover{
cursor: default;
scale: 1;
}
.showcase{
background-color: rgba(0, 0, 0, 0.1);
display: flex;
color: #777;
border-radius: 5px;
padding: 5px 10px;
list-style-type: none;
justify-content: space-between;
}
.showcase li{
display: flex;
justify-content: center;
align-items: center;
margin-left: 10px;
}
.showcase small{
margin-left: 2px;
}
.screen{
background-color: #fff;
height: 70px;
width: 100%;
margin-bottom: 30px;
box-shadow: 0 3px 10px rgba(255, 255, 255, 0.7);
transform: rotateX(-45deg);
}
.row{
display: flex;
}
p .text{
margin: 5px 0;
}
p.text span{
color: #6feaf6;
}