fathom/assets/sass/_tables.scss

33 lines
402 B
SCSS
Raw Normal View History

2016-11-25 12:49:59 +00:00
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;
}
}