-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathseat.css
More file actions
83 lines (64 loc) · 1.16 KB
/
seat.css
File metadata and controls
83 lines (64 loc) · 1.16 KB
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
@import url('https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap');
* {
font-family: 'Gowun Dodum', sans-serif;
}
.title {
background-color: beige;
background-position: center;
background-size: cover;
height: 80px;
min-width: 1200px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 30px;
margin-bottom: 50px;
}
body {
min-width: 1200px;
overflow-x: hidden;
}
#stage {
background-color: #9e6213;
height: 30px;
min-width: 1200px;
margin-bottom: 20px;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 0 0 50px 50px;
}
#seatList {
text-align: center;
margin-bottom: 50px;
}
button {
width: 30px;
height: 30px;
margin: 7px;
}
button.VIP:hover,
button.R:hover,
button.S:hover,
button.A:hover {
border: solid;
background-color: tomato;
}
button.VIP {
background-color: skyblue;
}
button.R {
background-color: yellowgreen;
}
button.S {
background-color: gold;
}
button.A {
background-color: pink;
}
button[disabled] {
background-color: gray;
}