Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. body {
  2. font-family: 'Cormorant Garamond';
  3. background-color: #FEFEFE;
  4. }
  5.  
  6. .header {
  7. height: 95px;
  8. display: flex;
  9. }
  10.  
  11. .header__link {
  12. margin: auto;
  13. font-size: 28px;
  14. text-decoration: none;
  15. color: #10191E;
  16. }
  17.  
  18. .beginner__project {
  19. width: 636px;
  20. height: 430px;
  21. background-position: center;
  22. background-size: cover;
  23. }
  24.  
  25. .beginner__project_first-code {
  26. background-image: url(https://code.s3.yandex.net/web-code/album.png);
  27. }
  28.  
  29. .beginner__project_design-principles {
  30. background-image: url(https://code.s3.yandex.net/web-code/design.png);
  31. }
  32.  
  33. .beginner {
  34. display: flex;
  35. justify-content: space-around;
  36. flex-wrap: wrap;
  37. margin-bottom: 25px;
  38. }
  39.  
  40. .intern__column {
  41. width: 636px;
  42. height: 557px;
  43. background-size: cover;
  44. background-position: center;
  45. display: flex;
  46. }
  47.  
  48. .intern__column_single-item {
  49. background-image: url(https://pictures.s3.yandex.net/coming_soon_3.png);
  50. }
  51.  
  52. .intern {
  53. display: flex;
  54. flex-direction: row-reverse;
  55. justify-content: space-around;
  56. flex-wrap: wrap;
  57. margin-bottom: 25px;
  58. }
  59.  
  60. .intern__project-block_one-project {
  61. width: 636px;
  62. height: 240px;
  63. background-image: url(https://pictures.s3.yandex.net/coming_soon_4.png);
  64. background-size: cover;
  65. background-position: center;
  66. }
  67.  
  68. .intern__project {
  69. width: 306px;
  70. height: 290px;
  71. background-size: cover;
  72. background-position: center;
  73. }
  74.  
  75. .intern__project_first-project {
  76. background-image: url(https://pictures.s3.yandex.net/coming_soon_5.png);
  77. }
  78.  
  79. .intern__project_second-project {
  80. background-image: url(https://pictures.s3.yandex.net/coming_soon_6.png);
  81. }
  82.  
  83. .intern__project-block_two-projects {
  84. display: flex;
  85. }
  86.  
  87. .intern__column_multi-item {
  88. flex-direction: column-reverse;
  89. justify-content: space-between;
  90. }
  91.  
  92. .intern__project-block {
  93. justify-content: space-between;
  94. }
  95.  
  96. .menu {
  97. display: flex;
  98. justify-content: center;
  99. height: 75px;
  100. align-items: center;
  101. }
  102.  
  103. .pro {
  104. display: flex;
  105. justify-content: space-evenly;
  106. align-items: flex-end;
  107. flex-wrap: wrap;
  108. }
  109.  
  110. .pro-project {
  111. width: 306px;
  112. height: 290px;
  113. background-size: cover;
  114. background-position: center;
  115. }
  116.  
  117. .first-pro-project {
  118. background-image: url(https://pictures.s3.yandex.net/coming_soon_9.png);
  119. order: 3;
  120. align-self: center;
  121. }
  122.  
  123. .second-pro-project {
  124. background-image: url(https://pictures.s3.yandex.net/coming_soon_8.png);
  125. order: 2;
  126. align-self: center;
  127. flex-basis: 636px;
  128. }
  129.  
  130. .third-pro-project {
  131. background-image: url(https://pictures.s3.yandex.net/coming_soon_7.png);
  132. order: 1;
  133. align-self: center;
  134. }
  135.  
  136. .footer {
  137. height: 95px;
  138. display: flex;
  139. }
  140.  
  141. .footer__logo {
  142. width: 145px;
  143. height: 25px;
  144. background-image: url(https://pictures.s3.yandex.net/logo_skills.png);
  145. background-size: contain;
  146. background-repeat: no-repeat;
  147. background-position: center;
  148. margin: auto;
  149. }
  150.  
  151. .main {
  152. max-width: 1330px;
  153. margin: auto;
  154. }
  155.  
  156. .menu__link {
  157. margin-right: 10px;
  158. font-size: 18px;
  159. text-decoration: none;
  160. color: #10191E;
  161. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement