fathom/assets/sass/_tables.scss
Danny van Kooten 47fdb6db35 style tables
2016-11-25 13:49:59 +01:00

33 lines
402 B
SCSS

table {
width: 100%;
min-width: 100%;
border-collapse: collapse;
tbody > tr {
&:nth-of-type(odd) {
background-color: #FAFAFA;
}
&:hover {
background-color: #F6F6F6;
}
}
thead th {
border-top: 0;
border-bottom: 2px solid #ddd;
}
th {
color: #222;
}
th, td {
text-align: left;
border-top: 1px solid #ddd;
padding: 8px;
}
}