diff options
Diffstat (limited to 'src/index.css')
-rw-r--r-- | src/index.css | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/src/index.css b/src/index.css deleted file mode 100644 index a55d276..0000000 --- a/src/index.css +++ /dev/null @@ -1,62 +0,0 @@ -:root { - font-family: sans-serif; -} - -@media screen { - - body { - max-width: 920px; - margin: auto; - padding: 0.5rem; - } - - :any-link { - color: inherit; - text-decoration: underline; - } - - .menu :any-link { - text-decoration: inherit; - } - - .menu ul { - background: darkred; - color: white; - padding: 1rem; - font-size: 1rem; - } - - .menu li { - display: inline; - margin-right: 1rem; - padding-left: 0rem; - padding-right: 0rem; - } - - .err { - color: darkred; - } - - @media (prefers-color-scheme: dark) { - :root { - background: black; - color: white; - } - - .menu ul { - background: red; - } - - .err { - color: red; - } - - } -} - -@media print { - header,nav,footer{ - display:none; - } -} - |