Advertisement
srikat

Untitled

Jan 28th, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. .front-page-3 .display-posts-listing {
  2. display: -webkit-box;
  3. display: -webkit-flex;
  4. display: -ms-flexbox;
  5. display: flex;
  6. -webkit-flex-wrap: wrap;
  7. -ms-flex-wrap: wrap;
  8. flex-wrap: wrap
  9. }
  10. .front-page-3 .listing-item {
  11. position: relative;
  12. float: left;
  13. width: 100%;
  14. margin: 0;
  15. display: -webkit-box;
  16. display: -webkit-flex;
  17. display: -ms-flexbox;
  18. display: flex;
  19. -webkit-box-pack: center;
  20. -webkit-justify-content: center;
  21. -ms-flex-pack: center;
  22. justify-content: center;
  23. -webkit-box-align: center;
  24. -webkit-align-items: center;
  25. -ms-flex-align: center;
  26. align-items: center;
  27. padding: 0
  28. }
  29. .front-page-3 .listing-item:focus .title,
  30. .front-page-3 .listing-item:hover .title {
  31. opacity: 1;
  32. top: 0
  33. }
  34. .front-page-3 .listing-item:focus .image:after,
  35. .front-page-3 .listing-item:hover .image:after {
  36. opacity: .82
  37. }
  38. .front-page-3 .image {
  39. min-width: 100%;
  40. margin: 0;
  41. display: block;
  42. position: relative
  43. }
  44. .front-page-3 .image * {
  45. position: relative;
  46. z-index: 1
  47. }
  48. .front-page-3 .image:after {
  49. content: " ";
  50. display: block;
  51. position: absolute;
  52. top: 0;
  53. bottom: 0;
  54. left: 0;
  55. height: 100%;
  56. width: 100%;
  57. opacity: .82;
  58. background: #3d65ff;
  59. background: -webkit-linear-gradient(left,#7a28ff 0,#00a1ff 100%);
  60. background: linear-gradient(to right,#7a28ff 0,#00a1ff 100%)
  61. }
  62. .front-page-3 .image:after {
  63. content: " ";
  64. display: block;
  65. opacity: 0;
  66. z-index: 2;
  67. pointer-events: none;
  68. -webkit-transition: all .3s ease;
  69. transition: all .3s ease
  70. }
  71. .front-page-3 a,
  72. .front-page-3 img {
  73. display: block;
  74. min-width: 100%;
  75. height: 100%
  76. }
  77. .front-page-3 .title {
  78. position: absolute;
  79. z-index: 3;
  80. margin: auto;
  81. text-align: center;
  82. left: 0;
  83. right: 0;
  84. top: -webkit-calc(100% - 1em);
  85. top: calc(100% - 1em);
  86. bottom: 0;
  87. height: 1em;
  88. color: #fff;
  89. font-size: 20px;
  90. opacity: 0;
  91. pointer-events: none;
  92. -webkit-transition: top .25s;
  93. transition: top .25s
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement