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.

119 lines
2.8 KiB

  1. body {
  2. height: 100%;
  3. margin: 0;
  4. width: 100%;
  5. overflow: hidden;
  6. }
  7. #graphiql {
  8. height: 100vh;
  9. }
  10. #graphiql .graphiql-container .topBar {
  11. background: none;
  12. height: 70px;
  13. box-sizing: border-box;
  14. }
  15. #graphiql .graphiql-container .docExplorerShow {
  16. background: none;
  17. }
  18. #graphiql .graphiql-container .title span {
  19. padding-left: 10px;
  20. }
  21. #graphiql .graphiql-container .title {
  22. color: #85cdd4;
  23. display: flex;
  24. align-items: center;
  25. }
  26. #graphiql .graphiql-container .title:before {
  27. content: "";
  28. width: 185px;
  29. height: 50px;
  30. background: url("./logo-header.svg") no-repeat;
  31. vertical-align: middle;
  32. border-right: 1px solid white;
  33. }
  34. #graphiql .graphiql-container .doc-explorer-title-bar, #graphiql .graphiql-container .history-title-bar {
  35. background: #3CAAB5;
  36. height: 69px;
  37. display: flex;
  38. align-items: center;
  39. padding: 0;
  40. }
  41. #graphiql .graphiql-container .docExplorerHide {
  42. color: white;
  43. margin: 0;
  44. }
  45. #graphiql .graphiql-container .doc-explorer-title, #graphiql .graphiql-container .history-title {
  46. text-transform: uppercase;
  47. color: white;
  48. }
  49. #graphiql .graphiql-container .topBarWrap {
  50. background-color: #288690;
  51. }
  52. #graphiql .graphiql-container .history-contents, #graphiql .graphiql-container .doc-explorer-contents {
  53. top: 69px;
  54. box-sizing: border-box;
  55. }
  56. #graphiql .graphiql-container .execute-button-wrap {
  57. flex: 1;
  58. }
  59. #graphiql .graphiql-container .execute-button {
  60. background: white;
  61. box-shadow: none;
  62. border: 1px solid #85cdd4;
  63. }
  64. #graphiql .graphiql-container .docExplorerShow {
  65. color: white;
  66. text-transform: uppercase;
  67. }
  68. #graphiql .graphiql-container .docExplorerShow:before {
  69. border-left: 2px solid #85cdd4;
  70. border-top: 2px solid #85cdd4;
  71. }
  72. #graphiql .graphiql-container .field-name, #graphiql .cm-property {
  73. color: #28858f;
  74. }
  75. #graphiql .graphiql-container .doc-explorer-back {
  76. color: #294e52;
  77. }
  78. #graphiql .graphiql-container .doc-explorer-back:before {
  79. border-left: 2px solid #294e52;
  80. border-top: 2px solid #294e52;
  81. }
  82. #graphiql .graphiql-container .toolbar-button {
  83. padding: 10px;
  84. border-radius: 5px;
  85. box-shadow: none;
  86. border: 1px solid #85cdd5;
  87. background: white;
  88. }
  89. #graphiql .graphiql-container .execute-options>li.selected,
  90. #graphiql .graphiql-container .toolbar-menu-items>li.hover,
  91. #graphiql.graphiql-container .toolbar-menu-items>li:active,
  92. #graphiql .graphiql-container .toolbar-menu-items>li:hover,
  93. #graphiql.graphiql-container .toolbar-select-options>li.hover,
  94. #graphiql .graphiql-container .toolbar-select-options>li:active,
  95. #graphiql .graphiql-container .toolbar-select-options>li:hover,
  96. #graphiql .graphiql-container .history-contents>p:hover,
  97. #graphiql .graphiql-container .history-contents>p:active {
  98. background: #288690;
  99. }