microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
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 | |
| 11 | html { |
| 12 | box-sizing: border-box; |
| 13 | font-size: 16px; |
| 14 | } |
| 15 | |
| 16 | .language-qsharp { |
| 17 | line-height: 125%; |
| 18 | } |
| 19 | pre: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 | |