58 lines
653 B
SCSS
58 lines
653 B
SCSS
@import "000_vars.css.scss";
|
|
|
|
table.striped {
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
td, th {
|
|
padding: 4px 6px;
|
|
}
|
|
|
|
tbody {
|
|
tr {
|
|
border-bottom: 1px solid #CCC;
|
|
|
|
&:hover {
|
|
background-color: $highlight_color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.number {
|
|
text-align: right;
|
|
}
|
|
|
|
thead {
|
|
tr {
|
|
border-bottom: 2px solid #666;
|
|
}
|
|
|
|
th {
|
|
font-weight: bold;
|
|
text-align: left;
|
|
color: #333;
|
|
}
|
|
}
|
|
|
|
tr.even {
|
|
background-color: #FAFAFA;
|
|
}
|
|
}
|
|
|
|
table.search {
|
|
tr {
|
|
height: 2em;
|
|
}
|
|
|
|
th {
|
|
text-align: right;
|
|
padding-right: 1em;
|
|
vertical-align: top;
|
|
}
|
|
|
|
td {
|
|
vertical-align: top;
|
|
}
|
|
}
|