-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
112 lines (101 loc) · 1.8 KB
/
main.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body {
font-family: tahoma;
background: url("http://subtlepatterns.com/patterns/ps_neutral.png");
}
table {
margin: auto;
background: #FFF;
border-collapse: collapse;
background: #FFF;
}
tr:first-child {
background: linear-gradient(to bottom, #FFF 50%, #f1f1f1);
}
th {
padding: .5em 1em;
white-space: nowrap;
}
th:nth-of-type(1) {
border-top: .25em solid black;
}
th:nth-of-type(2) {
color: green;
border-top: .25em solid green;
}
th:nth-of-type(3) {
color: orange;
border-top: .25em solid orange;
}
th:nth-of-type(4) {
color: red;
border-top: .25em solid red;
}
th:nth-of-type(5),
th:nth-of-type(6),
th:nth-of-type(7) {
color: blue;
border-top: .25em solid blue;
}
th:nth-of-type(6),
th:nth-of-type(7) {
color: lightblue;
border-color: #99F;
}
th:nth-of-type(7) {
border-color: #CCF;
}
th:nth-of-type(8) {
color: #333;
border-top: .25em solid #333;
}
td:nth-of-type(2) {
color: green;
background: rgb(250, 255, 250);
}
td:nth-of-type(3) {
color: orange;
background: rgb(255, 255, 250);
}
td:nth-of-type(4) {
color: red;
background: rgb(255, 250, 250);
}
td:nth-of-type(5),
td:nth-of-type(6),
td:nth-of-type(7) {
color: blue;
background: rgb(250,250,255);
}
td:nth-of-type(6),
td:nth-of-type(7) {
color: lightblue;
}
td:nth-of-type(8) {
color: #666;
background: rgb(250,250,250);
}
td {
border-right: 1px solid rgba(0,0,0,.05);
}
td:first-child, td:last-child {
border-right: none;
}
td {
width: 4em;
padding: .5em 1em;
text-align: center;
border-bottom: 1px solid rgba(0,0,0,.05);
}
td:first-child {
width: auto;
text-align: left;
}
input {
display: block;
margin: 1em auto;
text-align: center;
}
p {
font-size: .5em;
text-align: center;
}