This repository was archived by the owner on Sep 5, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +36
-41
lines changed Expand file tree Collapse file tree 2 files changed +36
-41
lines changed Original file line number Diff line number Diff line change 1
1
2
- /*
3
- tables
4
- */
2
+ /* table
3
+ ========================================================================== */
5
4
table {
6
5
border-collapse : collapse;
7
6
}
8
7
9
8
table td ,
10
9
table th {
11
10
font-weight : 600 ;
12
- padding : 4px 7px ;
11
+ padding : 4px 7px ;
13
12
}
14
13
15
14
table td {
@@ -21,81 +20,77 @@ table td:first-child {
21
20
padding-left : 8px ;
22
21
}
23
22
24
- /*
25
- default
26
- */
23
+ /* default
24
+ ========================================================================== */
27
25
table tr .default th {
28
- border : none ;
26
+ border : 0 ;
29
27
}
30
28
31
29
table tr .default td {
32
- border : none ;
30
+ border : 0 ;
33
31
}
34
32
35
33
table tr .default : nth-child (even) {
36
- background-color : # f2f2f2 ;
34
+ background : # f2f2f2 ;
37
35
}
38
36
39
37
table tr .default : nth-child (odd) {
40
- background-color : white ;
38
+ background : # fff ;
41
39
}
42
40
43
- /*
44
- primary
45
- */
41
+ /* primary
42
+ ========================================================================== */
46
43
table tr .primary th {
47
- border : none ;
44
+ border : 0 ;
48
45
}
49
46
50
47
table tr .primary td {
51
- border : none ;
52
- color : # 27667b ;
48
+ border : 0 ;
49
+ color : # 27667b ;
53
50
}
54
51
55
52
table tr .primary : nth-child (even) td {
56
- background-color : # c1edfb ;
53
+ background : # c1edfb ;
57
54
}
58
55
59
56
table tr .primary : nth-child (odd) td {
60
- background-color : white ;
57
+ background : # fff ;
61
58
}
62
59
63
- /*
64
- success
65
- */
60
+ /* success
61
+ ========================================================================== */
66
62
table tr .success th {
67
63
border : none;
68
64
}
69
65
70
66
table tr .success td {
71
- border : none ;
72
- color : # 277b35 ;
67
+ border : 0 ;
68
+ color : # 277b35 ;
73
69
}
74
70
75
71
table tr .success : nth-child (even) td {
76
- background-color : # bdf3c4 ;
72
+ background : # bdf3c4 ;
77
73
}
78
74
79
75
table tr .success : nth-child (odd) td {
80
- background-color : white ;
76
+ background : # fff ;
81
77
}
82
78
83
- /*
84
- warning
85
- */
79
+ /* warning
80
+ ========================================================================== */
86
81
table tr .warning th {
87
- border : none ;
82
+ border : 0 ;
88
83
}
89
84
90
85
table tr .warning td {
91
- border : none ;
92
- color : # 7b2727 ;
86
+ border : 0 ;
87
+ color : # 7b2727 ;
93
88
}
94
89
95
90
table tr .warning : nth-child (even) td {
96
- background-color : # f5b9b9 ;
91
+ background : # f5b9b9 ;
97
92
}
98
93
99
94
table tr .warning : nth-child (odd) td {
100
- background-color : white ;
95
+ background : # fff ;
101
96
}
Original file line number Diff line number Diff line change 14
14
< link rel ="stylesheet " href ="css/style.tables.css ">
15
15
< style >
16
16
body {
17
- background-color : # f4f4f4 ;
18
- font-family : 'Open Sans' , sans-serif;
17
+ background : # f4f4f4 ;
18
+ font-family : 'Open Sans' , sans-serif;
19
19
}
20
20
21
21
.container {
22
22
margin-bottom : 25px ;
23
- margin-top : 25px ;
24
- width : 765px ;
23
+ margin-top : 25px ;
24
+ width : 765px ;
25
25
}
26
26
27
27
.container .box {
28
- background-color : white ;
29
- border-radius : 3px ;
30
- padding : 15px ;
28
+ background : # fff ;
29
+ border-radius : 3px ;
30
+ padding : 15px ;
31
31
}
32
32
</ style >
33
33
</ head >
You can’t perform that action at this time.
0 commit comments