styles.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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. }
  97. .plotSelectorContainer {
  98. display: flex;
  99. justify-content: center;
  100. align-items: center;
  101. margin-top: 10px;
  102. }
  103. input, select {
  104. color: #bbb;
  105. background-color: #42361d;
  106. border: none;
  107. border-bottom: 1px solid #8d6411;
  108. }
  109. input:focus, select:focus {
  110. outline: none;
  111. }
  112. .mainPlot {
  113. display: flex;
  114. justify-content: center;
  115. align-items: center;
  116. margin-top: 10px;
  117. }
  118. .plot-container {
  119. width: auto !important;
  120. }
  121. .queryButton {
  122. margin-left: 5px;
  123. }
  124. button {
  125. background-color: #f7a600;
  126. display: inline-block;
  127. border: none;
  128. line-height: 17px;
  129. padding: 0 8px;
  130. font-size: 11px;
  131. color: #fff;
  132. font-weight: bold;
  133. text-transform: uppercase;
  134. cursor: pointer;
  135. outline: none;
  136. }
  137. button:hover {
  138. color: rgb(39, 39, 39);
  139. transition: color 0.2s ease;
  140. }
  141. .title {
  142. text-align: center;
  143. font-size: 18px;
  144. padding: 5px;
  145. font-weight: bold;
  146. }
  147. table {
  148. border-collapse: collapse;
  149. background: white;
  150. width: 100%;
  151. margin-bottom: 40px;
  152. }
  153. table, th, td {
  154. border: 1px solid black;
  155. }
  156. th {
  157. padding: 8px;
  158. text-align: left;
  159. background: #26353e;
  160. }
  161. td {
  162. padding: 8px;
  163. text-align: left;
  164. background-color: #222;
  165. }
  166. td:nth-child(odd) {
  167. background-color: #23282b;
  168. }
  169. select {
  170. width: 138px;
  171. cursor: pointer;
  172. }
  173. input.plotSelector {
  174. width: 134px;
  175. cursor: text;
  176. }