1
1
mirror of https://github.com/primer/css.git synced 2024-12-21 05:01:45 +03:00
css/modules/primer-markdown/lib/tables.scss

34 lines
539 B
SCSS
Raw Normal View History

2017-05-11 07:56:23 +03:00
// Needs refactoring
2017-07-12 21:09:15 +03:00
// stylelint-disable selector-max-type
2017-05-11 07:56:23 +03:00
.markdown-body {
// Tables
table {
display: block;
width: 100%;
overflow: auto;
th {
font-weight: $font-weight-bold;
}
th,
td {
padding: 6px 13px;
border: 1px solid lighten($gray-300, 5%);
}
tr {
background-color: $bg-white;
border-top: 1px solid darken($gray-300, 4%);
&:nth-child(2n) {
background-color: $gray-100;
}
}
img {
background-color: transparent;
}
}
}