styles.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. .topTab {
  13. background-color: #252525;
  14. margin: 1px;
  15. cursor: pointer;
  16. }
  17. .topTabLink {
  18. color: rgb(153, 153, 153);
  19. padding: 4px 4px 2px 4px;
  20. text-decoration: none;
  21. }
  22. .topTabLink:hover {
  23. color: #eee;
  24. transition: color 0.2s ease;
  25. }
  26. .toggleIndicator {
  27. background-color: rgba(247, 166, 0, 0.15);
  28. width: 100%;
  29. height: 2px;
  30. }
  31. .toggleIndicatorActive {
  32. background-color: rgb(247, 166, 0);
  33. -webkit-box-shadow: 0 0 6px 0 #f7a600;
  34. -moz-box-shadow: 0 0 6px 0 #f7a600;
  35. box-shadow: 0 0 6px 0 #f7a600;
  36. }
  37. .plotly-notifier {
  38. display: none;
  39. }
  40. .selectorSubtypes {
  41. display: block;
  42. }
  43. .selectorSubtypes div {
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. margin-top: 10px;
  48. }
  49. .plotSelectorContainer {
  50. display: flex;
  51. justify-content: center;
  52. align-items: center;
  53. margin-top: 10px;
  54. }
  55. .plotSelector {
  56. color: #bbb;
  57. background-color: #42361d;
  58. border: none;
  59. border-bottom: 1px solid #8d6411;
  60. }
  61. .plotSelector:focus {
  62. outline: none;
  63. }
  64. .mainPlot {
  65. display: flex;
  66. justify-content: center;
  67. align-items: center;
  68. margin-top: 10px;
  69. }
  70. .queryButton {
  71. background-color: #f7a600;
  72. display: inline-block;
  73. border: none;
  74. line-height: 17px;
  75. padding: 0 8px;
  76. font-size: 11px;
  77. color: #fff;
  78. font-weight: bold;
  79. text-transform: uppercase;
  80. cursor: pointer;
  81. outline: none;
  82. margin-left: 5px;
  83. }
  84. .queryButton:hover {
  85. color: rgb(39, 39, 39);
  86. transition: color 0.2s ease;
  87. }
  88. .title {
  89. text-align: center;
  90. font-size: 18px;
  91. padding: 5px;
  92. font-weight: bold;
  93. }
  94. table {
  95. border-collapse: collapse;
  96. background: white;
  97. width: 100%;
  98. margin-bottom: 40px;
  99. }
  100. table, th, td {
  101. border: 1px solid black;
  102. }
  103. th {
  104. padding: 8px;
  105. text-align: left;
  106. background: #26353e;
  107. }
  108. td {
  109. padding: 8px;
  110. text-align: left;
  111. background-color: #222;
  112. }
  113. td:nth-child(odd) {
  114. background-color: #23282b;
  115. }
  116. select {
  117. width: 138px;
  118. cursor: pointer;
  119. }
  120. input {
  121. width: 134px;
  122. cursor: text;
  123. }