Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. html, body {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. font-family: Helvetica, Arial, sans-serif;
  6. }
  7.  
  8. .header__wrapper {
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. height: 70px;
  13. margin: auto;
  14. }
  15.  
  16. .menu__item {
  17. margin-right: 10px;
  18. color: black;
  19. text-decoration: none;
  20. }
  21.  
  22. .menu__item:last-of-type {
  23. margin-right: 0;
  24. }
  25.  
  26. .keyframes {
  27. background-color: #02B341;
  28. color: #fff;
  29. }
  30.  
  31. .keyframes__wrapper {
  32. width: 490px;
  33. margin: auto;
  34. padding: 50px 0;
  35. }
  36.  
  37. .title {
  38. margin: 0;
  39. line-height: 56px;
  40. font-size: 54px;
  41. }
  42.  
  43. .subtitle {
  44. line-height: 19px;
  45. font-size: 14px;
  46. margin-top: 35px;
  47. margin-bottom: 55px;
  48. max-width: 350px;
  49. }
  50.  
  51. .demo {
  52. display: flex;
  53. flex-wrap: wrap;
  54. justify-content: center;
  55. }
  56.  
  57. .demo__item {
  58. box-sizing: border-box;
  59. border: 2px solid white;
  60. border-radius: 50%;
  61. width: 240px;
  62. height: 240px;
  63. margin-right: 10px;
  64. margin-top: 10px;
  65. }
  66.  
  67. .demo__item:nth-of-type(2n) {
  68. margin-right: 0;
  69. }
  70.  
  71. .demo__item:first-of-type, .demo__item:nth-of-type(2) {
  72. margin-top: 0;
  73. }
  74.  
  75. .demo__row {
  76. height: 64px;
  77. }
  78.  
  79. .dotted {
  80. background-color: #EB483F;
  81. color: white;
  82. }
  83.  
  84. .dotted__wrapper {
  85. width: 490px;
  86. margin: auto;
  87. padding: 50px 0;
  88. min-height: 350px;
  89. position: relative;
  90. }
  91.  
  92. .animated {
  93. width: 490px;
  94. height: 350px;
  95. position: absolute;
  96. left: 0;
  97. bottom: 0;
  98. transform: translate(0, 50%);
  99. }
  100.  
  101. .star {
  102. position: absolute;
  103. top: 50%;
  104. left: 50%;
  105. }
  106.  
  107. .star_s {
  108. width: 310px;
  109. height: 310px;
  110. margin-left: -155px;
  111. margin-top: -155px;
  112. }
  113.  
  114. .star_l {
  115. width: 420px;
  116. height: 420px;
  117. margin-left: -210px;
  118. margin-top: -210px;
  119. }
  120.  
  121. .star_m {
  122. width: 420px;
  123. height: 420px;
  124. margin-left: -210px;
  125. margin-top: -210px;
  126. }
  127.  
  128. .dots {
  129. position: absolute;
  130. top: 50%;
  131. left: 50%;
  132. width: 490px;
  133. height: 460px;
  134. margin-top: -245px;
  135. margin-left: -230px;
  136. }
  137.  
  138. .demo__row_xs {
  139. background-image: url(https://pictures.s3.yandex.net/animation_topic/line_xs.svg);
  140. }
  141.  
  142. .demo__row_s {
  143. background-image: url(https://pictures.s3.yandex.net/animation_topic/line_s.svg);
  144. }
  145.  
  146. .demo__row_m {
  147. background-image: url(https://pictures.s3.yandex.net/animation_topic/line_m.svg);
  148. }
  149.  
  150. .demo__row_l {
  151. background-image: url(https://pictures.s3.yandex.net/animation_topic/line_l.svg);
  152. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement