microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.18.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/pip/src/state_header_template.html

41lines · modecode

1<table class="qs-stateTable">
2 <style>
3 .qs-stateTable thead tr {{
4 background-color: var(
5 --vscode-list-hoverBackground,
6 var(--jp-layout-color1, inherit)
7 );
8 }}
9 .qs-stateTable th {{
10 text-align: left;
11 border: none;
12 }}
13 .qs-stateTable tbody {{
14 pointer-events: none;
15 }}
16 .qs-stateTable tbody td {{
17 text-align: left;
18 border: none;
19 }}
20 .qs-stateTable tbody td span {{
21 display: inline-block;
22 }}
23 .qs-stateTable tbody tr:nth-child(even) {{
24 background-color: var(
25 --vscode-list-hoverBackground,
26 var(--jp-layout-color1, inherit)
27 );
28 }}
29 </style>
30 <thead>
31 <tr>
32 <th>Basis State<br />(|𝜓₁…𝜓ₙ⟩)</th>
33 <th>Amplitude</th>
34 <th>Measurement Probability</th>
35 <th colspan="2">Phase</th>
36 </tr>
37 </thead>
38 <tbody>
39 {}
40 </tbody>
41</table>
42