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 · modepreview

<table class="qs-stateTable">
  <style>
    .qs-stateTable thead tr {{
      background-color: var(
        --vscode-list-hoverBackground,
        var(--jp-layout-color1, inherit)
      );
    }}
    .qs-stateTable th {{
      text-align: left;
      border: none;
    }}
    .qs-stateTable tbody {{
      pointer-events: none;
    }}
    .qs-stateTable tbody td {{
      text-align: left;
      border: none;
    }}
    .qs-stateTable tbody td span {{
      display: inline-block;
    }}
    .qs-stateTable tbody tr:nth-child(even) {{
      background-color: var(
        --vscode-list-hoverBackground,
        var(--jp-layout-color1, inherit)
      );
    }}
  </style>
  <thead>
    <tr>
      <th>Basis State<br />(|𝜓₁…𝜓ₙ⟩)</th>
      <th>Amplitude</th>
      <th>Measurement Probability</th>
      <th colspan="2">Phase</th>
    </tr>
  </thead>
  <tbody>
    {}
  </tbody>
</table>