microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
jan

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/playground/src/main.css

24lines · modeblame

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