| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- @font-face {
- font-family: 'Metrophobic';
- font-style: normal;
- font-weight: 400;
- src: url('metrophobic-v23-latin-regular.woff2') format('woff2');
- }
- * {
- box-sizing: border-box;
- }
- body {
- background-color: #000;
- color: #aaa;
- font: 18px Metrophobic, sans-serif;
- }
- a:link, a:visited, a:active {
- color: #58a;
- text-decoration: none;
- }
- a:hover {
- color: #5ad;
- }
- main {
- width: 900px;
- margin: 10px auto;
- padding: 10px 50px 25px;
- background-color: #111;
- box-shadow: 0 0 5px #222;
- table {
- td, th {
- padding: 0.25em 0.5em;
- }
- tbody {
- td:nth-child(1),
- td:nth-child(2) {
- font-family: inherit;
- text-align: inherit;
- }
- td {
- font-family: monospace;
- text-align: right;
- }
- }
- }
- }
- @media (prefers-color-scheme: light) {
- body {
- background-color: #fff;
- color: #555;
- }
- a:link, a:visited, a:active {
- color: #358;
- }
- a:hover {
- color: #38b;
- }
- main {
- background-color: #eee;
- box-shadow: 0 0 5px #ddd;
- }
- }
|