first commit after reset
[mixstore.git] / web / mixstore / css / store / table.css
CommitLineData
929ca066
BA
1table {
2 margin-left: auto;
3 margin-right: auto;
4 width: 100%;
5}
6
7@media screen and (min-width: 768px) {
8table {
9 width: 95%;
10}
11}
12
13table, th, td {
14 text-align: center;
15}
16
17table > thead > tr > th {
18 border: 1px solid #ccc;
19 background-color: #E6FFCC;
20 padding: 13px 5px 13px 5px;
21}
22
23table > tbody > tr > td {
24 border: 1px solid #ccc;
25}
26
27tr:nth-of-type(even) {
28 background: #eee;
29}
30
31tr:nth-of-type(odd) {
32 background: #fff;
33}
34
35td a {
36 color: #2C3E50;
37 text-decoration: none;
38 display: block;
39 padding: 13px 5px 13px 5px;
40}
41
42td a:hover {
43 text-decoration: none;
44 color: #2C3E50;
45}
46
47th[data-sort]{
48 cursor:pointer;
49 color: #480000;
50}