Advertisement
Guest User

Untitled

a guest
May 27th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 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. .transform {
  27. background-color: #000;
  28. color: #fff;
  29. }
  30.  
  31. .transform__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: 385px;
  49. }
  50.  
  51. .demo {
  52. display: flex;
  53. flex-wrap: wrap;
  54. justify-content: center;
  55. }
  56.  
  57. .demo__item {
  58. background-color: #202020;
  59. width: 240px;
  60. height: 240px;
  61. margin-right: 10px;
  62. margin-top: 10px;
  63. display: flex;
  64. position: relative;
  65. }
  66.  
  67. .demo__icon {
  68. margin: auto;
  69. }
  70.  
  71. .demo__item:nth-of-type(2n) {
  72. margin-right: 0;
  73. }
  74.  
  75. .demo__item:first-of-type, .demo__item:nth-of-type(2) {
  76. margin-top: 0;
  77. }
  78.  
  79. .demo__item:hover {
  80. background-color: #02B341;
  81. }
  82.  
  83. .demo__item-title {
  84. font-size: 24px;
  85. position: absolute;
  86. bottom: 15px;
  87. left: 15px;
  88. margin: 0;
  89. }
  90.  
  91. .demo__item_translate:hover .demo__icon {
  92. transform: translate(10px, 0);
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement