style.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. main.mat {
  99. width: 90%;
  100. #charts > svg {
  101. display: inline-block;
  102. }
  103. }
  104. #loader {
  105. display: none;
  106. width: 48px;
  107. height: 48px;
  108. margin: 0 auto;
  109. border-radius: 50%;
  110. position: relative;
  111. border: 3px solid;
  112. border-color: #ccc #ccc transparent transparent;
  113. animation: rotation 1s linear infinite;
  114. }
  115. #loader::after {
  116. content: '';
  117. position: absolute;
  118. left: 0;
  119. right: 0;
  120. top: 0;
  121. bottom: 0;
  122. margin: auto;
  123. border: 3px solid;
  124. border-color: transparent transparent #c8c #c8c;
  125. width: 24px;
  126. height: 24px;
  127. border-radius: 50%;
  128. animation: rotationBack 0.5s linear infinite;
  129. transform-origin: center center;
  130. }
  131. @keyframes rotation {
  132. 0% {
  133. transform: rotate(0deg);
  134. }
  135. 100% {
  136. transform: rotate(360deg);
  137. }
  138. }
  139. @keyframes rotationBack {
  140. 0% {
  141. transform: rotate(0deg);
  142. }
  143. 100% {
  144. transform: rotate(-360deg);
  145. }
  146. }
  147. *[data-tooltip] {
  148. text-decoration: underline dashed;
  149. cursor: help;
  150. }
  151. [popover="hint"] {
  152. white-space: pre-wrap;
  153. inset: unset;
  154. max-width: 400px;
  155. padding: 0.5em 0.7em;
  156. color: inherit;
  157. background-color: #222;
  158. border: none;
  159. opacity: 0.9;
  160. }