| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- body {
- position: relative;
- padding-top: 50px;
- }
- .bs-docs-nav {
- text-shadow: 0 -1px 0 rgba(0,0,0,.15);
- background-color: #563d7c;
- border-color: #463265;
- box-shadow: 0 1px 0 rgba(255,255,255,.1);
- }
- .bs-header {
- font-size: 21px;
- text-align: left;
- padding: 30px 15px 40px;
- text-shadow: 0 1px 0 rgba(0,0,0,.15);
- color: #cdbfe3;
- background-color: #563d7c;
- }
- .bs-docs-nav .navbar-nav > .active > a,
- .bs-docs-nav .navbar-nav > .active > a:hover {
- color: #fff;
- background-color: #463265;
- }
- .bs-sidenav {
- margin-top: 30px;
- margin-bottom: 30px;
- padding-top: 10px;
- padding-bottom: 10px;
- text-shadow: 0 1px 0 #fff;
- background-color: #f7f5fa;
- border-radius: 5px;
- }
- h1[id] {
- padding-top: 80px;
- margin-top: -45px;
- }
- pre code {
- display: block;
- padding: 0 1em;
- }
- /*
- * Side navigation
- *
- * Scrollspy and affixed enhanced navigation to highlight sections and secondary
- * sections of docs content.
- */
- /* 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;
- padding-top: 10px;
- padding-bottom: 10px;
- text-shadow: 0 1px 0 #fff;
- background-color: #f7f5fa;
- border-radius: 5px;
- }
- /* All levels of nav */
- .bs-sidebar .nav > li > a {
- display: block;
- color: #716b7a;
- padding: 5px 20px;
- }
- .bs-sidebar .nav > li > a:hover,
- .bs-sidebar .nav > li > a:focus {
- text-decoration: none;
- background-color: #e5e3e9;
- border-right: 1px solid #dbd8e0;
- }
- .bs-sidebar .nav > .active > a,
- .bs-sidebar .nav > .active:hover > a,
- .bs-sidebar .nav > .active:focus > a {
- font-weight: bold;
- color: #563d7c;
- background-color: transparent;
- border-right: 1px solid #563d7c;
- }
- /* Nav: second level (shown on .active) */
- .bs-sidebar .nav .nav {
- display: none; /* Hide by default, but at >768px, show it */
- margin-bottom: 8px;
- }
- .bs-sidebar .nav .nav > li > a {
- padding-top: 3px;
- padding-bottom: 3px;
- padding-left: 30px;
- font-size: 90%;
- }
- .footer {
- border-top: 1px solid #ddd;
- padding: 40px 0;
- text-align: center;
- margin-top: 40px;
- color: #777;
- }
- /* Show and affix the side nav when space allows it */
- @media (min-width: 992px) {
- .bs-sidebar .nav > .active > ul {
- display: block;
- }
- /* Widen the fixed sidebar */
- .bs-sidebar.affix,
- .bs-sidebar.affix-bottom {
- width: 213px;
- }
- .bs-sidebar.affix {
- position: fixed; /* Undo the static from mobile first approach */
- 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;
- }
- }
- @media (min-width: 1200px) {
- /* Widen the fixed sidebar again */
- .bs-sidebar.affix-bottom,
- .bs-sidebar.affix {
- width: 263px;
- }
- }
- /*
- * Examples
- *
- * Isolated sections of example content for each component or feature. Usually
- * followed by a code snippet.
- */
- .bs-example {
- position: relative;
- padding: 45px 15px 15px;
- margin: 0 -15px 15px;
- 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;
- }
- /* Echo out a label for the example */
- .bs-example:after {
- content: "Example";
- position: absolute;
- top: 15px;
- left: 15px;
- font-size: 12px;
- font-weight: bold;
- color: #bbb;
- text-transform: uppercase;
- letter-spacing: 1px;
- }
- /* Tweak display of the code snippets when following an example */
- .bs-example + .highlight {
- margin: -15px -15px 15px;
- border-radius: 0;
- border-width: 0 0 1px;
- }
- /* Make the examples and snippets not full-width */
- @media (min-width: 768px) {
- .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;
- }
- .bs-example + .highlight {
- margin-top: -16px;
- margin-left: 0;
- margin-right: 0;
- border-width: 1px;
- border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px;
- }
- }
- /* Undo width of container */
- .bs-example .container {
- width: auto;
- }
- /* Tweak content of examples for optimum awesome */
- .bs-example > p:last-child,
- .bs-example > ul:last-child,
- .bs-example > ol:last-child,
- .bs-example > blockquote:last-child,
- .bs-example > .form-control:last-child,
- .bs-example > .table:last-child,
- .bs-example > .navbar:last-child,
- .bs-example > .jumbotron:last-child,
- .bs-example > .alert:last-child,
- .bs-example > .panel:last-child,
- .bs-example > .list-group:last-child,
- .bs-example > .well:last-child,
- .bs-example > .progress:last-child,
- .bs-example > .table-responsive:last-child > .table {
- margin-bottom: 0;
- }
- .bs-example > p > .close {
- float: none;
- }
- /* Typography */
- .bs-example-type .table .info {
- color: #999;
- vertical-align: middle;
- }
- .bs-example-type .table td {
- padding: 15px 0;
- border-color: #eee;
- }
- .bs-example-type .table tr:first-child td {
- border-top: 0;
- }
- .bs-example-type h1,
- .bs-example-type h2,
- .bs-example-type h3,
- .bs-example-type h4,
- .bs-example-type h5,
- .bs-example-type h6 {
- margin: 0;
- }
- /* Images */
- .bs-example > .img-circle,
- .bs-example > .img-rounded,
- .bs-example > .img-thumbnail {
- margin: 5px;
- }
- /* Tables */
- .bs-example > .table-responsive > .table {
- background-color: #fff;
- }
- /* Buttons */
- .bs-example > .btn,
- .bs-example > .btn-group {
- margin-top: 5px;
- margin-bottom: 5px;
- }
- .bs-example > .btn-toolbar + .btn-toolbar {
- margin-top: 10px;
- }
- /* Forms */
- .bs-example-control-sizing select,
- .bs-example-control-sizing input[type="text"] + input[type="text"] {
- margin-top: 10px;
- }
- .bs-example-form .input-group {
- margin-bottom: 10px;
- }
- .bs-example > textarea.form-control {
- resize: vertical;
- }
- /* List groups */
- .bs-example > .list-group {
- max-width: 400px;
- }
- /* Navbars */
- .bs-example .navbar:last-child {
- margin-bottom: 0;
- }
- .bs-navbar-top-example,
- .bs-navbar-bottom-example {
- z-index: 1;
- padding: 0;
- overflow: hidden; /* cut the drop shadows off */
- }
- .bs-navbar-top-example .navbar-header,
- .bs-navbar-bottom-example .navbar-header {
- margin-left: 0;
- }
- .bs-navbar-top-example .navbar-fixed-top,
- .bs-navbar-bottom-example .navbar-fixed-bottom {
- position: relative;
- margin-left: 0;
- margin-right: 0;
- }
- .bs-navbar-top-example {
- padding-bottom: 45px;
- }
- .bs-navbar-top-example:after {
- top: auto;
- bottom: 15px;
- }
- .bs-navbar-top-example .navbar-fixed-top {
- top: -1px;
- }
- .bs-navbar-bottom-example {
- padding-top: 45px;
- }
- .bs-navbar-bottom-example .navbar-fixed-bottom {
- bottom: -1px;
- }
- .bs-navbar-bottom-example .navbar {
- margin-bottom: 0;
- }
- @media (min-width: 768px) {
- .bs-navbar-top-example .navbar-fixed-top,
- .bs-navbar-bottom-example .navbar-fixed-bottom {
- position: absolute;
- }
- .bs-navbar-top-example {
- border-radius: 0 0 4px 4px;
- }
- .bs-navbar-bottom-example {
- border-radius: 4px 4px 0 0;
- }
- }
- /* Pagination */
- .bs-example .pagination {
- margin-top: 10px;
- margin-bottom: 10px;
- }
- /* Pager */
- .bs-example > .pager {
- margin-top: 0;
- }
- /* Example modals */
- .bs-example-modal {
- background-color: #f5f5f5;
- }
- .bs-example-modal .modal {
- position: relative;
- top: auto;
- right: auto;
- left: auto;
- bottom: auto;
- z-index: 1;
- display: block;
- }
- .bs-example-modal .modal-dialog {
- left: auto;
- margin-left: auto;
- margin-right: auto;
- }
- /* Example dropdowns */
- .bs-example > .dropdown > .dropdown-menu {
- position: static;
- display: block;
- margin-bottom: 5px;
- }
- /* Example tabbable tabs */
- .bs-example-tabs .nav-tabs {
- margin-bottom: 15px;
- }
- /* Tooltips */
- .bs-example-tooltips {
- text-align: center;
- }
- .bs-example-tooltips > .btn {
- margin-top: 5px;
- margin-bottom: 5px;
- }
- /* Popovers */
- .bs-example-popover {
- padding-bottom: 24px;
- background-color: #f9f9f9;
- }
- .bs-example-popover .popover {
- position: relative;
- display: block;
- float: left;
- width: 260px;
- margin: 20px;
- }
- /* Scrollspy demo on fixed height div */
- .scrollspy-example {
- position: relative;
- height: 200px;
- margin-top: 10px;
- overflow: auto;
- }
|