-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyStyle.css
77 lines (64 loc) · 1.33 KB
/
myStyle.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
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}
table {
border-spacing: 0;
width: 100%;
border: 1px solid #dddddd;
border-collapse: separate;
border-left: 0;
border-radius: 4px;
margin-top:20px;
}
tbody>tr:nth-child(odd)>td {
background-color: lightGrey;
}
tr {
border-collapse: separate;
}
th,td {
padding: 8px;
line-height: 20px;
text-align: left;
vertical-align: top;
border-left: 1px solid #dddddd;
}
td {
border-top: 1px solid #dddddd;
}
tbody:last-child tr:last-child>td:first-child {
border-bottom-left-radius: 4px;
}
tbody:last-child tr:last-child>td:last-child {
border-bottom-right-radius: 4px;
}
button {
padding: 4px 12px;
color: #333333;
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
border: 1px solid #cccccc;
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
border-bottom-color: #b3b3b3;
border-radius: 4px;
}
button:active {
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
color: #333333;
background-color: #e6e6e6;
}
button:hover, button:focus {
background-color: #e6e6e6;
color: #333333;
}
footer {
position: fixed;
bottom: 0px;
background-color: lightGrey;
height: 60px;
left: 0px;
text-align: center;
width: 100%;
line-height: 60px;
font-weight: bold;
}