mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2025-02-15 19:20:36 +03:00
48 lines
698 B
Plaintext
48 lines
698 B
Plaintext
/*
|
|
* Page headers
|
|
*
|
|
* Jumbotron-esque headers at the top of every page that's not the homepage.
|
|
*/
|
|
|
|
/* Page headers */
|
|
.bs-docs-header {
|
|
margin-bottom: 40px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.bs-docs-header h1 {
|
|
margin-top: 0;
|
|
color: #fff;
|
|
}
|
|
|
|
.bs-docs-header p {
|
|
margin-bottom: 0;
|
|
font-weight: 300;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.bs-docs-header .container {
|
|
position: relative;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.bs-docs-header {
|
|
padding-top: 60px;
|
|
padding-bottom: 60px;
|
|
font-size: 24px;
|
|
text-align: left;
|
|
}
|
|
|
|
.bs-docs-header h1 {
|
|
font-size: 60px;
|
|
line-height: 1;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.bs-docs-header h1,
|
|
.bs-docs-header p {
|
|
margin-right: 380px;
|
|
}
|
|
}
|