-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (54 loc) · 906 Bytes
/
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
body {
background-image: url("plane.png");
background-repeat: no-repeat;
background-color: #474747;
background-attachment: fixed;
background-position: center;
}
.row {
display: inline-block;
float:left;
}
.left {
width: 27.7%;
padding-left: 20%;
}
.right {
width: 27.7%;
padding-right: 20%
}
button {
background: blue;
}
.seat:active,
.seat:hover {
/*background-color: #9c74db;*/
color: white;
}
.seat:visited {
background-color: red;
}
.seat {
width: 65px;
height: 65px;
background-color:#44c767;
-moz-border-radius:1px;
-webkit-border-radius:1px;
border-radius:8px;
border:1px solid #18ab29;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Verdana;
font-size:30px;
padding:2px 1px;
text-decoration:none;
text-shadow:1px 1px 4px #2f6627;
}
.seat:hover {
background-color:#5cbf2a;
}
.seat:active {
position:relative;
top:1px;
}