Guest User

Untitled

a guest
May 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. /*-------------------------
  2. | PORTFOLIO |
  3. -------------------------*/
  4.  
  5. /* 4 КНОПКИ */
  6.  
  7. .port-butt {
  8. display: inline-block;
  9. padding: 8px 20px;
  10. margin: 70px 10px 50px 0;
  11. border: 1px solid #00897b;
  12. }
  13.  
  14. .portfolio .active {
  15. background-color: #00897b;
  16. color: white;
  17. }
  18.  
  19. .port-butt:hover {
  20. background-color: #00897b;
  21. color: white;
  22. transition: all 0.3s;
  23. }
  24.  
  25. /* КОНЕЦ КНОПОК */
  26.  
  27. /* Оформление контента*/
  28.  
  29. .bock /* bock - типа блок :) */ {
  30. width: 370px;
  31. height: 350px;
  32. margin: 10px;
  33. }
  34.  
  35.  
  36. .bock:hover .act /* Ховер блока (bock), с появлением нового контента */ {
  37. transition: all 0.6s;
  38. opacity: 1;
  39. }
  40.  
  41. /* Оформление появляющегося контента */
  42.  
  43. .act {
  44. opacity: 0;
  45. width: 370px;
  46. height: 350px;
  47. margin: 0;
  48. background-color: rgba( 0, 0, 0, 0.623);
  49. transition: all 1s;
  50. color: white;
  51. font-weight: 800;
  52. }
  53.  
  54. .act h4 {
  55. padding-top: 145px;
  56. margin: 0;
  57. }
  58.  
  59. .act p {
  60. margin: 0;
  61. padding-top: 5px;
  62. }
  63.  
  64. /* конец появляющегося контента*/
  65.  
  66.  
  67. /* CSS GRID для блока portfolio*/
  68. .block-photo {
  69. display: grid;
  70. grid-template-areas: "rig rig1 rig2" "rig3 rig4 rig5"
  71. }
  72.  
  73. .block-whatch {
  74. background-color: aqua;
  75. grid-area: rig;
  76. }
  77.  
  78. .block-whatch1 {
  79. background-color: aqua;
  80. grid-area: rig1;
  81. }
  82.  
  83. .block-whatch2 {
  84. background-color: aqua;
  85. grid-area: rig2;
  86. }
  87.  
  88. .block-whatch3 {
  89. background-color: aqua;
  90. grid-area: rig3;
  91. }
  92.  
  93. .block-whatch4 {
  94. background-color: aqua;
  95. grid-area: rig4;
  96. }
  97.  
  98. .block-whatch5 {
  99. background-color: aqua;
  100. grid-area: rig5;
  101. }
  102.  
  103. /* Конец css grid*/
  104.  
  105. /*Конец оформления контента*/
  106.  
  107. /* END PORTFOLIO*/
Add Comment
Please, Sign In to add comment