|
| 1 | +html, body { |
| 2 | + font-family: sans-serif; |
| 3 | + font-size: 12px; |
| 4 | + height: 100%; |
| 5 | + /* width: 100%; */ |
| 6 | +} |
| 7 | + |
| 8 | +.select2-container .select2-selection .select2-selection__rendered, |
| 9 | +.select2-container .select2-selection--single .select2-selection__rendered, |
| 10 | +.select2-container .select2-results__option{ |
| 11 | + font-family: monospace; |
| 12 | + /* font-size: 20px; */ |
| 13 | +} |
| 14 | +.select2-results__group { |
| 15 | + font-family: sans-serif; |
| 16 | + /* font-size: 12px; */ |
| 17 | + /* color: blue; */ |
| 18 | +} |
| 19 | + |
| 20 | +.maingrid { |
| 21 | + display: grid; |
| 22 | + grid-template-columns: min-content auto; |
| 23 | + width: 100%; |
| 24 | + gap: 5px; |
| 25 | +} |
| 26 | + |
| 27 | +.graphplot-col, .timeseries-col, .timeseries-stack{ |
| 28 | + display: flex; |
| 29 | + flex-direction: column; |
| 30 | + gap: 5px; |
| 31 | + /* to keep shadows visible */ |
| 32 | + /* https://stackoverflow.com/questions/70802682/parents-overflowhidden-doesnt-show-childs-box-shadow */ |
| 33 | + overflow: hidden; /* otherwise it won't shrink */ |
| 34 | + margin:-10px; |
| 35 | + padding:10px |
| 36 | +} |
| 37 | + |
| 38 | +.graphplot-card { |
| 39 | + height:400px; /* initial widht and height */ |
| 40 | + width: 400px; |
| 41 | + min-width:250px; |
| 42 | + resize: both; |
| 43 | + overflow: hidden; |
| 44 | +} |
| 45 | + |
| 46 | +.gpstate-control-card { |
| 47 | +} |
| 48 | + |
| 49 | +.timeslider-card { |
| 50 | + height:min-content; |
| 51 | +} |
| 52 | + |
| 53 | +.timeseries-card { |
| 54 | + resize: vertical; |
| 55 | + overflow: hidden; |
| 56 | + /* grid-column: 2; */ |
| 57 | +} |
| 58 | +.timeseries-card.active-tseries { |
| 59 | + box-shadow: 0 4px 8px rgba(0.0, 0.0, 51.0, 0.65); |
| 60 | +} |
| 61 | +.timeseries-card-container{ |
| 62 | + display: flex; |
| 63 | + flex-direction: column; |
| 64 | + overflow: hidden; |
| 65 | + height: 100%; /* otherwise it won't shrink */ |
| 66 | +} |
| 67 | +.timeseries-card-container .comp-state-sel-grid { |
| 68 | + height: min-content; /* otherwise it won't shrink */ |
| 69 | +} |
| 70 | +.timeseries-axis-container{ |
| 71 | + flex-grow: 1; |
| 72 | + overflow:hidden; |
| 73 | +} |
| 74 | + |
| 75 | +.tooltip { |
| 76 | + position: absolute; |
| 77 | + background-color: black; |
| 78 | + color: white; |
| 79 | + padding: 5px 10px; |
| 80 | + border-radius: 5px; |
| 81 | + font-size: 12px; |
| 82 | + font-family: monospace; |
| 83 | + pointer-events: none; |
| 84 | + white-space: nowrap; |
| 85 | + display: none; /* Initially hidden */ |
| 86 | + transform: translate(12px, 12px); /* Offset from cursor */ |
| 87 | +} |
| 88 | + |
| 89 | +#element-info-box { |
| 90 | + font-family: monospace; |
| 91 | + overflow: scroll; |
| 92 | + border: 2px solid #dbdbdb; |
| 93 | + border-radius: 4px; |
| 94 | + background-color: #f5f5f5; |
| 95 | + color: #222; |
| 96 | + padding: 1px 10px; |
| 97 | +} |
| 98 | +.element-info-card { |
| 99 | + /* overflow:hidden; */ |
| 100 | + /* resize:vertical; */ |
| 101 | +} |
| 102 | + |
| 103 | +.julia-prompt { |
| 104 | + color: #066f00; |
| 105 | + font-weight: bolder; |
| 106 | +} |
| 107 | + |
| 108 | +button{ |
| 109 | + font-size: 12px !important; |
| 110 | + font-weight: normal !important; |
| 111 | + font-family: sans-serif !important;; |
| 112 | +} |
0 commit comments