Guest User

Untitled

a guest
Jul 23rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.47 KB | None | 0 0
  1. @font-face {
  2. font-family: 'SF UI Display';
  3. src: url('../fonts/SFUIDisplay-Medium.eot');
  4. src: local('SF UI Display Medium'), local('SFUIDisplay-Medium'),
  5. url('../fonts/SFUIDisplay-Medium.eot?#iefix') format('embedded-opentype'),
  6. url('../fonts/SFUIDisplay-Medium.woff') format('woff'),
  7. url('../fonts/SFUIDisplay-Medium.ttf') format('truetype');
  8. font-weight: 500;
  9. font-style: normal;
  10. }
  11. @font-face {
  12. font-family: 'SF UI Display';
  13. src: url('../fonts/SFUIDisplay-Light.eot');
  14. src: local('SF UI Display Light'), local('SFUIDisplay-Light'),
  15. url('../fonts/SFUIDisplay-Light.eot?#iefix') format('embedded-opentype'),
  16. url('../fonts/SFUIDisplay-Light.woff') format('woff'),
  17. url('../fonts/SFUIDisplay-Light.ttf') format('truetype');
  18. font-weight: 300;
  19. font-style: normal;
  20. }
  21. @font-face {
  22. font-family: 'SF UI Display';
  23. src: url('../fonts/SFUIDisplay-Heavy.eot');
  24. src: local('SF UI Display Heavy'), local('SFUIDisplay-Heavy'),
  25. url('../fonts/SFUIDisplay-Heavy.eot?#iefix') format('embedded-opentype'),
  26. url('../fonts/SFUIDisplay-Heavy.woff') format('woff'),
  27. url('../fonts/SFUIDisplay-Heavy.ttf') format('truetype');
  28. font-weight: 900;
  29. font-style: normal;
  30. }
  31. @font-face {
  32. font-family: 'SF UI Display';
  33. src: url('../fonts/SFUIDisplay-Bold.eot');
  34. src: local('SF UI Display Bold'), local('SFUIDisplay-Bold'),
  35. url('../fonts/SFUIDisplay-Bold.eot?#iefix') format('embedded-opentype'),
  36. url('../fonts/SFUIDisplay-Bold.woff') format('woff'),
  37. url('../fonts/SFUIDisplay-Bold.ttf') format('truetype');
  38. font-weight: bold;
  39. font-style: normal;
  40. }
  41. body {
  42. width: 600px;
  43. margin: 0 auto;
  44. font-family: 'SF UI Display Light', sans-serif;
  45. }
  46. select, input, textarea {
  47. outline: none;
  48. }
  49.  
  50. /* Header */
  51. header {
  52. height: 120px;
  53. background: linear-gradient(45deg, #6520ff, #32266e);
  54. padding: 10px 0 25px;
  55. }
  56. header img {
  57. width: 120px;
  58. display: block;
  59. margin: 0 auto;
  60. }
  61. header h1 {
  62. font-size: 20px;
  63. color: #f6bd2c;
  64. text-align: center;
  65. }
  66. /* Header */
  67.  
  68. /* Index */
  69. main {
  70. padding-top: 30px;
  71. }
  72. main .row {
  73. width: 510px;
  74. margin: 0 auto;
  75. padding: 0;
  76. border-bottom: 1px solid #f7d470;
  77. }
  78. p.title {
  79. font-family: 'SF UI Display Bold', sans-serif;
  80. font-size: 16px;
  81. color: #2f2861;
  82. font-weight: bold;
  83. margin-bottom: 0;
  84. }
  85. p.description {
  86. font-family: 'SF UI Display Regular', sans-serif;
  87. font-size: 16px;
  88. color: #2f2861;
  89. margin-bottom: 25px;
  90. text-align: justify;
  91. }
  92. ul li {
  93. font-family: 'SF UI Display Regular', sans-serif;
  94. font-size: 16px;
  95. color: #2f2861;
  96. }
  97. ul {
  98. margin-bottom: 25px;
  99. lighting-color: #f8d674;
  100. padding-left: 15px;
  101. }
  102. p.small {
  103. font-family: 'SF UI Display Regular', sans-serif;
  104. font-size: 12px;
  105. color: #2f2861;
  106. text-align: center;
  107. margin-bottom: 25px;
  108. }
  109. .open-account {
  110. display: block;
  111. margin: 0 auto;
  112. width: 250px;
  113. background: #6420ff;
  114. border: none;
  115. color: #fff;
  116. font-weight: bold;
  117. box-shadow: 0 5px 10px 0 #ccc;
  118. }
  119. .open-account:hover {
  120. background: #9064f3;
  121. color: #fff;
  122. }
  123. li {
  124. list-style-type: none; /* Прячем исходные маркеры */
  125. }
  126. li:before {
  127. color: #f8d674;
  128. content: "\2022";
  129. padding-right: 5px;
  130. }
  131. p.description span {
  132. text-decoration: underline;
  133. font-family: 'SF UI Display Bold', sans-serif;
  134. font-weight: bold;
  135. }
  136. p.description span.list {
  137. text-decoration: none;
  138. }
  139. .table {
  140. width: 100%;
  141. min-height: 200px;
  142. background: linear-gradient(45deg, #e4be52, #f6d26a);
  143. border-radius: 10px;
  144. }
  145. .table td {
  146. font-family: 'SF UI Display Regular', sans-serif;
  147. font-size: 14px;
  148. color: #2f2861;
  149. padding: 5px 15px!important;
  150. width: 50%;
  151. border: 1px solid #fff;
  152. }
  153. .table tr:first-child td {
  154. border-top: none;
  155. }
  156. .table td.bold {
  157. font-family: 'SF UI Display Bold', sans-serif;
  158. font-weight: bold;
  159. }
  160. .table td.bold.underline {
  161. text-decoration: underline;
  162. }
  163. /* Index */
  164.  
  165. /* Footer */
  166. footer {
  167. padding-top: 25px;
  168. }
  169. footer .row {
  170. width: 510px;
  171. margin: 0 auto;
  172. padding: 0;
  173. }
  174. footer p {
  175. font-family: 'SF UI Display Regular', sans-serif;
  176. font-size: 12px;
  177. color: #2f2861;
  178. margin-bottom: 25px;
  179. text-align: justify;
  180. }
  181. footer p span {
  182. text-decoration: underline;
  183. font-family: 'SF UI Display Bold', sans-serif;
  184. font-weight: bold;
  185. }
  186. p.copyright {
  187. text-align: center;
  188. margin-top: 15px;
  189. }
  190. footer img {
  191. width: 350px;
  192. display: block;
  193. margin: 0 auto;
  194. }
  195. /* Footer */
Add Comment
Please, Sign In to add comment