style.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. @font-face {
  2. font-family: 'Metrophobic';
  3. font-style: normal;
  4. font-weight: 400;
  5. src: url('metrophobic-v23-latin-regular.woff2') format('woff2');
  6. }
  7. * {
  8. box-sizing: border-box;
  9. }
  10. body {
  11. background-color: #000;
  12. color: #aaa;
  13. font: 18px Metrophobic, sans-serif;
  14. }
  15. a:link, a:visited, a:active {
  16. color: #58a;
  17. text-decoration: none;
  18. }
  19. a:hover {
  20. color: #5ad;
  21. }
  22. input {
  23. background-color: #111;
  24. accent-color: #f70;
  25. }
  26. main {
  27. width: 900px;
  28. margin: 10px auto;
  29. padding: 10px 50px 25px;
  30. background-color: #111;
  31. box-shadow: 0 0 5px #222;
  32. table {
  33. width: 100%;
  34. margin-top: 1em;
  35. border-collapse: collapse;
  36. th {
  37. white-space: no-wrap;
  38. }
  39. tbody {
  40. td:nth-child(1),
  41. td:nth-child(2) {
  42. font-family: inherit;
  43. text-align: inherit;
  44. }
  45. td {
  46. font-family: monospace;
  47. text-align: right;
  48. border-top: 1px solid #222;
  49. }
  50. }
  51. }
  52. }
  53. *[data-tooltip] {
  54. text-decoration: underline dashed;
  55. cursor: help;
  56. }
  57. [popover="hint"] {
  58. inset: unset;
  59. max-width: 320px;
  60. padding: 0.5em 0.7em;
  61. color: inherit;
  62. background-color: #222;
  63. border: none;
  64. opacity: 0.9;
  65. }