_table.scss
1.12 KB
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
table {
width : 100%;
//border-top : 1px solid #ccc;
border-bottom : 1px solid #ccc;
margin-bottom: 15px;
thead tr, tbody tr:first-child {
border-bottom : 1px solid #ccc;
th, td {
font-family : "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
font-size : 14px;
font-weight : bold;
padding : 3px 5px;
}
th:first-child, td:first-child {
padding-left: 0;
}
th:last-child, td:last-child {
padding-right :0;
}
}
tbody {
tr {
margin-top: 2px;
border-bottom : 1px solid #dfdfdf;
td {
font-family : "HelveticaNeue", Helvetica, Arial, sans-serif;
font-size : 12px;
font-weight : normal;
padding : 3px 5px;
}
td:first-child {
padding-left: 0;
}
td:last-child {
padding-right :0;
}
}
tr:last-child {
border-bottom : 0;
}
}
}