2013-02-12 12:16:32 -08:00
|
|
|
/*
|
|
|
|
* Bootstrap Documentation
|
|
|
|
* Special styles for presenting Bootstrap's documentation and code examples.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Key scaffolding
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
|
|
body {
|
|
|
|
position: relative; /* For scrollyspy */
|
2013-05-08 22:50:41 -07:00
|
|
|
padding-top: 50px; /* Account for fixed navbar */
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
|
|
|
|
2013-07-17 22:58:49 -07:00
|
|
|
/* Custom docs button */
|
|
|
|
.btn-bs {
|
2013-07-26 00:04:15 -07:00
|
|
|
color: #563d7c;
|
2013-07-17 22:58:49 -07:00
|
|
|
background-color: #fff;
|
|
|
|
border-color: #e5e5e5;
|
|
|
|
}
|
|
|
|
.btn-bs:hover,
|
2013-07-29 09:42:50 -07:00
|
|
|
.btn-bs:focus,
|
2013-07-17 22:58:49 -07:00
|
|
|
.btn-bs:active {
|
|
|
|
color: #fff;
|
2013-07-26 00:04:15 -07:00
|
|
|
background-color: #563d7c;
|
|
|
|
border-color: #563d7c;
|
2013-07-17 22:58:49 -07:00
|
|
|
}
|
|
|
|
|
2013-07-31 10:27:43 -07:00
|
|
|
/* Homepage button */
|
|
|
|
.btn-outline {
|
|
|
|
color: #fff;
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: #cdbfe3;
|
|
|
|
}
|
|
|
|
.btn-outline:hover,
|
|
|
|
.btn-outline:focus,
|
|
|
|
.btn-outline:active {
|
|
|
|
color: #563d7c;
|
|
|
|
background-color: #fff;
|
|
|
|
border-color: #fff;
|
|
|
|
}
|
|
|
|
|
2013-05-08 22:50:41 -07:00
|
|
|
|
|
|
|
/* Top nav and header
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
2013-05-08 21:56:08 -07:00
|
|
|
.bs-docs-nav {
|
2013-07-26 00:04:15 -07:00
|
|
|
background-color: #563d7c;
|
2013-08-13 14:12:11 -07:00
|
|
|
border-color: #463265;
|
2013-08-16 00:54:19 -07:00
|
|
|
box-shadow: 0 1px 0 rgba(255,255,255,.1);
|
2013-05-08 21:56:08 -07:00
|
|
|
}
|
2013-08-12 21:23:28 -07:00
|
|
|
.bs-docs-nav .navbar-collapse {
|
|
|
|
border-color: #463265;
|
2013-05-08 21:56:08 -07:00
|
|
|
}
|
2013-05-14 22:08:32 -07:00
|
|
|
.bs-docs-nav .navbar-brand {
|
|
|
|
color: #fff;
|
|
|
|
}
|
2013-05-08 22:24:07 -07:00
|
|
|
.bs-docs-nav .navbar-nav > li > a {
|
2013-07-26 00:04:15 -07:00
|
|
|
color: #cdbfe3;
|
2013-05-14 22:08:32 -07:00
|
|
|
}
|
|
|
|
.bs-docs-nav .navbar-nav > li > a:hover {
|
2013-05-08 22:24:07 -07:00
|
|
|
color: #fff;
|
|
|
|
}
|
2013-05-08 22:31:49 -07:00
|
|
|
.bs-docs-nav .navbar-nav > .active > a,
|
|
|
|
.bs-docs-nav .navbar-nav > .active > a:hover {
|
2013-05-14 22:08:32 -07:00
|
|
|
color: #fff;
|
2013-07-26 00:04:15 -07:00
|
|
|
background-color: #463265;
|
2013-05-08 22:24:07 -07:00
|
|
|
}
|
2013-05-08 22:31:49 -07:00
|
|
|
.bs-docs-nav .navbar-toggle {
|
2013-07-26 00:04:15 -07:00
|
|
|
border-color: #563d7c;
|
2013-05-08 22:24:07 -07:00
|
|
|
}
|
|
|
|
.bs-docs-nav .navbar-toggle:hover {
|
2013-07-26 00:04:15 -07:00
|
|
|
background-color: #463265;
|
|
|
|
border-color: #463265;
|
2013-05-08 21:56:08 -07:00
|
|
|
}
|
|
|
|
|
2013-07-17 22:58:49 -07:00
|
|
|
/* Old docs callout */
|
|
|
|
.bs-old-docs {
|
|
|
|
padding: 15px 20px;
|
|
|
|
color: #777;
|
2013-07-26 20:36:02 -07:00
|
|
|
background-color: #fafafa;
|
2013-08-16 00:54:19 -07:00
|
|
|
border-top: 1px solid #fff;
|
2013-07-17 22:58:49 -07:00
|
|
|
border-bottom: 1px solid #e5e5e5;
|
|
|
|
}
|
|
|
|
.bs-old-docs strong {
|
|
|
|
color: #555;
|
|
|
|
}
|
2013-07-26 01:43:43 -07:00
|
|
|
.bs-docs-home .bs-old-docs {
|
2013-07-31 10:27:43 -07:00
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
color: inherit;
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
.bs-docs-home .bs-old-docs a {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Homepage */
|
2013-08-16 00:54:19 -07:00
|
|
|
.bs-docs-home,
|
|
|
|
.bs-header {
|
2013-07-31 10:27:43 -07:00
|
|
|
color: #cdbfe3;
|
|
|
|
background-color: #563d7c;
|
2013-08-17 14:24:48 -07:00
|
|
|
background-image: url('data:image/png;base64,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
|
2013-07-31 17:05:06 -07:00
|
|
|
}
|
|
|
|
.bs-docs-home .navbar {
|
2013-08-16 00:54:19 -07:00
|
|
|
/*background-color: transparent;*/
|
2013-07-26 01:43:43 -07:00
|
|
|
}
|
2013-05-08 21:56:08 -07:00
|
|
|
|
2013-02-12 12:16:32 -08:00
|
|
|
|
2013-05-08 22:13:56 -07:00
|
|
|
/* Homepage masthead
|
2013-02-12 12:16:32 -08:00
|
|
|
-------------------------------------------------- */
|
|
|
|
|
2013-05-08 22:13:56 -07:00
|
|
|
.bs-masthead {
|
2013-02-12 12:16:32 -08:00
|
|
|
position: relative;
|
|
|
|
padding: 30px 15px;
|
2013-04-14 16:31:52 -07:00
|
|
|
text-align: center;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
2013-05-08 22:13:56 -07:00
|
|
|
.bs-masthead h1 {
|
2013-02-12 12:16:32 -08:00
|
|
|
font-size: 50px;
|
2013-04-14 12:49:35 -07:00
|
|
|
line-height: 1;
|
2013-07-31 10:27:43 -07:00
|
|
|
color: #fff;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Download button */
|
2013-07-31 10:27:43 -07:00
|
|
|
.bs-masthead .btn-outline {
|
2013-08-05 08:33:15 -07:00
|
|
|
margin-top: 20px;
|
2013-08-06 17:29:41 -07:00
|
|
|
margin-bottom: 20px;
|
2013-02-12 12:16:32 -08:00
|
|
|
padding: 18px 24px;
|
|
|
|
font-size: 21px;
|
|
|
|
}
|
|
|
|
|
2013-05-08 22:13:56 -07:00
|
|
|
/* Textual links */
|
2013-07-26 01:43:43 -07:00
|
|
|
.bs-social {
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
2013-05-08 22:13:56 -07:00
|
|
|
.bs-masthead-links {
|
2013-06-21 11:56:47 -07:00
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 20px;
|
2013-08-16 14:04:11 -07:00
|
|
|
padding: 0 15px;
|
2013-02-12 12:16:32 -08:00
|
|
|
list-style: none;
|
|
|
|
}
|
2013-05-08 22:13:56 -07:00
|
|
|
.bs-masthead-links li {
|
2013-02-12 12:16:32 -08:00
|
|
|
display: inline;
|
|
|
|
color: #999;
|
|
|
|
}
|
2013-05-08 22:13:56 -07:00
|
|
|
.bs-masthead-links li + li {
|
2013-04-14 12:49:35 -07:00
|
|
|
margin-left: 20px;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
2013-07-31 10:27:43 -07:00
|
|
|
.bs-masthead-links a {
|
|
|
|
color: #fff;
|
|
|
|
}
|
2013-02-12 12:16:32 -08:00
|
|
|
|
|
|
|
|
2013-07-17 22:58:49 -07:00
|
|
|
|
2013-05-23 02:30:58 +02:00
|
|
|
/* Customize and Download button
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
2013-05-22 23:34:28 -07:00
|
|
|
.bs-customizer .toggle {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.bs-customizer label {
|
|
|
|
margin-top: 10px;
|
2013-05-23 21:34:32 -07:00
|
|
|
font-weight: 500;
|
2013-07-26 11:17:48 -07:00
|
|
|
color: #444;
|
|
|
|
}
|
|
|
|
.bs-customizer h2 {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
padding-top: 30px;
|
2013-05-23 21:34:32 -07:00
|
|
|
}
|
|
|
|
.bs-customizer h4 {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
.bs-customizer input[type="text"] {
|
2013-08-15 12:55:43 -07:00
|
|
|
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
2013-05-23 21:34:32 -07:00
|
|
|
background-color: #fafafa;
|
2013-05-22 23:34:28 -07:00
|
|
|
}
|
2013-07-26 11:17:48 -07:00
|
|
|
.bs-customizer .help-block {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
2013-05-22 23:34:28 -07:00
|
|
|
|
2013-05-23 02:30:58 +02:00
|
|
|
.bs-customize-download {
|
2013-07-17 22:58:49 -07:00
|
|
|
text-align: center;
|
2013-05-23 02:30:58 +02:00
|
|
|
}
|
|
|
|
|
2013-08-15 20:25:43 -07:00
|
|
|
#less-section label {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2013-08-17 17:26:36 -07:00
|
|
|
/* Alerts */
|
|
|
|
.bs-customizer-alert {
|
|
|
|
position: fixed;
|
|
|
|
top: 51px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 1030;
|
|
|
|
padding: 15px 0;
|
|
|
|
color: #fff;
|
|
|
|
background-color: #d9534f;
|
|
|
|
box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
|
|
|
|
border-bottom: 1px solid #b94441;
|
|
|
|
}
|
|
|
|
.bs-customizer-alert .close {
|
|
|
|
margin-top: -2px;
|
|
|
|
color: #fff;
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
.bs-customizer-alert p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2013-05-23 02:30:58 +02:00
|
|
|
|
|
|
|
|
2013-05-08 22:13:56 -07:00
|
|
|
/* Docs pages and sections
|
2013-02-12 12:16:32 -08:00
|
|
|
-------------------------------------------------- */
|
|
|
|
|
2013-05-08 22:13:56 -07:00
|
|
|
/* Page headers */
|
2013-05-08 22:51:44 -07:00
|
|
|
.bs-header {
|
2013-08-17 14:21:58 -07:00
|
|
|
padding: 30px 15px 40px; /* side padding builds on .container 15px, so 30px */
|
2013-05-08 22:29:53 -07:00
|
|
|
font-size: 16px;
|
2013-05-08 22:31:49 -07:00
|
|
|
text-align: center;
|
2013-05-08 22:29:53 -07:00
|
|
|
}
|
2013-05-08 22:51:44 -07:00
|
|
|
.bs-header h1 {
|
2013-08-16 00:54:19 -07:00
|
|
|
color: #fff;
|
2013-05-08 22:29:53 -07:00
|
|
|
}
|
2013-05-08 22:51:44 -07:00
|
|
|
.bs-header p {
|
2013-05-08 22:29:53 -07:00
|
|
|
font-weight: 300;
|
|
|
|
line-height: 1.5;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
2013-07-17 23:22:28 -07:00
|
|
|
.bs-header .container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2013-07-26 19:32:05 -07:00
|
|
|
.bs-docs-section + .bs-docs-section {
|
2013-08-06 18:29:18 -07:00
|
|
|
padding-top: 80px;
|
2013-07-26 19:32:05 -07:00
|
|
|
}
|
|
|
|
|
2013-07-17 23:22:28 -07:00
|
|
|
/* Ads in page headers */
|
|
|
|
.carbonad {
|
|
|
|
width: auto !important;
|
|
|
|
margin: 50px -30px -40px !important;
|
|
|
|
padding: 20px !important;
|
|
|
|
overflow: hidden; /* clearfix */
|
|
|
|
height: auto !important;
|
|
|
|
font-size: 13px !important;
|
|
|
|
line-height: 16px !important;
|
|
|
|
text-align: left;
|
2013-08-16 00:54:19 -07:00
|
|
|
background: #463265 !important;
|
2013-07-17 23:22:28 -07:00
|
|
|
border: 0 !important;
|
2013-08-17 14:21:58 -07:00
|
|
|
box-shadow: inset 0 3px 5px rgba(0,0,0,.075);
|
2013-07-17 23:22:28 -07:00
|
|
|
}
|
|
|
|
.carbonad-img {
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
|
|
|
.carbonad-text,
|
|
|
|
.carbonad-tag {
|
|
|
|
float: none !important;
|
|
|
|
display: block !important;
|
|
|
|
width: auto !important;
|
|
|
|
height: auto !important;
|
|
|
|
margin-left: 145px !important;
|
|
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
|
|
|
|
}
|
|
|
|
.carbonad-text {
|
|
|
|
padding-top: 0 !important;
|
|
|
|
}
|
|
|
|
.carbonad-tag {
|
2013-08-16 00:54:19 -07:00
|
|
|
color: #cdbfe3 !important;
|
2013-07-17 23:22:28 -07:00
|
|
|
text-align: left !important;
|
|
|
|
}
|
2013-08-16 00:54:19 -07:00
|
|
|
.carbonad-text a,
|
|
|
|
.carbonad-tag a {
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
2013-07-17 23:22:28 -07:00
|
|
|
.carbonad #azcarbon > img {
|
|
|
|
display: none; /* hide what I assume are tracking images */
|
|
|
|
}
|
2013-05-08 22:13:56 -07:00
|
|
|
|
2013-02-12 12:16:32 -08:00
|
|
|
|
|
|
|
|
2013-05-08 22:42:42 -07:00
|
|
|
/* Docs sidebar
|
2013-02-12 12:16:32 -08:00
|
|
|
-------------------------------------------------- */
|
|
|
|
|
2013-05-08 22:42:42 -07:00
|
|
|
/* By default it's not affixed in mobile views, so undo that */
|
|
|
|
.bs-sidebar.affix {
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* First level of nav */
|
|
|
|
.bs-sidenav {
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 30px;
|
2013-07-26 18:52:05 -07:00
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
2013-05-08 21:56:08 -07:00
|
|
|
text-shadow: 0 1px 0 #fff;
|
2013-07-26 20:20:21 -07:00
|
|
|
background-color: #f7f5fa;
|
2013-05-08 21:56:08 -07:00
|
|
|
border-radius: 5px;
|
2013-03-28 00:21:21 -07:00
|
|
|
}
|
2013-05-08 22:42:42 -07:00
|
|
|
|
|
|
|
/* All levels of nav */
|
|
|
|
.bs-sidebar .nav > li > a {
|
2013-03-29 23:33:08 -07:00
|
|
|
display: block;
|
2013-07-26 19:58:46 -07:00
|
|
|
color: #716b7a;
|
2013-07-26 15:34:50 -07:00
|
|
|
padding: 5px 20px;
|
2013-03-28 01:08:14 -07:00
|
|
|
}
|
2013-05-08 22:42:42 -07:00
|
|
|
.bs-sidebar .nav > li > a:hover,
|
|
|
|
.bs-sidebar .nav > li > a:focus {
|
2013-03-29 23:33:08 -07:00
|
|
|
text-decoration: none;
|
2013-07-26 19:58:46 -07:00
|
|
|
background-color: #e5e3e9;
|
|
|
|
border-right: 1px solid #dbd8e0;
|
2013-03-28 00:21:21 -07:00
|
|
|
}
|
2013-05-08 22:42:42 -07:00
|
|
|
.bs-sidebar .nav > .active > a,
|
|
|
|
.bs-sidebar .nav > .active:hover > a,
|
|
|
|
.bs-sidebar .nav > .active:focus > a {
|
2013-07-26 15:34:50 -07:00
|
|
|
font-weight: bold;
|
2013-07-26 00:04:15 -07:00
|
|
|
color: #563d7c;
|
2013-03-28 03:06:00 -07:00
|
|
|
background-color: transparent;
|
2013-07-26 00:04:15 -07:00
|
|
|
border-right: 1px solid #563d7c;
|
2013-03-28 00:21:21 -07:00
|
|
|
}
|
|
|
|
|
2013-03-29 23:33:08 -07:00
|
|
|
/* Nav: second level (shown on .active) */
|
2013-05-08 22:42:42 -07:00
|
|
|
.bs-sidebar .nav .nav {
|
2013-07-29 12:28:54 -07:00
|
|
|
display: none; /* Hide by default, but at >768px, show it */
|
2013-07-26 15:34:50 -07:00
|
|
|
margin-bottom: 8px;
|
2013-03-29 23:33:08 -07:00
|
|
|
}
|
2013-05-08 22:42:42 -07:00
|
|
|
.bs-sidebar .nav .nav > li > a {
|
2013-07-26 15:34:50 -07:00
|
|
|
padding-top: 3px;
|
|
|
|
padding-bottom: 3px;
|
2013-05-10 10:29:54 -07:00
|
|
|
padding-left: 30px;
|
2013-03-29 23:33:08 -07:00
|
|
|
font-size: 90%;
|
|
|
|
}
|
|
|
|
|
2013-02-12 12:16:32 -08:00
|
|
|
|
2013-03-28 03:06:00 -07:00
|
|
|
|
2013-05-08 22:50:41 -07:00
|
|
|
/* Side notes for calling out things
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
2013-06-25 23:12:36 +02:00
|
|
|
/* Base styles (regardless of theme) */
|
2013-05-08 22:58:54 -07:00
|
|
|
.bs-callout {
|
2013-05-08 22:50:41 -07:00
|
|
|
margin: 20px 0;
|
|
|
|
padding: 15px 30px 15px 15px;
|
2013-07-19 17:17:52 -07:00
|
|
|
border-left: 5px solid #eee;
|
2013-05-08 22:50:41 -07:00
|
|
|
}
|
2013-05-08 22:58:54 -07:00
|
|
|
.bs-callout h4 {
|
2013-05-08 22:50:41 -07:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
2013-05-08 22:58:54 -07:00
|
|
|
.bs-callout p:last-child {
|
2013-05-08 22:50:41 -07:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2013-05-08 22:58:54 -07:00
|
|
|
.bs-callout code,
|
|
|
|
.bs-callout .highlight {
|
2013-05-08 22:50:41 -07:00
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
2013-06-25 23:12:36 +02:00
|
|
|
/* Themes for different contexts */
|
|
|
|
.bs-callout-danger {
|
|
|
|
background-color: #fcf2f2;
|
2013-07-19 17:17:52 -07:00
|
|
|
border-color: #dFb5b4;
|
2013-06-25 23:12:36 +02:00
|
|
|
}
|
|
|
|
.bs-callout-warning {
|
|
|
|
background-color: #fefbed;
|
2013-07-19 17:17:52 -07:00
|
|
|
border-color: #f1e7bc;
|
2013-06-25 23:12:36 +02:00
|
|
|
}
|
|
|
|
.bs-callout-info {
|
2013-06-26 15:59:33 +02:00
|
|
|
background-color: #f0f7fd;
|
2013-07-19 17:17:52 -07:00
|
|
|
border-color: #d0e3f0;
|
2013-06-25 23:12:36 +02:00
|
|
|
}
|
|
|
|
|
2013-05-08 22:50:41 -07:00
|
|
|
|
2013-08-15 18:55:20 -07:00
|
|
|
/* Examples grid
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
|
|
.bs-examples h4 {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
.bs-examples p {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-08 22:50:41 -07:00
|
|
|
|
2013-05-08 22:13:56 -07:00
|
|
|
/* Special grid styles
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
|
|
.show-grid {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
2013-06-03 21:58:58 -07:00
|
|
|
.show-grid [class^="col-"] {
|
2013-05-08 22:13:56 -07:00
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
background-color: #eee;
|
|
|
|
border: 1px solid #ddd;
|
2013-07-26 00:04:15 -07:00
|
|
|
background-color: rgba(86,61,124,.15);
|
|
|
|
border: 1px solid rgba(86,61,124,.2);
|
2013-05-08 22:13:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-02-12 12:16:32 -08:00
|
|
|
/* Bootstrap code examples
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
|
|
/* Base class */
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example {
|
2013-02-12 12:16:32 -08:00
|
|
|
position: relative;
|
2013-07-19 17:09:39 -07:00
|
|
|
padding: 45px 15px 15px;
|
2013-08-14 14:24:00 -07:00
|
|
|
margin: 0 -15px 15px;
|
2013-07-19 17:09:39 -07:00
|
|
|
background-color: #fafafa;
|
|
|
|
box-shadow: inset 0 3px 6px rgba(0,0,0,.05);
|
|
|
|
border-color: #e5e5e5 #eee #eee;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px 0;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
|
|
|
/* Echo out a label for the example */
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example:after {
|
2013-02-12 12:16:32 -08:00
|
|
|
content: "Example";
|
|
|
|
position: absolute;
|
2013-07-19 17:09:39 -07:00
|
|
|
top: 15px;
|
|
|
|
left: 15px;
|
2013-02-12 12:16:32 -08:00
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
2013-07-19 17:09:39 -07:00
|
|
|
color: #bbb;
|
|
|
|
text-transform: uppercase;
|
|
|
|
letter-spacing: 1px;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Tweak display of the examples */
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example + .highlight {
|
2013-08-14 14:24:00 -07:00
|
|
|
margin: -15px -15px 15px;
|
2013-08-12 21:23:28 -07:00
|
|
|
border-radius: 0;
|
|
|
|
border-width: 0 0 1px;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Tweak content of examples for optimum awesome */
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example > p:last-child,
|
|
|
|
.bs-example > ul:last-child,
|
|
|
|
.bs-example > ol:last-child,
|
|
|
|
.bs-example > blockquote:last-child,
|
2013-08-15 11:13:57 -07:00
|
|
|
.bs-example > .form-control:last-child,
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example > .table:last-child,
|
2013-08-16 12:43:54 -07:00
|
|
|
.bs-example > .navbar:last-child,
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example > .jumbotron:last-child,
|
|
|
|
.bs-example > .alert:last-child,
|
|
|
|
.bs-example > .panel:last-child,
|
|
|
|
.bs-example > .list-group:last-child,
|
2013-08-15 13:06:01 -07:00
|
|
|
.bs-example > .well:last-child,
|
|
|
|
.bs-example > .progress:last-child {
|
2013-02-12 12:16:32 -08:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2013-06-27 23:26:04 -07:00
|
|
|
.bs-example > p > .close {
|
2013-05-15 10:01:09 -07:00
|
|
|
float: none;
|
|
|
|
}
|
2013-02-12 12:16:32 -08:00
|
|
|
|
2013-02-24 01:29:19 -08:00
|
|
|
/* Typography */
|
2013-08-12 16:40:42 -07:00
|
|
|
.bs-example-type .table td:last-child {
|
2013-02-24 01:29:19 -08:00
|
|
|
color: #999;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2013-08-12 16:40:42 -07:00
|
|
|
.bs-example-type .table td {
|
2013-02-24 01:29:19 -08:00
|
|
|
padding: 15px 0;
|
|
|
|
border-color: #eee;
|
|
|
|
}
|
2013-08-12 16:40:42 -07:00
|
|
|
.bs-example-type .table tr:first-child td {
|
2013-02-24 01:29:19 -08:00
|
|
|
border-top: 0;
|
|
|
|
}
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example-type h1,
|
|
|
|
.bs-example-type h2,
|
|
|
|
.bs-example-type h3,
|
|
|
|
.bs-example-type h4,
|
|
|
|
.bs-example-type h5,
|
|
|
|
.bs-example-type h6 {
|
2013-02-24 01:29:19 -08:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2013-08-15 13:40:21 -07:00
|
|
|
/* Images */
|
|
|
|
.bs-example > .img-circle,
|
|
|
|
.bs-example > .img-rounded,
|
|
|
|
.bs-example > .img-thumbnail {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
2013-08-14 15:39:21 -07:00
|
|
|
/* Buttons */
|
2013-08-15 13:24:48 -07:00
|
|
|
.bs-example > .btn,
|
|
|
|
.bs-example > .btn-group {
|
2013-08-14 15:39:21 -07:00
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2013-08-15 13:24:48 -07:00
|
|
|
.bs-example > .btn-toolbar + .btn-toolbar {
|
|
|
|
margin-top: 10px;
|
2013-05-14 08:33:49 -04:00
|
|
|
}
|
2013-08-14 15:39:21 -07:00
|
|
|
|
2013-05-14 23:21:30 -07:00
|
|
|
/* Forms */
|
2013-07-18 19:53:32 -07:00
|
|
|
.bs-example-control-sizing select,
|
2013-05-14 23:21:30 -07:00
|
|
|
.bs-example-control-sizing input[type="text"] + input[type="text"] {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2013-06-15 11:37:59 -07:00
|
|
|
.bs-example-form .input-group {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2013-08-15 14:57:55 -07:00
|
|
|
.bs-example > textarea.form-control {
|
|
|
|
resize: vertical;
|
|
|
|
}
|
2013-05-14 23:21:30 -07:00
|
|
|
|
2013-03-30 16:07:50 -07:00
|
|
|
/* List groups */
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example > .list-group {
|
2013-03-30 16:07:50 -07:00
|
|
|
max-width: 400px;
|
|
|
|
}
|
2013-02-24 01:29:19 -08:00
|
|
|
|
2013-02-12 12:16:32 -08:00
|
|
|
/* Navbar examples */
|
2013-07-26 22:09:05 -07:00
|
|
|
.bs-example .navbar:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2013-02-12 12:16:32 -08:00
|
|
|
.bs-navbar-top-example,
|
|
|
|
.bs-navbar-bottom-example {
|
|
|
|
z-index: 1;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden; /* cut the drop shadows off */
|
|
|
|
}
|
2013-08-16 00:54:19 -07:00
|
|
|
.bs-navbar-top-example .navbar-header,
|
|
|
|
.bs-navbar-bottom-example .navbar-header {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2013-02-12 12:16:32 -08:00
|
|
|
.bs-navbar-top-example .navbar-fixed-top,
|
|
|
|
.bs-navbar-bottom-example .navbar-fixed-bottom {
|
2013-04-28 14:27:48 -07:00
|
|
|
position: relative;
|
2013-02-12 12:16:32 -08:00
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
.bs-navbar-top-example {
|
2013-08-15 13:48:47 -07:00
|
|
|
padding-bottom: 45px;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
|
|
|
.bs-navbar-top-example:after {
|
|
|
|
top: auto;
|
2013-07-26 22:09:05 -07:00
|
|
|
bottom: 15px;
|
2013-08-15 13:52:46 -07:00
|
|
|
}
|
2013-04-28 14:27:48 -07:00
|
|
|
.bs-navbar-top-example .navbar-fixed-top {
|
|
|
|
top: -1px;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
|
|
|
.bs-navbar-bottom-example {
|
2013-08-15 13:48:47 -07:00
|
|
|
padding-top: 45px;
|
|
|
|
}
|
2013-04-28 14:27:48 -07:00
|
|
|
.bs-navbar-bottom-example .navbar-fixed-bottom {
|
|
|
|
bottom: -1px;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
|
|
|
.bs-navbar-bottom-example .navbar {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2013-08-15 13:52:46 -07:00
|
|
|
@media (min-width: 768px) {
|
|
|
|
.bs-navbar-top-example {
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
}
|
|
|
|
.bs-navbar-bottom-example {
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-16 13:30:33 -07:00
|
|
|
/* Pagination */
|
|
|
|
.bs-example .pagination {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2013-02-12 12:16:32 -08:00
|
|
|
/* Example modals */
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example-modal {
|
2013-02-12 12:16:32 -08:00
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example-modal .modal {
|
2013-02-12 12:16:32 -08:00
|
|
|
position: relative;
|
|
|
|
top: auto;
|
|
|
|
right: auto;
|
|
|
|
left: auto;
|
|
|
|
bottom: auto;
|
|
|
|
z-index: 1;
|
|
|
|
display: block;
|
|
|
|
}
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example-modal .modal-dialog {
|
2013-02-12 12:16:32 -08:00
|
|
|
left: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
2013-02-17 13:35:14 -08:00
|
|
|
/* Example dropdowns */
|
2013-08-15 13:06:25 -07:00
|
|
|
.bs-example > .dropdown > .dropdown-menu {
|
2013-02-17 13:35:14 -08:00
|
|
|
position: static;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2013-02-12 12:16:32 -08:00
|
|
|
|
2013-02-17 20:18:29 -08:00
|
|
|
/* Example tabbable tabs */
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example-tabs .nav-tabs {
|
2013-02-17 20:18:29 -08:00
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2013-03-31 09:59:02 -04:00
|
|
|
/* Tooltips */
|
2013-05-08 22:57:42 -07:00
|
|
|
.bs-example-tooltips {
|
2013-03-31 09:59:02 -04:00
|
|
|
text-align: center;
|
|
|
|
}
|
2013-08-15 13:24:48 -07:00
|
|
|
.bs-example-tooltips > .btn {
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2013-03-31 09:59:02 -04:00
|
|
|
|
|
|
|
/* Popovers */
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example-popover {
|
2013-03-31 09:59:02 -04:00
|
|
|
padding-bottom: 24px;
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
}
|
2013-05-08 22:56:29 -07:00
|
|
|
.bs-example-popover .popover {
|
2013-03-31 09:59:02 -04:00
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 260px;
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
2013-02-12 12:16:32 -08:00
|
|
|
|
|
|
|
/* Responsive docs
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
2013-07-26 21:28:44 -07:00
|
|
|
/* Responsive (scrollable) doc tables */
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.bs-table-scrollable {
|
|
|
|
width: 100%;
|
2013-07-26 21:35:56 -07:00
|
|
|
margin-bottom: 15px;
|
2013-07-26 21:28:44 -07:00
|
|
|
overflow-y: hidden;
|
|
|
|
overflow-x: scroll;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
}
|
2013-07-26 21:35:56 -07:00
|
|
|
.bs-table-scrollable .table {
|
2013-07-26 21:28:44 -07:00
|
|
|
margin-bottom: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
2013-07-26 21:35:56 -07:00
|
|
|
.bs-table-scrollable .table th,
|
|
|
|
.bs-table-scrollable .table td {
|
2013-07-26 21:28:44 -07:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2013-07-26 21:35:56 -07:00
|
|
|
.bs-table-scrollable .table th:first-child,
|
|
|
|
.bs-table-scrollable .table td:first-child {
|
2013-07-26 21:28:44 -07:00
|
|
|
border-left: 0;
|
|
|
|
}
|
2013-07-26 21:35:56 -07:00
|
|
|
.bs-table-scrollable .table th:last-child,
|
|
|
|
.bs-table-scrollable .table td:last-child {
|
2013-07-26 21:28:44 -07:00
|
|
|
border-right: 0;
|
|
|
|
}
|
2013-07-26 21:35:56 -07:00
|
|
|
.bs-table-scrollable .table tr:last-child th,
|
|
|
|
.bs-table-scrollable .table tr:last-child td {
|
2013-07-26 21:28:44 -07:00
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2013-08-14 15:26:01 -07:00
|
|
|
.bs-table-scrollable .highlight pre {
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
2013-07-26 21:28:44 -07:00
|
|
|
|
2013-02-12 12:16:32 -08:00
|
|
|
/* Related: responsive utilities tables */
|
|
|
|
.table code {
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Utility classes table
|
|
|
|
------------------------- */
|
2013-06-08 18:34:16 -02:30
|
|
|
.bs-table th small,
|
2013-02-12 12:16:32 -08:00
|
|
|
.responsive-utilities th small {
|
|
|
|
display: block;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
.responsive-utilities tbody th {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
.responsive-utilities td {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.responsive-utilities td.is-visible {
|
|
|
|
color: #468847;
|
|
|
|
background-color: #dff0d8 !important;
|
|
|
|
}
|
|
|
|
.responsive-utilities td.is-hidden {
|
|
|
|
color: #ccc;
|
|
|
|
background-color: #f9f9f9 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Responsive tests
|
|
|
|
------------------------- */
|
|
|
|
.responsive-utilities-test {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
Media query (grid and responsive utilities) overhaul
Grid classes have been changed to account for a fourth set of classes,
meaning we now have XS, S, M, and L options. Specifically, we made the
following changes:
* Renames `.col-` to `.col-xs-`
* Adds `.col-md-` for devices 992px wide and up
* Remaps `.col-lg-` for devices 1200px wide and up
Alongside that, we've updated our media queries to better handle
advanced grid layouts:
* All column classes now kick in when they hit a `min-width`, undoing
the #9128 fix in
https://github.com/twbs/bootstrap/commit/db45a60cc86190a060f0baf0b3961cb
c690f3a65
* All column offsets, pushes, and pulls are scoped to an appropriate
range, meaning a `min-width` and `max-width` (thanks for the idea,
@eratzlaff)
We've also modified the widths of our grid containers for the small
device grid (now a max 720px instead of 728px) and large device grid
(now a max 1140px instead of 1170px) to avoid horizontal scrollbar
problems in Firefox (likely due to box-sizing, which is why we didn't
see it in 2.x).
Similarly, we've updated the responsive ultility classes to match the
new four media query approach of the grid system. That means we've:
* Added new `.visible-xs` and `.hidden-xs` classes
* Reassigns visible and hidden classes for small, medium, and large to
matching grid system media queries
* Updates docs examples to match grid system and account for fourth
utility range
-----
Fixes the following:
* #9135: fourth grid tier
* #9302: undoes previous range change for small grid system, so no need
to update any docs here
* #8755: consistent grid and responsive utilities schemas)
* #9195, #9216, and #9227: no more horizontal scrollbars
2013-08-12 00:28:50 -07:00
|
|
|
.responsive-utilities-test .col-xs-6 {
|
|
|
|
margin-bottom: 10px;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
|
|
|
.responsive-utilities-test span {
|
2013-05-16 19:13:58 -07:00
|
|
|
padding: 15px 10px;
|
2013-05-16 20:07:41 -07:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1.1;
|
|
|
|
text-align: center;
|
2013-05-16 19:13:58 -07:00
|
|
|
border-radius: 4px;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
2013-08-14 23:52:57 -07:00
|
|
|
.visible-on .col-xs-6 .hidden-xs,
|
|
|
|
.visible-on .col-xs-6 .hidden-sm,
|
|
|
|
.visible-on .col-xs-6 .hidden-md,
|
|
|
|
.visible-on .col-xs-6 .hidden-lg,
|
|
|
|
.hidden-on .col-xs-6 .visible-xs,
|
|
|
|
.hidden-on .col-xs-6 .visible-sm,
|
|
|
|
.hidden-on .col-xs-6 .visible-md,
|
|
|
|
.hidden-on .col-xs-6 .visible-lg {
|
2013-05-16 20:07:41 -07:00
|
|
|
color: #999;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
}
|
2013-08-14 23:52:57 -07:00
|
|
|
.visible-on .col-xs-6 .visible-xs,
|
|
|
|
.visible-on .col-xs-6 .visible-sm,
|
|
|
|
.visible-on .col-xs-6 .visible-md,
|
|
|
|
.visible-on .col-xs-6 .visible-lg,
|
|
|
|
.hidden-on .col-xs-6 .hidden-xs,
|
|
|
|
.hidden-on .col-xs-6 .hidden-sm,
|
|
|
|
.hidden-on .col-xs-6 .hidden-md,
|
|
|
|
.hidden-on .col-xs-6 .hidden-lg {
|
2013-02-12 12:16:32 -08:00
|
|
|
color: #468847;
|
|
|
|
background-color: #dff0d8;
|
|
|
|
border: 1px solid #d6e9c6;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Footer
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
2013-05-08 22:55:17 -07:00
|
|
|
.bs-footer {
|
2013-05-09 17:36:02 -07:00
|
|
|
padding-top: 40px;
|
2013-03-26 23:54:17 -07:00
|
|
|
padding-bottom: 30px;
|
2013-02-12 12:16:32 -08:00
|
|
|
margin-top: 100px;
|
|
|
|
border-top: 1px solid #e5e5e5;
|
|
|
|
}
|
2013-05-08 22:55:17 -07:00
|
|
|
.bs-footer p {
|
2013-02-12 12:16:32 -08:00
|
|
|
margin-bottom: 0;
|
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
.footer-links {
|
|
|
|
margin: 10px 0;
|
2013-07-01 19:42:26 -07:00
|
|
|
padding-left: 0;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
|
|
|
.footer-links li {
|
|
|
|
display: inline;
|
|
|
|
padding: 0 2px;
|
|
|
|
}
|
|
|
|
.footer-links li:first-child {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Social proof buttons from GitHub & Twitter */
|
2013-05-08 22:54:25 -07:00
|
|
|
.bs-social {
|
2013-02-12 12:16:32 -08:00
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2013-05-08 22:54:25 -07:00
|
|
|
.bs-social-buttons {
|
2013-02-12 12:16:32 -08:00
|
|
|
display: inline-block;
|
2013-07-01 19:42:26 -07:00
|
|
|
margin-bottom: 0;
|
|
|
|
padding-left: 0;
|
2013-02-12 12:16:32 -08:00
|
|
|
list-style: none;
|
|
|
|
}
|
2013-05-08 22:54:25 -07:00
|
|
|
.bs-social-buttons li {
|
2013-02-12 12:16:32 -08:00
|
|
|
display: inline-block;
|
|
|
|
line-height: 1;
|
2013-08-16 14:04:11 -07:00
|
|
|
padding: 5px 8px;
|
2013-04-14 12:49:35 -07:00
|
|
|
}
|
2013-05-08 22:54:25 -07:00
|
|
|
.bs-social-buttons .twitter-follow-button {
|
2013-02-12 12:16:32 -08:00
|
|
|
width: 225px !important;
|
|
|
|
}
|
2013-05-08 22:54:25 -07:00
|
|
|
.bs-social-buttons .twitter-share-button {
|
2013-02-12 12:16:32 -08:00
|
|
|
width: 98px !important;
|
|
|
|
}
|
2013-08-12 15:23:37 -07:00
|
|
|
/* Style the GitHub buttons via CSS instead of inline attributes */
|
|
|
|
.github-btn {
|
|
|
|
border: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2013-02-12 12:16:32 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Misc docs stuff
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
|
|
/* Pseudo :focus state for showing how it looks in the docs */
|
2013-08-13 11:15:36 -07:00
|
|
|
#focusedInput {
|
2013-02-12 12:16:32 -08:00
|
|
|
border-color: rgba(82,168,236,.8);
|
|
|
|
outline: 0;
|
|
|
|
outline: thin dotted \9; /* IE6-9 */
|
|
|
|
-moz-box-shadow: 0 0 8px rgba(82,168,236,.6);
|
|
|
|
box-shadow: 0 0 8px rgba(82,168,236,.6);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Scrollspy demo on fixed height div */
|
|
|
|
.scrollspy-example {
|
|
|
|
position: relative;
|
|
|
|
height: 200px;
|
|
|
|
margin-top: 10px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2013-02-13 23:37:08 -08:00
|
|
|
.highlight {
|
2013-02-14 00:23:23 -08:00
|
|
|
padding: 9px 14px;
|
2013-02-13 23:37:08 -08:00
|
|
|
margin-bottom: 14px;
|
2013-02-14 00:23:23 -08:00
|
|
|
background-color: #f7f7f9;
|
|
|
|
border: 1px solid #e1e1e8;
|
|
|
|
border-radius: 4px;
|
2013-02-13 23:37:08 -08:00
|
|
|
}
|
|
|
|
.highlight pre {
|
|
|
|
padding: 0;
|
2013-05-09 17:20:46 -07:00
|
|
|
margin-top: 0;
|
2013-02-13 23:37:08 -08:00
|
|
|
margin-bottom: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
2013-04-13 22:10:34 -07:00
|
|
|
white-space: nowrap;
|
2013-02-13 23:37:08 -08:00
|
|
|
}
|
|
|
|
.highlight pre code {
|
2013-02-14 00:23:23 -08:00
|
|
|
font-size: inherit;
|
|
|
|
color: #333; /* Effectively the base text color */
|
|
|
|
}
|
|
|
|
.highlight pre .lineno {
|
|
|
|
display: inline-block;
|
2013-03-14 22:34:20 -07:00
|
|
|
width: 22px;
|
2013-02-14 00:23:23 -08:00
|
|
|
padding-right: 5px;
|
|
|
|
margin-right: 10px;
|
|
|
|
text-align: right;
|
|
|
|
color: #bebec5;
|
2013-02-13 23:37:08 -08:00
|
|
|
}
|
|
|
|
|
2013-05-08 22:50:41 -07:00
|
|
|
/* Better spacing on download options in getting started */
|
|
|
|
.bs-docs-dl-options h4 {
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 5px;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
|
|
|
|
2013-05-08 22:50:41 -07:00
|
|
|
|
2013-02-12 12:16:32 -08:00
|
|
|
/* Responsive variations
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
2013-03-01 00:18:10 -08:00
|
|
|
/* Hide code snippets on mobile devices */
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
.highlight {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-12 12:16:32 -08:00
|
|
|
/* Tablets and up */
|
|
|
|
@media screen and (min-width: 768px) {
|
|
|
|
|
2013-05-08 22:51:44 -07:00
|
|
|
.bs-header {
|
2013-05-08 22:29:53 -07:00
|
|
|
font-size: 21px;
|
2013-05-08 22:31:49 -07:00
|
|
|
text-align: left;
|
2013-05-08 22:29:53 -07:00
|
|
|
}
|
2013-05-08 22:51:44 -07:00
|
|
|
.bs-header h1 {
|
2013-05-08 22:29:53 -07:00
|
|
|
font-size: 60px;
|
2013-04-09 10:20:50 -07:00
|
|
|
line-height: 1;
|
|
|
|
}
|
|
|
|
|
2013-07-19 17:09:39 -07:00
|
|
|
.bs-example {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
background-color: #fff;
|
|
|
|
border-width: 1px;
|
|
|
|
border-color: #ddd;
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2013-08-12 21:23:28 -07:00
|
|
|
.bs-example + .prettyprint,
|
|
|
|
.bs-example + .highlight {
|
2013-08-15 13:00:06 -07:00
|
|
|
margin-top: -16px;
|
2013-08-12 21:23:28 -07:00
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
border-width: 1px;
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
}
|
2013-07-19 17:09:39 -07:00
|
|
|
|
2013-08-16 14:04:11 -07:00
|
|
|
.bs-masthead-links {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2013-07-17 23:22:28 -07:00
|
|
|
.carbonad {
|
|
|
|
margin: 0 !important;
|
|
|
|
border-radius: 4px;
|
2013-08-17 14:21:58 -07:00
|
|
|
box-shadow: inset 0 3px 5px rgba(0,0,0,.075), 0 1px 0 rgba(255,255,255,.1);
|
2013-07-17 23:22:28 -07:00
|
|
|
}
|
|
|
|
|
2013-03-28 01:08:14 -07:00
|
|
|
/* Show the docs nav */
|
2013-05-08 22:42:42 -07:00
|
|
|
.bs-sidebar {
|
2013-03-28 01:08:14 -07:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2013-02-12 12:16:32 -08:00
|
|
|
/* Tweak display of docs jumbotrons */
|
2013-05-08 22:13:56 -07:00
|
|
|
.bs-masthead {
|
2013-08-16 00:54:19 -07:00
|
|
|
text-align: left;
|
2013-07-31 10:27:43 -07:00
|
|
|
padding-top: 140px;
|
|
|
|
padding-bottom: 140px;
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
2013-05-08 22:13:56 -07:00
|
|
|
.bs-masthead h1 {
|
2013-02-12 12:16:32 -08:00
|
|
|
font-size: 100px;
|
|
|
|
}
|
2013-08-05 08:33:15 -07:00
|
|
|
.bs-masthead .lead {
|
2013-08-16 00:54:19 -07:00
|
|
|
margin-right: 25%;
|
2013-02-12 12:16:32 -08:00
|
|
|
font-size: 30px;
|
|
|
|
}
|
|
|
|
|
2013-04-28 14:27:48 -07:00
|
|
|
.bs-navbar-top-example .navbar-fixed-top,
|
|
|
|
.bs-navbar-bottom-example .navbar-fixed-bottom {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Tablets/desktops and up */
|
|
|
|
@media screen and (min-width: 992px) {
|
2013-08-13 14:56:22 -07:00
|
|
|
.bs-header h1,
|
|
|
|
.bs-header p {
|
|
|
|
margin-right: 380px;
|
|
|
|
}
|
|
|
|
.carbonad {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: 0;
|
|
|
|
padding: 15px !important;
|
|
|
|
width: 330px !important;
|
|
|
|
min-height: 132px;
|
|
|
|
}
|
2013-03-03 23:41:16 -08:00
|
|
|
|
2013-08-13 14:56:22 -07:00
|
|
|
/* Show the hidden subnavs when space allows it */
|
|
|
|
.bs-sidebar .nav > .active > ul {
|
|
|
|
display: block;
|
|
|
|
}
|
2013-05-08 22:42:42 -07:00
|
|
|
/* Widen the fixed sidebar */
|
2013-07-25 23:30:13 -07:00
|
|
|
.bs-sidebar.affix,
|
|
|
|
.bs-sidebar.affix-bottom {
|
|
|
|
width: 213px;
|
|
|
|
}
|
2013-05-08 22:42:42 -07:00
|
|
|
.bs-sidebar.affix {
|
2013-06-23 23:15:32 +02:00
|
|
|
position: fixed; /* Undo the static from mobile-first approach */
|
2013-07-25 23:30:13 -07:00
|
|
|
top: 80px;
|
|
|
|
}
|
|
|
|
.bs-sidebar.affix-bottom {
|
|
|
|
position: absolute; /* Undo the static from mobile-first approach */
|
|
|
|
}
|
|
|
|
.bs-sidebar.affix-bottom .bs-sidenav,
|
|
|
|
.bs-sidebar.affix .bs-sidenav {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
2013-05-08 22:42:42 -07:00
|
|
|
}
|
2013-02-12 12:16:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Large desktops and up */
|
|
|
|
@media screen and (min-width: 1200px) {
|
2013-03-28 01:08:14 -07:00
|
|
|
|
2013-05-08 22:42:42 -07:00
|
|
|
/* Widen the fixed sidebar again */
|
2013-07-25 23:30:13 -07:00
|
|
|
.bs-sidebar.affix-bottom,
|
2013-05-08 22:42:42 -07:00
|
|
|
.bs-sidebar.affix {
|
2013-08-12 00:40:36 -07:00
|
|
|
width: 263px;
|
2013-05-08 22:42:42 -07:00
|
|
|
}
|
|
|
|
|
2013-03-28 01:08:14 -07:00
|
|
|
}
|