style.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. form {
  23. display: flex;
  24. flex-direction: column;
  25. align-items: flex-start;
  26. line-height: 2;
  27. }
  28. input, select {
  29. background-color: #171120;
  30. color: inherit;
  31. font-family: inherit;
  32. padding: 4px;
  33. border: 1px solid #888;
  34. }
  35. input[type="checkbox"] {
  36. accent-color: #f70;
  37. }
  38. main, footer {
  39. width: 900px;
  40. margin: 10px auto;
  41. background-color: #111;
  42. }
  43. main {
  44. padding: 40px 50px;
  45. }
  46. footer {
  47. padding: 25px 50px;
  48. margin-bottom: 50px;
  49. font-size: 16px;
  50. }
  51. table {
  52. width: 100%;
  53. margin-top: 1em;
  54. border-collapse: collapse;
  55. th {
  56. white-space: no-wrap;
  57. }
  58. td {
  59. font-family: monospace;
  60. text-align: right;
  61. border-top: 1px solid #222;
  62. }
  63. }
  64. table.buy {
  65. td:nth-child(1) {
  66. font-family: inherit;
  67. text-align: inherit;
  68. }
  69. td.red {
  70. color: #c66;
  71. }
  72. }
  73. table.roi {
  74. td:nth-child(1),
  75. td:nth-child(2) {
  76. font-family: inherit;
  77. text-align: inherit;
  78. }
  79. }
  80. *[data-tooltip] {
  81. text-decoration: underline dashed;
  82. cursor: help;
  83. }
  84. [popover="hint"] {
  85. inset: unset;
  86. max-width: 320px;
  87. padding: 0.5em 0.7em;
  88. color: inherit;
  89. background-color: #222;
  90. border: none;
  91. opacity: 0.9;
  92. }