Sistema de Gestión Documental
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

291 lines
5.8 KiB

5 years ago
  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:70px 0 0;
  13. background: #f0f0f0;
  14. }
  15. /** HEADER **/
  16. header:before {
  17. content:"";
  18. background-color:#27848E;
  19. height:70px;
  20. width:100%;
  21. text-align:center;
  22. position:fixed;
  23. top:0;
  24. z-index:100;
  25. box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  26. }
  27. header #logo {
  28. position:fixed;
  29. top : 35px;
  30. right:40px;
  31. z-index:102;
  32. transform:translateY(-50%);
  33. }
  34. header #logo img {
  35. height:48px;
  36. background-color:rgba(40, 134, 144, 0.4)
  37. }
  38. /** INCREASE WRAPPER BLOC PADDING **/
  39. #swagger-ui.api-platform .wrapper {
  40. padding:0px 60px;
  41. }
  42. /** INFORMATIONS BLOC **/
  43. #swagger-ui.api-platform .information-container.wrapper {
  44. margin:0;
  45. padding:10px 0 0;
  46. width:100%;
  47. max-width:100%;
  48. background-color:white;
  49. border-bottom:1px solid #ccc;
  50. margin-bottom:30px;
  51. }
  52. #swagger-ui.api-platform .info .title {
  53. color:#3caab5;
  54. }
  55. #swagger-ui.api-platform .info {
  56. width: 100%;
  57. max-width: 1460px;
  58. padding: 0px 50px;
  59. margin: 0px auto;
  60. }
  61. /** METHODS BLOCS **/
  62. #swagger-ui.api-platform .opblock.opblock-get .opblock-summary-method {
  63. background-color:#3CAAB5;
  64. }
  65. #swagger-ui.api-platform .opblock.opblock-put .opblock-summary-method {
  66. background-color:#E6C229;
  67. }
  68. #swagger-ui.api-platform .opblock.opblock-post .opblock-summary-method {
  69. background-color:#78BC61;
  70. }
  71. #swagger-ui.api-platform .opblock.opblock-delete .opblock-summary-method {
  72. background-color:#ED6A5A;
  73. }
  74. #swagger-ui.api-platform .opblock.opblock-deprecated .opblock-summary-method {
  75. background-color:#ebebeb;
  76. }
  77. #swagger-ui.api-platform .opblock.opblock-get .opblock-summary {
  78. border-color:#3CAAB5;
  79. }
  80. #swagger-ui.api-platform .opblock.opblock-put .opblock-summary {
  81. border-color:#E6C229;
  82. }
  83. #swagger-ui.api-platform .opblock.opblock-post .opblock-summary {
  84. border-color:#78BC61;
  85. }
  86. #swagger-ui.api-platform .opblock.opblock-delete .opblock-summary {
  87. border-color:#ED6A5A;
  88. }
  89. #swagger-ui.api-platform .opblock.opblock-deprecated .opblock-summary {
  90. border-color:#ebebeb;
  91. }
  92. #swagger-ui.api-platform .opblock-summary-method {
  93. border-radius:0;
  94. padding:10px;
  95. }
  96. #swagger-ui.api-platform .opblock-summary {
  97. padding:0;
  98. }
  99. #swagger-ui.api-platform .opblock-tag {
  100. padding:5px 0;
  101. margin:0 0 10px;
  102. }
  103. #swagger-ui.api-platform .opblock-tag:hover {
  104. background-color:rgba(0,0,0,.1);
  105. transform:scale(1.01);
  106. }
  107. #swagger-ui.api-platform .opblock-section-header, #swagger-ui.api-platform .opblock.opblock-get .opblock-section-header {
  108. background-color:rgba(60,170,181,0.1);
  109. box-shadow:none;
  110. }
  111. #swagger-ui.api-platform .opblock.opblock-post .opblock-section-header {
  112. background-color:rgba(120,188,97,0.1);
  113. }
  114. #swagger-ui.api-platform .opblock.opblock-put .opblock-section-header {
  115. background-color:rgba(230, 194, 41, 0.1);
  116. }
  117. #swagger-ui.api-platform .opblock.opblock-delete .opblock-section-header {
  118. background-color:rgba(237,106,90,0.1);
  119. }
  120. #swagger-ui.api-platform .opblock.opblock-deprecated .opblock-section-header {
  121. background-color:rgba(235,235,235,0.1);
  122. }
  123. #swagger-ui.api-platform .opblock {
  124. border-radius:0;
  125. background-color:white;
  126. box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  127. margin:0 0 10px;
  128. padding:0;
  129. border:none!important;
  130. }
  131. #swagger-ui .topbar {
  132. display: none;
  133. }
  134. /** FORMATS **/
  135. #formats {
  136. text-align:right;
  137. font-family: sans-serif;
  138. width: 100%;
  139. max-width: 1460px;
  140. padding: 0px 60px;
  141. margin:0 auto;
  142. }
  143. /** BUTTONS **/
  144. #swagger-ui.api-platform .btn.execute {
  145. background-color:#3CAAB5;
  146. border-color:#3CAAB5;
  147. animation:none;
  148. transition:all ease 0.3s;
  149. }
  150. #swagger-ui.api-platform .btn.execute:hover {
  151. background-color:#288690;
  152. border-color:#288690;
  153. }
  154. #swagger-ui.api-platform .execute-wrapper {
  155. text-align:center;
  156. }
  157. #swagger-ui.api-platform .execute-wrapper .btn {
  158. width:auto;
  159. padding:10px 40px;
  160. }
  161. #swagger-ui.api-platform .btn-group {
  162. max-width: 500px;
  163. margin-left: auto;
  164. margin-right: auto;
  165. }
  166. #swagger-ui.api-platform .btn-group .btn {
  167. padding:10px 40px;
  168. }
  169. #swagger-ui.api-platform .btn {
  170. transition:all ease 0.2s;
  171. box-shadow:none;
  172. background-color: #f7f7f7
  173. }
  174. #swagger-ui.api-platform .btn:hover {
  175. background-color:rgba(65,68,78,0.1);
  176. border-color:transparent;
  177. }
  178. #swagger-ui.api-platform .btn.cancel:hover {
  179. background-color:rgba(237,106,90,0.1);
  180. }
  181. #swagger-ui.api-platform .btn.authorize:hover {
  182. background-color:rgba(120,188,97,0.1);
  183. }
  184. #swagger-ui.api-platform select {
  185. box-shadow:none;
  186. cursor:pointer;
  187. }
  188. /** FIX TABS SEPARATOR **/
  189. #swagger-ui.api-platform .tab li:first-of-type:after {
  190. content : none;
  191. }
  192. #swagger-ui.api-platform .tab li {
  193. padding:0px 5px;
  194. border-right:1px solid rgba(0,0,0,.2);
  195. }
  196. #swagger-ui.api-platform .tab li:last-of-type {
  197. border-right:none;
  198. }
  199. /** REMOVE HIGHLIGHTS FOCUS INPUTS **/
  200. #swagger-ui.api-platform input:focus,
  201. #swagger-ui.api-platform select:focus,
  202. #swagger-ui.api-platform textarea:focus,
  203. #swagger-ui.api-platform button:focus {
  204. outline: none;
  205. }
  206. /** REMOVE TITILIUM FONT **/
  207. .swagger-ui .opblock-tag,
  208. .swagger-ui .opblock .opblock-section-header label,
  209. .swagger-ui .opblock .opblock-section-header h4,
  210. .swagger-ui .opblock .opblock-summary-method,
  211. .swagger-ui .tab li,
  212. .swagger-ui .scheme-container .schemes>label,
  213. .swagger-ui .loading-container .loading:after,
  214. .swagger-ui .btn,
  215. .swagger-ui .btn.cancel,
  216. .swagger-ui select,
  217. .swagger-ui label,
  218. .swagger-ui .dialog-ux .modal-ux-content h4,
  219. .swagger-ui .dialog-ux .modal-ux-header h3,
  220. .swagger-ui section.models h4,
  221. .swagger-ui section.models h5,
  222. .swagger-ui .model-title,
  223. .swagger-ui .parameter__name,
  224. .swagger-ui .topbar a,
  225. .swagger-ui .topbar .download-url-wrapper .download-url-button,
  226. .swagger-ui .info .title small pre,
  227. .swagger-ui .scopes h2,
  228. .swagger-ui .errors-wrapper hgroup h4 {
  229. font-family: sans-serif !important;
  230. }