ducky/web
2015-07-07
Parent:99a43a6d1d30
ducky/web/src/styles/base/_tables.scss
Use our "production" config values. Use config values for our hosted test instance of the services. These aren't actually production values, but they're at least _live_ values.
1 table {
2 @include font-feature-settings("kern", "liga", "tnum");
3 border-collapse: collapse;
4 margin: $small-spacing 0;
5 table-layout: fixed;
6 width: 100%;
7 }
9 th {
10 border-bottom: 1px solid darken($base-border-color, 15%);
11 font-weight: 600;
12 padding: $small-spacing 0;
13 text-align: left;
14 }
16 td {
17 border-bottom: $base-border;
18 padding: $small-spacing 0;
19 }
21 tr,
22 td,
23 th {
24 vertical-align: middle;
25 }