ensl.org/app/assets/stylesheets/components/_tables.scss
Luke Barratt 6f56bf81fd Removed fixed topbar
Improved layout
Improved form styling
Fixes issues with firefox
Added menu icons
2014-04-19 02:12:02 +01:00

40 lines
No EOL
681 B
SCSS

/*
Generic Tables
*/
table {
border-collapse: collapse;
margin: ($base-line-height / 2) 0;
table-layout: fixed;
width: 100%;
}
th {
border-bottom: 1px solid darken($base-border-color, 15%);
font-weight: bold;
padding: ($base-line-height / 2) 0;
text-align: left;
}
td {
border-bottom: 1px solid $base-border-color;
padding: ($base-line-height / 2) 0;
}
tr, td, th {
vertical-align: middle;
}
table.striped > tbody {
> tr > td:first-child {
padding-left: ($base-line-height / 2);
}
> tr > td:last-child {
padding-right: ($base-line-height / 2);
}
> tr:nth-child(2n) td {
background-color: transparentize($light-blue, 0.9);
}
}