default.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* The navbar is fixed at >= 980px wide, so add padding to the body to prevent
  2. content running up underneath it. */
  3. h1 {
  4. font-weight: 300;
  5. }
  6. h2, h3 {
  7. font-weight: 300;
  8. }
  9. .resource-description, .response-info {
  10. margin-bottom: 2em;
  11. }
  12. .version:before {
  13. content: "v";
  14. opacity: 0.6;
  15. padding-right: 0.25em;
  16. }
  17. .version {
  18. font-size: 70%;
  19. }
  20. .format-option {
  21. font-family: Menlo, Consolas, "Andale Mono", "Lucida Console", monospace;
  22. }
  23. .button-form {
  24. float: right;
  25. margin-right: 1em;
  26. }
  27. td.nested {
  28. padding: 0 !important;
  29. }
  30. td.nested > table {
  31. margin: 0;
  32. }
  33. form select, form input:not([type=checkbox]), form textarea {
  34. width: 90%;
  35. }
  36. form select[multiple] {
  37. height: 150px;
  38. }
  39. /* To allow tooltips to work on disabled elements */
  40. .disabled-tooltip-shield {
  41. position: absolute;
  42. top: 0;
  43. right: 0;
  44. bottom: 0;
  45. left: 0;
  46. }
  47. .errorlist {
  48. margin-top: 0.5em;
  49. }
  50. pre {
  51. overflow: auto;
  52. word-wrap: normal;
  53. white-space: pre;
  54. font-size: 12px;
  55. }
  56. .page-header {
  57. border-bottom: none;
  58. padding-bottom: 0px;
  59. }
  60. #filtersModal form input[type=submit] {
  61. width: auto;
  62. }
  63. #filtersModal .modal-body h2 {
  64. margin-top: 0
  65. }