style.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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 {
  85. h2 {
  86. margin-bottom: 4px;
  87. }
  88. section.xit-act {
  89. margin-top: 1em;
  90. textarea {
  91. height: 26px;
  92. }
  93. textarea, input {
  94. vertical-align: middle;
  95. }
  96. }
  97. }
  98. #loader {
  99. display: none;
  100. width: 48px;
  101. height: 48px;
  102. margin: 0 auto;
  103. border-radius: 50%;
  104. position: relative;
  105. border: 3px solid;
  106. border-color: #ccc #ccc transparent transparent;
  107. animation: rotation 1s linear infinite;
  108. }
  109. #loader::after {
  110. content: '';
  111. position: absolute;
  112. left: 0;
  113. right: 0;
  114. top: 0;
  115. bottom: 0;
  116. margin: auto;
  117. border: 3px solid;
  118. border-color: transparent transparent #c8c #c8c;
  119. width: 24px;
  120. height: 24px;
  121. border-radius: 50%;
  122. animation: rotationBack 0.5s linear infinite;
  123. transform-origin: center center;
  124. }
  125. @keyframes rotation {
  126. 0% {
  127. transform: rotate(0deg);
  128. }
  129. 100% {
  130. transform: rotate(360deg);
  131. }
  132. }
  133. @keyframes rotationBack {
  134. 0% {
  135. transform: rotate(0deg);
  136. }
  137. 100% {
  138. transform: rotate(-360deg);
  139. }
  140. }
  141. *[data-tooltip] {
  142. text-decoration: underline dashed;
  143. cursor: help;
  144. }
  145. [popover="hint"] {
  146. white-space: pre-wrap;
  147. inset: unset;
  148. max-width: 400px;
  149. padding: 0.5em 0.7em;
  150. color: inherit;
  151. background-color: #222;
  152. border: none;
  153. opacity: 0.9;
  154. }