| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- body {
- background-color: #1E1E1E;
- font-family: "Droid Sans", sans-serif;
- font-size: 14px;
- margin: 0px;
- color: rgb(153, 153, 153);
- }
- /* For Chrome, Safari */
- body::-webkit-scrollbar,
- html::-webkit-scrollbar {
- width: 0;
- height: 0;
- }
- /* For Firefox */
- body,
- html {
- scrollbar-width: none;
- overflow: auto;
- }
- .topTabContainer {
- display: flex;
- margin: 1px;
- }
- .topTabContainer div {
- position: relative;
- }
- .topTab {
- background-color: #252525;
- margin: 1px;
- cursor: pointer;
- display: inline-flex;
- flex-direction: column;
- }
- .topTabLink {
- color: rgb(153, 153, 153);
- padding: 4px 4px 2px 4px;
- text-decoration: none;
- }
- .topTab:hover a.topTabLink {
- color: #eee;
- transition: color 0.2s ease;
- }
- .toggleIndicator {
- background-color: rgba(247, 166, 0, 0.15);
- width: 100%;
- height: 2px;
- }
- .topTab:hover div.toggleIndicator {
- background-color: rgb(247, 166, 0);
- -webkit-box-shadow: 0 0 6px 0 #f7a600;
- -moz-box-shadow: 0 0 6px 0 #f7a600;
- box-shadow: 0 0 6px 0 #f7a600;
- transition: color 0.2s ease;
- }
- .permalinkContainer {
- position: absolute !important;
- z-index: 1000;
- background: rgb(38, 38, 38);
- width: 300px;
- height: 84px;
- top: 33px;
- border-color: rgb(196, 132, 0);
- border-width: 3px;
- border-style: solid;
- border-radius: 4px;
-
- }
- .permalinkCaret {
- position: relative;
- top: -10px;
- left: 13%; /* position relative to popup */
- width: 0;
- height: 0;
- border-left: 10px solid transparent;
- border-right: 10px solid transparent;
- border-bottom: 10px solid rgb(196, 132, 0); /* match popup background */
- }
- .permalinkInner {
- margin-right: 7px;
- }
- .permalinkInner div {
- width: 100%;
- height: 100%;
- margin-top: -5px;
- margin-left: 3px;
- margin-right: 3px;
- display: flex;
- margin-bottom: 3px;
- }
- .permalinkInner div div {
- margin-top: 1px;
- color: #ccc;
- }
- .permalinkInner input {
- flex: 1;
- margin-right: 3px;
- }
- .plotly-notifier {
- display: none;
- }
- .selectorSubtypes {
- display: block;
- }
- .selectorSubtypes div {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 10px;
- margin-bottom: 10px;
- }
- .plotSelectorContainer {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 10px;
- }
- input, select {
- color: #bbb;
- background-color: #42361d;
- border: none;
- border-bottom: 1px solid #8d6411;
- }
- input:focus, select:focus {
- outline: none;
- }
- .mainPlot {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .fullScreen {
- width: 100vw;
- height: 100vh;
- }
- .plot-container {
- width: auto !important;
- }
- .queryButton {
- margin-left: 5px;
- }
- button {
- background-color: #f7a600;
- display: inline-block;
- border: none;
- line-height: 17px;
- padding: 0 8px;
- font-size: 11px;
- color: #fff;
- font-weight: bold;
- text-transform: uppercase;
- cursor: pointer;
- outline: none;
- }
- button:hover {
- color: rgb(39, 39, 39);
- transition: color 0.2s ease;
- }
- .title {
- text-align: center;
- font-size: 18px;
- padding: 5px;
- font-weight: bold;
- white-space: pre-line;
- }
- table {
- border-collapse: collapse;
- background: white;
- width: 100%;
- margin-bottom: 40px;
- }
- table, th, td {
- border: 1px solid black;
- }
- th {
- padding: 8px;
- text-align: left;
- background: #26353e;
- }
- td {
- padding: 8px;
- text-align: left;
- background-color: #222;
- }
- td:nth-child(odd) {
- background-color: #23282b;
- }
- select {
- width: 138px;
- cursor: pointer;
- }
- input.plotSelector {
- width: 134px;
- cursor: text;
- }
|