mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-30 12:24:19 +01:00
75 lines
1.0 KiB
SCSS
75 lines
1.0 KiB
SCSS
//
|
|
// Bootstrap docs content theming
|
|
//
|
|
|
|
.bd-content {
|
|
// Offset for the sticky header
|
|
> [id] {
|
|
@include media-breakpoint-up(md) {
|
|
scroll-margin-top: 4rem;
|
|
}
|
|
}
|
|
|
|
> h2:not(:first-child) {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
> h3 {
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
> ul li,
|
|
> ol li {
|
|
margin-bottom: .25rem;
|
|
}
|
|
|
|
// Override Bootstrap defaults
|
|
> .table {
|
|
max-width: 100%;
|
|
margin-bottom: 1.5rem;
|
|
@include font-size(.875rem);
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
display: block;
|
|
overflow-x: auto;
|
|
|
|
&.table-bordered {
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
th,
|
|
td {
|
|
&:first-child {
|
|
padding-left: 0;
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
padding-right: 1.5rem;
|
|
}
|
|
}
|
|
|
|
// Prevent breaking of code
|
|
td:first-child > code {
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|
|
|
|
.bd-title {
|
|
@include font-size(3rem);
|
|
}
|
|
|
|
.bd-lead {
|
|
@include font-size(1.5rem);
|
|
font-weight: 300;
|
|
}
|
|
|
|
.bd-text-purple-bright {
|
|
color: $bd-purple-bright;
|
|
}
|
|
|
|
.bd-bg-purple-bright {
|
|
background-color: $bd-purple-bright;
|
|
}
|