style.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. html {
  2. box-sizing: border-box;
  3. overflow: -moz-scrollbars-vertical;
  4. overflow-y: scroll;
  5. }
  6. *,
  7. *:before,
  8. *:after {
  9. box-sizing: inherit;
  10. }
  11. body {
  12. margin: 0;
  13. padding: 0;
  14. }
  15. body.swagger-body {
  16. background: #fafafa;
  17. }
  18. .hidden {
  19. display: none;
  20. }
  21. #django-session-auth > div {
  22. display: inline-block;
  23. }
  24. #django-session-auth .btn.authorize {
  25. padding: 10px 23px;
  26. }
  27. #django-session-auth .btn.authorize a {
  28. color: #49cc90;
  29. text-decoration: none;
  30. }
  31. #django-session-auth .hello {
  32. margin-right: 5px;
  33. }
  34. #django-session-auth .hello .django-session {
  35. font-weight: bold;
  36. }
  37. .label {
  38. display: inline;
  39. padding: .2em .6em .3em;
  40. font-weight: 700;
  41. line-height: 1;
  42. color: #fff;
  43. text-align: center;
  44. white-space: nowrap;
  45. vertical-align: baseline;
  46. border-radius: .25em;
  47. }
  48. .label-primary {
  49. background-color: #337ab7;
  50. }
  51. .divider {
  52. margin-right: 8px;
  53. background: #16222c44;
  54. width: 2px;
  55. }
  56. svg.swagger-defs {
  57. position: absolute;
  58. width: 0;
  59. height: 0;
  60. }