style.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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, footer {
  43. width: 900px;
  44. margin: 10px auto;
  45. background-color: #111;
  46. }
  47. main {
  48. padding: 40px 50px;
  49. }
  50. footer {
  51. padding: 25px 50px;
  52. margin-bottom: 50px;
  53. font-size: 16px;
  54. }
  55. table {
  56. width: 100%;
  57. margin-top: 1em;
  58. border-collapse: collapse;
  59. th {
  60. white-space: no-wrap;
  61. }
  62. td {
  63. font-family: monospace;
  64. text-align: right;
  65. border-top: 1px solid #222;
  66. }
  67. }
  68. main.buy table {
  69. td:nth-child(1) {
  70. font-family: inherit;
  71. text-align: inherit;
  72. }
  73. td.red {
  74. color: #c66;
  75. }
  76. }
  77. main.roi table {
  78. td:nth-child(1),
  79. td:nth-child(2) {
  80. font-family: inherit;
  81. text-align: inherit;
  82. }
  83. }
  84. main.buy section.xit-act {
  85. margin-top: 2em;
  86. textarea {
  87. height: 26px;
  88. }
  89. textarea, input {
  90. vertical-align: middle;
  91. }
  92. }
  93. *[data-tooltip] {
  94. text-decoration: underline dashed;
  95. cursor: help;
  96. }
  97. [popover="hint"] {
  98. inset: unset;
  99. max-width: 320px;
  100. padding: 0.5em 0.7em;
  101. color: inherit;
  102. background-color: #222;
  103. border: none;
  104. opacity: 0.9;
  105. }