style tables

This commit is contained in:
Frédéric Péters 2018-08-19 15:45:21 +02:00
parent ccfc708a3d
commit fde453cbfd
1 changed files with 6 additions and 6 deletions

View File

@ -489,21 +489,21 @@ div#content h2 {
table.main {
width: 100%;
background: white;
border: 1px solid #bcbcbc;
border: 1px solid #f3f3f3;
border-collapse: collapse;
}
table.main th {
font-weight: normal;
padding: 1em 1ex;
border-bottom: 1px solid #bcbcbc;
background: #f0f0f0;
border-bottom: 1px solid #f3f3f3;
background: #f7f7f7;
}
table.main td {
text-align: center;
padding: 1em 1ex;
border-bottom: 1px solid #bcbcbc;
border-bottom: 1px solid #f3f3f3;
@include vendor-prefix('transition', 'background ease 0.2s');
}
@ -512,11 +512,11 @@ table.main tr td.checkbox {
}
table.main tr:nth-child(even) td {
background: #f8f8f8;
background: #fdfdfd;
}
table.main tr:hover td {
background: #eee;
background: #dde;
cursor: pointer;
}