2015-04-16 23:57:49 +02:00
|
|
|
// Custom container
|
|
|
|
//
|
|
|
|
// Doesn't use the default `.container` styles for easier modifications.
|
|
|
|
|
2015-08-06 08:19:15 +02:00
|
|
|
.bd-content {
|
|
|
|
// position: relative;
|
|
|
|
// max-width: 62rem;
|
|
|
|
// padding: 0 1rem 1rem;
|
|
|
|
// margin-right: auto;
|
|
|
|
// margin-left: auto;
|
|
|
|
|
|
|
|
// @include media-breakpoint-up(md) {
|
|
|
|
// padding: 2rem;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// @include media-breakpoint-up(lg) {
|
|
|
|
// padding: 4rem;
|
|
|
|
//
|
|
|
|
// .carbonad {
|
|
|
|
// float: right !important;
|
|
|
|
// margin: .5rem 0 1rem 2rem !important;
|
|
|
|
// }
|
|
|
|
// }
|
2015-04-16 23:57:49 +02:00
|
|
|
|
|
|
|
> table {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow-y: auto;
|
|
|
|
margin-bottom: $spacer;
|
|
|
|
// border: 1px solid $table-border-color;
|
|
|
|
|
|
|
|
// Cells
|
|
|
|
> thead,
|
|
|
|
> tbody,
|
|
|
|
> tfoot {
|
|
|
|
> tr {
|
|
|
|
> th,
|
|
|
|
> td {
|
|
|
|
padding: $table-cell-padding;
|
2015-06-23 08:25:14 +02:00
|
|
|
line-height: $line-height;
|
2015-04-16 23:57:49 +02:00
|
|
|
vertical-align: top;
|
|
|
|
// border-top: 1px solid $table-border-color;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-06 02:47:45 +02:00
|
|
|
.bd-pageheader {
|
|
|
|
margin-bottom: 3rem;
|
|
|
|
padding-top: 2rem;
|
|
|
|
padding-bottom: 2rem;
|
|
|
|
color: $bd-purple-light;
|
|
|
|
background-color: $bd-purple;
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 4rem;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
padding-top: 4rem;
|
|
|
|
padding-bottom: 4rem;
|
|
|
|
|
|
|
|
.carbonad {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-16 23:57:49 +02:00
|
|
|
//
|
|
|
|
// 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;
|
|
|
|
}
|
2015-04-16 23:57:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.bd-title {
|
|
|
|
@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 {
|
2015-08-06 02:47:45 +02:00
|
|
|
font-size: 1.25rem;
|
2015-04-16 23:57:49 +02:00
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-29 10:59:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Markdown generated ToC
|
|
|
|
//
|
|
|
|
|
|
|
|
// Hide the first child li because it's always going to be "Contents".
|
|
|
|
#markdown-toc > li:first-child {
|
|
|
|
display: none;
|
|
|
|
}
|