-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
94 lines (93 loc) · 1.74 KB
/
styles.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
*{
box-sizing: border-box;
font-family: 'Lato', sans-serif;
}
body{
background-color: #242333;
display: flex;
flex-direction: column;
color: aliceblue;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
.movie-container{
margin: 20px 0;
}
.movie-container select{
background-color: #fff;
border: 0;
border-radius: 5px;
font-size: 14px;
margin-left: 10px;
padding: 5px 15px 5px 15px;
appearance: none;
}
.container{
perspective: 1000px;
margin-bottom: 30px;
}
.seat{
background-color: #444451;
height: 12px;
width: 15px;
margin: 3px;
border-top-left-radius: 10px;
border-top-right-radius: 10px
}
.seat.selected{
background-color: aqua;
}
.seat.occupied{
background-color: #fff;
}
.seat:nth-last-of-type(2){
margin-left: 18px;
}
.seat:nth-of-type(2){
margin-right: 18px;
}
.seat:not(.occupied):hover{
cursor: pointer;
transform: scale(1.2);
}
.showcase .seat:not(.occupied):hover{
cursor: default;
transform: none;
}
.showcase{
background-color: rgba(0,0,0,0.1);
padding: 5px 10px;
border-radius: 5px;
color:#777;
list-style-type: none;
display: flex;
justify-content: center;
}
.showcase li{
display: flex;
justify-content: center;
align-items: center;
margin: 0 10px;
}
.showcase li small{
margin-left: 2px;
}
.row{
display: flex;
}
.screen{
background-color: #fff;
height: 70px;
width: 100%;
margin: 15px 0px;
transform: rotateX(-45deg);
box-shadow: 0 3px 10px rgba(255,255,255,0.7);
}
p.text{
margin: 5px 0;
}
p.text span{
color: #6feaf6;
}