mdb-ui-kit/less/_table.less

18 lines
328 B
Plaintext
Raw Normal View History

2016-09-27 14:50:15 +03:00
// specification: https://www.google.com/design/spec/components/data-tables.html
table {
width: 100%;
font-size: 12px;
thead th {
color: rgba(0, 0, 0, 0.46);
font-weight: 400;
}
td, th {
padding: 10px 15px;
border-bottom: 1px solid #E0E0E0;
}
tbody tr:hover {
background-color: #EEEEEE;
}
}