style.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. body {
  2. margin:0;
  3. background: #fafafa;
  4. }
  5. #header {
  6. background-color: #89bf04;
  7. padding: 14px;
  8. }
  9. #header a#logo {
  10. font-size: 1.5em;
  11. font-weight: bold;
  12. text-decoration: none;
  13. background: transparent url(../images/logo_small.png) no-repeat left center;
  14. padding: 20px 0 20px 40px;
  15. color: white;
  16. }
  17. #header form#api_selector {
  18. display: block;
  19. clear: none;
  20. float: right;
  21. }
  22. #header form#api_selector .input {
  23. display: block;
  24. clear: none;
  25. float: left;
  26. margin: 0 10px 0 0;
  27. }
  28. #header form#api_selector .input input#input_apiKey {
  29. width: 200px;
  30. }
  31. #header form#api_selector .input input#input_baseUrl {
  32. width: 400px;
  33. }
  34. #header form#api_selector .input a#explore {
  35. display: block;
  36. text-decoration: none;
  37. font-weight: bold;
  38. padding: 6px 8px;
  39. font-size: 0.9em;
  40. color: white;
  41. background-color: #547f00;
  42. -moz-border-radius: 4px;
  43. -webkit-border-radius: 4px;
  44. -o-border-radius: 4px;
  45. -ms-border-radius: 4px;
  46. -khtml-border-radius: 4px;
  47. border-radius: 4px;
  48. }
  49. #header form#api_selector .input a#explore:hover {
  50. background-color: #547f00;
  51. }
  52. #header form#api_selector .input input {
  53. font-size: 0.9em;
  54. padding: 3px;
  55. margin: 0;
  56. }
  57. #content_message {
  58. margin: 10px 15px;
  59. font-style: italic;
  60. color: #999999;
  61. }
  62. .swagger-ui .topbar {
  63. display: none;
  64. }