~jan0sch/smederee
~jan0sch/smederee/modules/hub/src/main/resources/assets/purecss/3.0.0/tables.css
~jan0sch/smederee/modules/hub/src/main/resources/assets/purecss/3.0.0/tables.css
0 | /*! |
1 | Pure v3.0.0 |
2 | Copyright 2013 Yahoo! |
3 | Licensed under the BSD License. |
4 | https://github.com/pure-css/pure/blob/master/LICENSE |
5 | */ |
6 | .pure-table { |
7 | /* Remove spacing between table cells (from Normalize.css) */ |
8 | border-collapse: collapse; |
9 | border-spacing: 0; |
10 | empty-cells: show; |
11 | border: 1px solid #cbcbcb; |
12 | } |
13 |
|
14 | .pure-table caption { |
15 | color: #000; |
16 | font: italic 85%/1 arial, sans-serif; |
17 | padding: 1em 0; |
18 | text-align: center; |
19 | } |
20 |
|
21 | .pure-table td, |
22 | .pure-table th { |
23 | border-left: 1px solid #cbcbcb;/* inner column border */ |
24 | border-width: 0 0 0 1px; |
25 | font-size: inherit; |
26 | margin: 0; |
27 | overflow: visible; /*to make ths where the title is really long work*/ |
28 | padding: 0.5em 1em; /* cell padding */ |
29 | } |
30 |
|
31 | .pure-table thead { |
32 | background-color: #e0e0e0; |
33 | color: #000; |
34 | text-align: left; |
35 | vertical-align: bottom; |
36 | } |
37 |
|
38 | /* |
39 | striping: |
40 | even - #fff (white) |
41 | odd - #f2f2f2 (light gray) |
42 | */ |
43 | .pure-table td { |
44 | background-color: transparent; |
45 | } |
46 | .pure-table-odd td { |
47 | background-color: #f2f2f2; |
48 | } |
49 |
|
50 | /* nth-child selector for modern browsers */ |
51 | .pure-table-striped tr:nth-child(2n-1) td { |
52 | background-color: #f2f2f2; |
53 | } |
54 |
|
55 | /* BORDERED TABLES */ |
56 | .pure-table-bordered td { |
57 | border-bottom: 1px solid #cbcbcb; |
58 | } |
59 | .pure-table-bordered tbody > tr:last-child > td { |
60 | border-bottom-width: 0; |
61 | } |
62 |
|
63 |
|
64 | /* HORIZONTAL BORDERED TABLES */ |
65 |
|
66 | .pure-table-horizontal td, |
67 | .pure-table-horizontal th { |
68 | border-width: 0 0 1px 0; |
69 | border-bottom: 1px solid #cbcbcb; |
70 | } |
71 | .pure-table-horizontal tbody > tr:last-child > td { |
72 | border-bottom-width: 0; |
73 | } |