1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/site/docs/4.3/assets/scss/_content.scss

125 lines
1.9 KiB
SCSS
Raw Normal View History

// stylelint-disable no-duplicate-selectors, selector-max-combinators, selector-max-compound-selectors, selector-max-type, selector-no-qualifying-type
//
// Automatically style Markdown-based tables like a Bootstrap `.table`.
//
2015-08-06 02:19:15 -04:00
.bd-content {
order: 1;
// Hack the sticky header
2017-06-15 00:25:27 -04:00
> h2[id],
> h3[id],
> h4[id] {
pointer-events: none;
&::before {
display: block;
height: 6rem;
margin-top: -6rem;
content: "";
}
}
> table {
width: 100%;
max-width: 100%;
margin-bottom: 1rem;
2017-03-19 20:37:38 -04:00
@include media-breakpoint-down(md) {
display: block;
overflow-x: auto;
2017-12-27 16:40:51 -05:00
&.table-bordered {
border: 0;
}
2017-03-19 20:37:38 -04:00
}
// Cells
> thead,
> tbody,
> tfoot {
> tr {
> th,
> td {
padding: $table-cell-padding;
vertical-align: top;
border: 1px solid $table-border-color;
2015-08-06 02:19:15 -04:00
> p:last-child {
margin-bottom: 0;
}
}
}
}
// Prevent breaking of code (e.g., Grunt tasks list)
td:first-child > code {
white-space: nowrap;
}
}
}
.bd-content-title {
display: block;
pointer-events: auto;
}
//
// Docs sections
//
.bd-content {
> h2 {
@include font-size($h2-font-size);
}
> h3 {
@include font-size($h3-font-size);
}
> h4 {
@include font-size($h4-font-size);
}
> h2:not(:first-child) {
margin-top: 3rem;
}
> h3 {
margin-top: 1.5rem;
}
> ul li,
> ol li {
margin-bottom: .25rem;
}
2017-05-27 21:47:45 -04:00
@include media-breakpoint-up(lg) {
> ul,
> ol,
> p {
max-width: 80%;
}
}
}
.bd-title {
2016-09-06 01:41:10 -04:00
margin-top: 1rem;
2017-05-27 20:37:34 -04:00
margin-bottom: .5rem;
font-weight: 300;
@include font-size(3rem);
2017-05-27 20:37:34 -04:00
}
2017-05-27 20:37:34 -04:00
.bd-lead {
@include font-size(1.125rem);
2017-05-28 21:00:38 -04:00
font-weight: 300;
@include media-breakpoint-up(lg) {
2017-05-27 20:37:34 -04:00
max-width: 80%;
}
}
.bd-text-purple { color: $bd-purple; }
.bd-text-purple-bright { color: $bd-purple-bright; }