-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (58 loc) · 1 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
.payButton {
-moz-box-shadow: 3px 3px 0px 0px #3dc21b;
-webkit-box-shadow: 3px 3px 0px 0px #3dc21b;
box-shadow: 3px 3px 0px 0px #3dc21b;
background-color:#a7da7b;
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:17px;
font-weight:bold;
padding:8px 52px;
text-decoration:none;
text-shadow:0px 1px 0px #2f6627;
margin-right: 10px;
}
.payButton:hover {
background-color:#5cbf2a;
}
.payButton:active {
position:relative;
top:1px;
}
table {
border-spacing: 0;
width: 60%;
border: 1px solid color:#A8DA7B;;
margin-top: 10px;
}
th {
cursor: pointer;
font-size: 30px;
color: white;
}
th, td {
text-align: left;
padding: 16px;
}
tr:nth-child(odd) {
color:#A8DA7B;
font-family: arial;
}
tr:nth-child(even) {
color:#000;
font-family: arial;
}
tr:nth-child(even) {
background-color: #FFCC02
}
tr:nth-child(odd) {
background-color: #333232
}
body {
background-color: #2b2c2c;
}