styles.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. body {
  2. background-color: #1E1E1E;
  3. font-family: "Droid Sans", sans-serif;
  4. font-size: 14px;
  5. margin: 0px;
  6. color: rgb(153, 153, 153);
  7. }
  8. /* For Chrome, Safari */
  9. body::-webkit-scrollbar,
  10. html::-webkit-scrollbar {
  11. width: 0;
  12. height: 0;
  13. }
  14. /* For Firefox */
  15. body,
  16. html {
  17. scrollbar-width: none;
  18. overflow: auto;
  19. }
  20. .topTabContainer {
  21. display: flex;
  22. margin: 1px;
  23. }
  24. .topTabContainer div {
  25. position: relative;
  26. }
  27. .topTab {
  28. background-color: #252525;
  29. margin: 1px;
  30. cursor: pointer;
  31. display: inline-flex;
  32. flex-direction: column;
  33. }
  34. .topTabLink {
  35. color: rgb(153, 153, 153);
  36. padding: 4px 4px 2px 4px;
  37. text-decoration: none;
  38. }
  39. .topTab:hover a.topTabLink {
  40. color: #eee;
  41. transition: color 0.2s ease;
  42. }
  43. .toggleIndicator {
  44. background-color: rgba(247, 166, 0, 0.15);
  45. width: 100%;
  46. height: 2px;
  47. }
  48. .topTab:hover div.toggleIndicator {
  49. background-color: rgb(247, 166, 0);
  50. -webkit-box-shadow: 0 0 6px 0 #f7a600;
  51. -moz-box-shadow: 0 0 6px 0 #f7a600;
  52. box-shadow: 0 0 6px 0 #f7a600;
  53. transition: color 0.2s ease;
  54. }
  55. .permalinkContainer {
  56. position: absolute !important;
  57. z-index: 1000;
  58. background: rgb(38, 38, 38);
  59. width: 300px;
  60. height: 84px;
  61. top: 33px;
  62. border-color: rgb(196, 132, 0);
  63. border-width: 3px;
  64. border-style: solid;
  65. border-radius: 4px;
  66. }
  67. .permalinkCaret {
  68. position: relative;
  69. top: -10px;
  70. left: 13%; /* position relative to popup */
  71. width: 0;
  72. height: 0;
  73. border-left: 10px solid transparent;
  74. border-right: 10px solid transparent;
  75. border-bottom: 10px solid rgb(196, 132, 0); /* match popup background */
  76. }
  77. .permalinkInner {
  78. margin-right: 7px;
  79. }
  80. .permalinkInner div {
  81. width: 100%;
  82. height: 100%;
  83. margin-top: -5px;
  84. margin-left: 3px;
  85. margin-right: 3px;
  86. display: flex;
  87. margin-bottom: 3px;
  88. }
  89. .permalinkInner div div {
  90. margin-top: 1px;
  91. color: #ccc;
  92. }
  93. .permalinkInner input {
  94. flex: 1;
  95. margin-right: 3px;
  96. }
  97. .plotly-notifier {
  98. display: none;
  99. }
  100. .selectorSubtypes {
  101. display: block;
  102. }
  103. .selectorSubtypes div {
  104. display: flex;
  105. justify-content: center;
  106. align-items: center;
  107. margin-top: 10px;
  108. margin-bottom: 10px;
  109. }
  110. .plotSelectorContainer {
  111. display: flex;
  112. justify-content: center;
  113. align-items: center;
  114. margin-top: 10px;
  115. }
  116. input, select {
  117. color: #bbb;
  118. background-color: #42361d;
  119. border: none;
  120. border-bottom: 1px solid #8d6411;
  121. }
  122. input:focus, select:focus {
  123. outline: none;
  124. }
  125. .mainPlot {
  126. display: flex;
  127. justify-content: center;
  128. align-items: center;
  129. }
  130. .fullScreen {
  131. width: 100vw;
  132. height: 100vh;
  133. }
  134. .plot-container {
  135. width: auto !important;
  136. }
  137. .queryButton {
  138. margin-left: 5px;
  139. }
  140. button {
  141. background-color: #f7a600;
  142. display: inline-block;
  143. border: none;
  144. line-height: 17px;
  145. padding: 0 8px;
  146. font-size: 11px;
  147. color: #fff;
  148. font-weight: bold;
  149. text-transform: uppercase;
  150. cursor: pointer;
  151. outline: none;
  152. }
  153. button:hover {
  154. color: rgb(39, 39, 39);
  155. transition: color 0.2s ease;
  156. }
  157. .title {
  158. text-align: center;
  159. font-size: 18px;
  160. padding: 5px;
  161. font-weight: bold;
  162. }
  163. table {
  164. border-collapse: collapse;
  165. background: white;
  166. width: 100%;
  167. margin-bottom: 40px;
  168. }
  169. table, th, td {
  170. border: 1px solid black;
  171. }
  172. th {
  173. padding: 8px;
  174. text-align: left;
  175. background: #26353e;
  176. }
  177. td {
  178. padding: 8px;
  179. text-align: left;
  180. background-color: #222;
  181. }
  182. td:nth-child(odd) {
  183. background-color: #23282b;
  184. }
  185. select {
  186. width: 138px;
  187. cursor: pointer;
  188. }
  189. input.plotSelector {
  190. width: 134px;
  191. cursor: text;
  192. }