microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/add-link-to-qsharp-application

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

source/npm/qsharp/ux/chem/style.css

85lines · 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 position: relative;
14 /* border: 1px solid gray; */
15}
16
17#viewer {
18 width: 100%;
19 height: 100%;
20}
21
22#controls-overlay {
23 position: absolute;
24 top: 10px;
25 left: 10px;
26 display: flex;
27 align-items: flex-start;
28 gap: 32px;
29 padding: 10px;
30 z-index: 10;
31 font-family: system-ui;
32}
33
34.controls-column {
35 display: flex;
36 flex-direction: column;
37 gap: 8px;
38}
39
40#viewSelector {
41 padding-left: 4px;
42}
43
44.view-option {
45 display: flex;
46 align-items: center;
47 gap: 8px;
48}
49
50.view-option label {
51 margin-right: 0;
52 white-space: nowrap;
53 min-width: 120px;
54}
55
56.view-option select,
57.view-option input[type="range"] {
58 color: var(--qdk-host-foreground);
59 background-color: var(--qdk-host-background);
60}
61
62#isovalSlider {
63 width: 100px;
64 outline: none;
65}
66
67.data-overlay-row {
68 display: flex;
69 gap: 8px;
70}
71
72.data-overlay-key {
73 min-width: 80px;
74 font-weight: normal;
75 white-space: nowrap;
76}
77
78.data-overlay-value {
79 font-variant-numeric: tabular-nums;
80 white-space: nowrap;
81}
82
83#isovalInput {
84 width: 64px;
85}
86