1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
| 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, 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;
| }
| }
|
|