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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
| html {
| box-sizing: border-box;
| overflow: -moz-scrollbars-vertical;
| overflow-y: scroll;
| }
|
| *,
| *:before,
| *:after {
| box-sizing: inherit;
| }
|
| body {
| margin: 0;
| padding: 0;
| }
|
| body.swagger-body {
| background: #fafafa;
| }
|
| .hidden {
| display: none;
| }
|
| #django-session-auth > div {
| display: inline-block;
| }
|
| #django-session-auth .btn.authorize {
| padding: 10px 23px;
| }
|
| #django-session-auth .btn.authorize a {
| color: #49cc90;
| text-decoration: none;
| }
|
| #django-session-auth .hello {
| margin-right: 5px;
| }
|
| #django-session-auth .hello .django-session {
| font-weight: bold;
| }
|
| .label {
| display: inline;
| padding: .2em .6em .3em;
| font-weight: 700;
| line-height: 1;
| color: #fff;
| text-align: center;
| white-space: nowrap;
| vertical-align: baseline;
| border-radius: .25em;
| }
|
| .label-primary {
| background-color: #337ab7;
| }
|
| .divider {
| margin-right: 8px;
| background: #16222c44;
| width: 2px;
| }
|
| svg.swagger-defs {
| position: absolute;
| width: 0;
| height: 0;
| }
|
|