mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-13 17:14:02 +03:00
14 lines
385 B
CSS
14 lines
385 B
CSS
:root {
|
|
--non-monospace: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
--monospace: Consolas, Menlo, monospace;
|
|
font-size: 14px;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--non-monospace);
|
|
}
|
|
|
|
.red { background-color: #ffcdd2; }
|
|
.green { background-color: #a5d6a7; }
|
|
.blue { background-color: #64b5f6; }
|