2016-02-06 21:28:18 +01:00
|
|
|
// scss-lint:disable IdSelector, NestingDepth, SelectorDepth
|
2016-01-04 03:17:58 +01:00
|
|
|
|
2015-08-18 06:31:17 +02:00
|
|
|
//
|
|
|
|
// Automatically style Markdown-based tables like a Bootstrap `.table`.
|
|
|
|
//
|
|
|
|
|
2015-08-06 08:19:15 +02:00
|
|
|
.bd-content {
|
2015-04-16 23:57:49 +02:00
|
|
|
> table {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
2017-03-05 21:20:44 +01:00
|
|
|
margin-bottom: 1rem;
|
2017-03-20 01:37:38 +01:00
|
|
|
|
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
display: block;
|
|
|
|
overflow-x: auto;
|
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057
|
|
|
|
}
|
2015-04-16 23:57:49 +02:00
|
|
|
|
|
|
|
// Cells
|
|
|
|
> thead,
|
|
|
|
> tbody,
|
|
|
|
> tfoot {
|
|
|
|
> tr {
|
|
|
|
> th,
|
|
|
|
> td {
|
|
|
|
padding: $table-cell-padding;
|
|
|
|
vertical-align: top;
|
|
|
|
border: 1px solid $table-border-color;
|
2015-08-06 08:19:15 +02:00
|
|
|
|
|
|
|
> p:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2015-04-16 23:57:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prevent breaking of code (e.g., Grunt tasks list)
|
|
|
|
td:first-child > code {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Docs sections
|
|
|
|
//
|
|
|
|
|
|
|
|
.bd-content {
|
2015-08-06 02:47:45 +02:00
|
|
|
> h2:not(:first-child) {
|
2015-04-16 23:57:49 +02:00
|
|
|
margin-top: 3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
> h3 {
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
}
|
2015-04-17 01:56:40 +02:00
|
|
|
|
|
|
|
> ul li,
|
|
|
|
> ol li {
|
|
|
|
margin-bottom: .25rem;
|
|
|
|
}
|
2016-09-05 07:04:58 +02:00
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
> ul,
|
|
|
|
> ol,
|
|
|
|
> p {
|
|
|
|
max-width: 80%;
|
|
|
|
}
|
|
|
|
}
|
2015-04-16 23:57:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.bd-title {
|
2016-09-06 07:41:10 +02:00
|
|
|
margin-top: 1rem;
|
|
|
|
margin-bottom: 1rem;
|
2016-09-05 07:04:58 +02:00
|
|
|
font-weight: 300;
|
|
|
|
|
2015-04-16 23:57:49 +02:00
|
|
|
@include media-breakpoint-up(sm) {
|
2015-08-06 02:47:45 +02:00
|
|
|
font-size: 3rem;
|
2015-04-16 23:57:49 +02:00
|
|
|
|
|
|
|
+ p {
|
2016-09-05 07:04:58 +02:00
|
|
|
max-width: 80%;
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
font-size: 1.5rem;
|
2015-04-16 23:57:49 +02:00
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-29 10:59:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Markdown generated ToC
|
|
|
|
//
|
|
|
|
|
2015-08-11 01:46:21 +02:00
|
|
|
#markdown-toc {
|
|
|
|
// Hide the first child li because it's always going to be "Contents".
|
|
|
|
> li:first-child {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-08-11 00:55:50 +02:00
|
|
|
|
|
|
|
ul {
|
|
|
|
padding-left: 2rem;
|
2015-08-11 01:46:21 +02:00
|
|
|
margin-top: .25rem;
|
|
|
|
margin-bottom: .25rem;
|
2015-08-11 00:55:50 +02:00
|
|
|
}
|
2015-05-29 10:59:20 +02:00
|
|
|
}
|