base.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. body {
  2. font: 300 14px 'Helvetica Neue', Helvetica;
  3. margin-top: 60px;
  4. background-color: #f8f8f8;
  5. }
  6. .navbar-default { background-color: white }
  7. g.list > rect { fill: #00ffd0 }
  8. .node rect {
  9. stroke: #333;
  10. fill: #fff;
  11. }
  12. .edgePath path {
  13. stroke: #333;
  14. fill: #333;
  15. stroke-width: 1.5px;
  16. }
  17. #yql-editor, #sql-editor, #expr-editor { height: 450px }
  18. #params-editor { height: 100px }
  19. #input /*, #output, #results */ { height: 200px }
  20. #yql-editor, #sql-editor, #params-editor { margin-bottom: 0 }
  21. #editor-tabs { border-bottom: none }
  22. #yql, #sql { margin-bottom: 10px }
  23. div > pre {
  24. background-color: transparent;
  25. border: none;
  26. }
  27. #graph {
  28. height: 400px;
  29. overflow: auto;
  30. display: none;
  31. }
  32. #status-success, #status-fail, #warnings, #infos, #expr-editor, #errors, #opt-trace { display: none }
  33. #alerts {
  34. position: absolute;
  35. right: 20px;
  36. top: 70px;
  37. z-index: 1000;
  38. }
  39. #alerts .message { white-space: nowrap }
  40. #errors .message ul { margin-bottom: 0 }
  41. #warnings .message ul { margin-bottom: 0 }
  42. #infos .message ul { margin-bottom: 0 }
  43. .navbar .navbar-logo::after {
  44. position: absolute;
  45. content: "";
  46. width: 50px;
  47. height: 35px;
  48. background: #9696FF;
  49. -webkit-transform: scaleX(0.5) rotate(45deg);
  50. -ms-transform: scaleX(0.5) rotate(45deg);
  51. transform: scaleX(0.5) rotate(45deg);
  52. top: 2px;
  53. right: -23px;
  54. border-width: 1px 1px 0 0;
  55. border-style: solid;
  56. border-color: #ACACFF;
  57. }
  58. .navbar .navbar-logo,
  59. .navbar .navbar-logo:focus {
  60. color: #fff;
  61. background: #9696FF;
  62. }
  63. .navbar .navbar-logo:hover,
  64. .navbar .navbar-logo:hover::after {
  65. color: white;
  66. background: #ACACFF;
  67. }
  68. .navbar .navbar-logo {
  69. padding-left: 20px;
  70. margin-right: 30px;
  71. position: relative;
  72. }
  73. .panel-body { padding: 0 }
  74. .doc-link { margin-top: 10px }
  75. .nav-tabs > .active > a, .nav-tabs > .active > a:hover {
  76. outline: 0;
  77. color: #555555;
  78. background-color: #ffffff;
  79. border: 1px solid #ddd;
  80. border-bottom-color: transparent;
  81. cursor: default;
  82. }