1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- body {
- font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
- padding-bottom: 50px;
- }
- .bs-docs-masthead,
- .bs-docs-header {
- color: #cdbfe3;
- text-shadow: 0 1px 0 rgba(0,0,0,.1);
- background-color: #6f5499;
- background-image: -webkit-gradient(linear,left top,left bottom,from(#563d7c),to(#6f5499));
- background-image:-webkit-linear-gradient(top,#563d7c 0,#6f5499 100%);
- background-image:-o-linear-gradient(top,#563d7c 0,#6f5499 100%);
- background-image:linear-gradient(to bottom,#563d7c 0,#6f5499 100%);
- filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#563d7c', endColorstr='#6F5499', GradientType=0);
- background-repeat:repeat-x
- }
- .bs-docs-masthead h1 {
- font-weight: 500;
- }
- .page-header {
- text-align: left;
- }
- #github {
- display: none;
- position: fixed;
- width: 150px;
- height: 150px;
- top: 0;
- right: 0;
- z-index: 2000;
- }
- .bottom {
- border-top: 1px solid #eee;
- margin-top: 40px;
- padding-top: 20px;
- padding-bottom: 20px;
- text-align: center;
- }
- .hljs {
- background-color: transparent;
- }
- @media (min-width: 768px) {
- #github {
- display: block;
- }
- }
|