microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
iadavis/pipeline-issue-debugging

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/playground/src/kataViewer.css

53lines · modecode

1/* Copyright (c) Microsoft Corporation.
2 Licensed under the MIT License. */
3
4@import "qsharp-lang/qdk-theme.css";
5
6body {
7 font-family: system-ui, "Segoe UI", sans-serif;
8 color: var(--qdk-host-foreground);
9 background-color: var(--qdk-host-background);
10 margin: 0;
11}
12table {
13 border-spacing: 0;
14 border-collapse: collapse;
15 vertical-align: middle;
16}
17table tr:nth-child(2n) {
18 background-color: var(--qdk-background-accent);
19}
20th,
21td {
22 border: 0.5px solid gray;
23 padding: 8px;
24}
25.nav {
26 /* background: lightblue; */
27 width: 320px;
28 height: 100vh;
29 padding-top: 16px;
30 position: fixed;
31 overflow-y: auto;
32 background-color: var(--qdk-host-background);
33}
34.content {
35 margin-left: 330px;
36 padding: 16px;
37 width: calc(100% - 362px);
38 /* height: 100vh; */
39 overflow-y: auto;
40 /* background: lightcyan; */
41}
42.nav-item {
43 font-size: 1.1em;
44 padding: 8px;
45 color: var(--qdk-host-foreground);
46}
47.nav-item:hover {
48 background-color: var(--qdk-background-accent);
49}
50.nav-selected {
51 font-weight: bold;
52 background-color: var(--qdk-menu-fill-selected);
53}
54