style.scss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. body {
  2. background: #eceff1;
  3. color: rgba(0, 0, 0, 0.87);
  4. font-family: Roboto, Helvetica, Arial, sans-serif;
  5. margin: 0;
  6. padding: 0;
  7. }
  8. #message {
  9. background: white;
  10. max-width: 1000px;
  11. margin: 10px auto 16px;
  12. padding: 17px 24px;
  13. border-radius: 10px;
  14. h1 {
  15. font-size: 22px;
  16. font-weight: 300;
  17. color: rgba(0, 0, 0, 0.6);
  18. margin: 0 0 16px;
  19. }
  20. h2 {
  21. color: #ea5413;
  22. font-weight: bold;
  23. font-size: 30px;
  24. margin: 0 0 8px;
  25. letter-spacing: 1px;
  26. }
  27. p {
  28. line-height: 140%;
  29. }
  30. a {
  31. display: block;
  32. text-align: center;
  33. background: #039be5;
  34. text-transform: uppercase;
  35. text-decoration: none;
  36. color: white;
  37. padding: 16px;
  38. border-radius: 4px;
  39. }
  40. &,
  41. & a {
  42. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  43. }
  44. }
  45. #load {
  46. color: rgba(0, 0, 0, 0.4);
  47. text-align: center;
  48. font-size: 13px;
  49. }
  50. @media (max-width: 600px) {
  51. body,
  52. #message {
  53. margin-top: 0;
  54. background: white;
  55. box-shadow: none;
  56. }
  57. body {
  58. border-top: 16px solid #ff7338;
  59. }
  60. }
  61. table {
  62. margin-top: 10px;
  63. border: 2px solid black;
  64. border-collapse: collapse;
  65. width: 100%;
  66. td {
  67. border: 1px solid black;
  68. &.shrink {
  69. white-space: wrap;
  70. font-size: 19px;
  71. padding: 5px;
  72. background-color: yellow;
  73. }
  74. &.shrink_context {
  75. white-space: wrap;
  76. font-size: 19px;
  77. padding: 5px;
  78. background-color: rgb(0, 255, 106);
  79. }
  80. &.shrink_top {
  81. white-space: nowrap;
  82. background-color: black;
  83. color: white;
  84. font-size: 25px;
  85. }
  86. &.expand {
  87. width: 99%;
  88. white-space: wrap;
  89. font-size: 19px;
  90. padding: 5px;
  91. }
  92. &.expand_top {
  93. width: 99%;
  94. white-space: wrap;
  95. background-color: black;
  96. }
  97. }
  98. tr:hover {
  99. background-color: gray;
  100. }
  101. }
  102. button {
  103. margin: 0 3px;
  104. background-color: #4caf50;
  105. /* Green */
  106. color: white;
  107. padding: 10px 10px;
  108. text-align: center;
  109. text-decoration: none;
  110. display: inline-block;
  111. font-size: 16px;
  112. border: 1px solid transparent;
  113. border-radius: 5px;
  114. -webkit-transition-duration: 0.4s;
  115. letter-spacing: 1px;
  116. /* Safari */
  117. transition-duration: 0.4s;
  118. cursor: pointer;
  119. &:hover {
  120. color: #4caf50;
  121. border: 1px solid #4caf50;
  122. background-color: honeydew;
  123. }
  124. }
  125. img {
  126. margin: 20px 0;
  127. }
  128. .step-container {
  129. display: flex;
  130. flex-direction: column;
  131. align-items: center;
  132. margin: 30px 150px;
  133. @media (max-width: 968px) {
  134. margin: 30px 50px;
  135. }
  136. @media (max-width: 767px) {
  137. & img:first-child {
  138. display: none;
  139. }
  140. }
  141. @media (max-width: 575px) {
  142. margin: 20px 15px;
  143. }
  144. img {
  145. width: 95%;
  146. max-width: 300px;
  147. border-radius: 40px;
  148. image-rendering: -webkit-optimize-contrast;
  149. }
  150. .step-item {
  151. width: 100%;
  152. display: flex;
  153. align-items: center;
  154. justify-content: center;
  155. padding: 10px 50px;
  156. background: #fff9f6;
  157. box-shadow: 3px 3px 10px #ccc;
  158. @media (max-width: 767px) {
  159. flex-direction: column;
  160. padding: 30px 20px;
  161. }
  162. .text {
  163. margin-left: 50px;
  164. display: flex;
  165. flex-direction: column;
  166. align-items: center;
  167. @media (max-width: 767px) {
  168. margin-left: 0;
  169. }
  170. h3 {
  171. margin-top: 0;
  172. font-weight: 800;
  173. font-size: 25px;
  174. letter-spacing: 2px;
  175. @media (max-width: 575px) {
  176. font-size: 22px;
  177. }
  178. }
  179. div {
  180. width: 100%;
  181. border-radius: 15px;
  182. box-shadow: 3px 3px 10px #ccc;
  183. }
  184. img {
  185. width: 3px;
  186. margin: 15px 0;
  187. object-fit: cover;
  188. image-rendering: -webkit-optimize-contrast;
  189. }
  190. & p:first-child {
  191. margin: 0;
  192. padding: 10px 20px;
  193. color: #fff;
  194. background-image: linear-gradient(to right, #d12d9c 0%, #ff7338 100%);
  195. font-size: 20px;
  196. font-weight: bold;
  197. border-radius: 15px 15px 0 0;
  198. }
  199. & p:last-child {
  200. margin: 0;
  201. padding: 10px 20px;
  202. font-size: 14px;
  203. background-color: #fff;
  204. border-radius: 0 0 15px 15px;
  205. letter-spacing: 1px;
  206. }
  207. }
  208. }
  209. }
  210. @media (max-width: 485px) {
  211. #senddm {
  212. margin-top: 10px;
  213. padding: 10px 20px;
  214. }
  215. }