mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
525 B
23 lines
525 B
7 years ago
|
._bash {
|
||
|
// The page title is always the first element on the page, but not always the same type of element
|
||
|
// The exception is the homepage, where the links element comes first
|
||
|
> *:first-child:not(._links) {
|
||
|
@extend h1;
|
||
|
@extend %lined-heading;
|
||
|
}
|
||
|
|
||
|
dl > dt > code,
|
||
|
dl > dt > kbd {
|
||
|
@extend %note, %note-blue;
|
||
|
display: block;
|
||
|
padding: 1px 7px 2px 7px;
|
||
|
margin: 28px 0 14px 0;
|
||
|
font-weight: bold;
|
||
|
font-family: $baseFont;
|
||
|
}
|
||
|
|
||
|
th[align=left] {
|
||
|
border-left: 1px solid #d8d8d8;
|
||
|
}
|
||
|
}
|