microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
9831093db0098b3a3e55cbadf3929222d7dd4805

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/playground/src/main.css

24lines · modecode

1/* Generic element resets */
2
3*,
4*::before,
5*::after {
6 box-sizing: inherit;
7 margin: 0;
8 padding: 0;
9}
10
11html {
12 box-sizing: border-box;
13 font-size: 16px;
14}
15
16.language-qsharp {
17 line-height: 125%;
18}
19pre:has(code) {
20 background-color: White;
21 border-left: solid DarkBlue;
22 margin: 5px 0px 5px 0px;
23 padding: 0em 0em 0em 0.5em;
24}
25