Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.94 KB | None | 0 0
  1. * {
  2. box-sizing: border-box;
  3. }
  4.  
  5. body {
  6. margin: 0 auto;
  7. font-family: Roboto Slab, serif;
  8. }
  9.  
  10. .main-header {
  11. width: 100%;
  12. padding: 8px 90px;
  13. position: absolute;
  14. top: 33px;
  15. left: 0;
  16. font-size: 18px;
  17. background: #010101;
  18. }
  19.  
  20. .main-header > div {
  21. display: inline-block;
  22. vertical-align: middle;
  23. }
  24.  
  25. .main-header__brand {
  26. text-decoration: none;
  27. color: #FFFFFF;
  28. font-weight: bold;
  29. margin: 50px;
  30. font-size: 26px;
  31. }
  32.  
  33. .main-nav {
  34. display: inline-block;
  35. text-align: right;
  36. vertical-align: middle;
  37. width: calc(100% - 200px);
  38. }
  39.  
  40. .main-nav__items {
  41. list-style: none;
  42. margin: 0;
  43. padding: 0;
  44. }
  45.  
  46. .main-nav__item {
  47. display: inline-block;
  48. margin: 0 16px;
  49. }
  50.  
  51. .main-nav__item a {
  52. text-decoration: none;
  53. color: white;
  54. font-weight: bold;
  55. }
  56.  
  57. .main-nav__item a:hover,
  58. .main-nav__item a:active {
  59. margin: 0 auto;
  60. background: #890A02;
  61. padding: 5px 15px;
  62. border-radius: 5px;
  63. }
  64.  
  65. .section-main__home {
  66. color: white;
  67. background: #890A02;
  68. text-align: center;
  69. padding: 150px;
  70. }
  71.  
  72. h1 {
  73. font-size: 48px;
  74. margin-top: 230px;
  75. }
  76.  
  77. .section-main__home > p {
  78. color: #D19292;
  79. padding: 10px 0 60px 0;
  80. margin-bottom: 40px;
  81. }
  82.  
  83. .section-main__home > a {
  84. text-decoration: none;
  85. color: #890A02;
  86. background: #FFF;
  87. font-size: 18px;
  88. font-weight: bold;
  89. border-radius: 50px;
  90. padding: 5px 15px;
  91. }
  92.  
  93. .skills {
  94. text-align: center;
  95. font-weight: bold;
  96. font-size: 36px;
  97. margin: 110px;
  98. }
  99.  
  100. .section-main__skills {
  101. text-align: center;
  102. }
  103.  
  104. .section-main__skill {
  105. display: inline-block;
  106. width: 30%;
  107. text-align: center;
  108. vertical-align: top;
  109. font-size: 18px;
  110. }
  111.  
  112. .section-main__circle0 {
  113. margin: 0 auto;
  114. width: 50%;
  115. height: 250px;
  116. border-radius: 50%;
  117. background: #E44D26;
  118. }
  119.  
  120. .section-main__circle1 {
  121. margin: 0 auto;
  122. width: 50%;
  123. height: 250px;
  124. border-radius: 50%;
  125. background: #F1BF26;
  126. }
  127.  
  128. .section-main__circle2 {
  129. margin: 0 auto;
  130. width: 50%;
  131. height: 250px;
  132. border-radius: 50%;
  133. background: #379AD6;
  134. }
  135.  
  136. .section-main__skill p {
  137. display: inline-block;
  138. width: 50%;
  139. }
  140.  
  141. h3 {
  142. margin-top: 50px;
  143. margin-bottom: 0;
  144. font-size: 28px;
  145. }
  146.  
  147. .section-main__rectangle {
  148. margin: 170px 0;
  149. width: 100%;
  150. height: 50px;
  151. background: #890A02;
  152. }
  153. .section-main__rectangle {
  154. margin: 160px 0;
  155. width: 100%;
  156. height: 50px;
  157. background: #890A02;
  158. }
  159. h2 {
  160. font-size: 36px;
  161. text-align: center;
  162. }
  163. .section-projects__contentcss {
  164. margin: 100px 50px;
  165. text-align: center;
  166. }
  167.  
  168. .section-projects__imagecss {
  169. width: 35%;
  170. display: inline-block;
  171. vertical-align: middle;
  172. margin: 0 50px;
  173. }
  174.  
  175. .imagecss {
  176. vertical-align: top;
  177. margin: 20px;
  178. }
  179.  
  180. .section-projects__info {
  181. text-align: center;
  182. padding: 0;
  183. display: inline-block;
  184. vertical-align: middle;
  185. width: 33%;
  186. }
  187.  
  188. .section-projects__url {
  189. background: #890A02;
  190. color: white;
  191. font-weight: bold;
  192. border-radius: 50px;
  193. padding: 7px 35px;
  194. font-size: 24px;
  195. text-decoration: none;
  196. }
  197.  
  198. .text {
  199. margin: 0 0 40px 0;
  200. font-size: 24px;
  201. vertical-align: bottom;
  202. }
  203.  
  204. .section-projects__contentcs50 {
  205. text-align: center;
  206. margin: 125px 50px 170px 50px;
  207. }
  208.  
  209. .section-projects__imagecs50 {
  210. width: 35%;
  211. display: inline-block;
  212. vertical-align: middle;
  213. margin: 0 50px;
  214. }
  215.  
  216. .imagecs50 {
  217. vertical-align: top;
  218. border: 7px solid black;
  219. }
  220.  
  221. footer {
  222. background: #890A02;
  223. }
  224.  
  225. .footer-items {
  226. background: #890A02;
  227. text-align: center;
  228. margin: 0 80px;
  229. padding: 30px;
  230. border-bottom: 2px solid #fff;
  231. font-weight: bold;
  232. }
  233.  
  234. .footer-item {
  235. display: inline-block;
  236. color: white;
  237. padding: 0 20px;
  238. text-weight: bold;
  239. }
  240.  
  241. footer h4 {
  242. text-align: center;
  243. color: #fff;
  244. background: #890A02;
  245. margin: 0 auto;
  246. padding: 10px 10px 5px 10px;
  247. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement