style.css 1.5 KB

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