styles.css 3.1 KB

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