microsoft/qdk
Publicmirrored from https://github.com/microsoft/qdkAvailable
source/npm/qsharp/ux/chem/style.css
83lines · modecode
| 1 | #viewer { |
| 2 | width: 100%; |
| 3 | height: 100%; |
| 4 | margin: 0; |
| 5 | overflow: hidden; |
| 6 | } |
| 7 | |
| 8 | #viewer-container { |
| 9 | width: 100%; |
| 10 | height: 100%; |
| 11 | margin: 0; |
| 12 | overflow: hidden; |
| 13 | /* border: 1px solid gray; */ |
| 14 | } |
| 15 | |
| 16 | #viewer { |
| 17 | width: 100%; |
| 18 | height: 100%; |
| 19 | } |
| 20 | |
| 21 | #view-dropdown-container { |
| 22 | position: absolute; |
| 23 | top: 10px; /* distance from bottom */ |
| 24 | left: 10px; /* distance from right */ |
| 25 | height: 20px; |
| 26 | padding: 10px; |
| 27 | border-radius: 4px; |
| 28 | z-index: 10; |
| 29 | font-family: system-ui; |
| 30 | } |
| 31 | |
| 32 | #viewSelector { |
| 33 | padding-left: 4px; |
| 34 | } |
| 35 | |
| 36 | .view-option { |
| 37 | display: flex; |
| 38 | align-items: center; |
| 39 | gap: 8px; |
| 40 | } |
| 41 | |
| 42 | .view-option label { |
| 43 | margin-right: 0; |
| 44 | white-space: nowrap; |
| 45 | min-width: 120px; |
| 46 | } |
| 47 | |
| 48 | .view-option select, |
| 49 | .view-option input[type="range"] { |
| 50 | color: var(--vscode-editor-foreground); |
| 51 | background-color: var(--vscode-editor-background); |
| 52 | } |
| 53 | |
| 54 | #cube-dropdown-container { |
| 55 | position: absolute; |
| 56 | top: 40px; /* distance from bottom */ |
| 57 | left: 10px; /* distance from right */ |
| 58 | padding: 10px; |
| 59 | height: 20px; |
| 60 | border-radius: 4px; |
| 61 | z-index: 10; |
| 62 | font-family: system-ui; |
| 63 | } |
| 64 | |
| 65 | #isoval-slider-container { |
| 66 | position: absolute; |
| 67 | top: 70px; /* distance from bottom */ |
| 68 | left: 10px; /* distance from right */ |
| 69 | padding: 10px; |
| 70 | height: 40px; |
| 71 | border-radius: 4px; |
| 72 | z-index: 10; |
| 73 | font-family: system-ui; |
| 74 | } |
| 75 | |
| 76 | #isovalSlider { |
| 77 | width: 100px; |
| 78 | outline: none; |
| 79 | } |
| 80 | |
| 81 | #isovalInput { |
| 82 | width: 64px; |
| 83 | } |
| 84 | |