styles.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. cursor: pointer;
  61. }
  62. .plotSelector:focus {
  63. outline: none;
  64. }
  65. .mainPlot {
  66. display: flex;
  67. justify-content: center;
  68. align-items: center;
  69. margin-top: 10px;
  70. }
  71. select {
  72. width: 113px;
  73. }
  74. input {
  75. width: 113px;
  76. }