Advertisement
raselahmed7

SliderCSS | Elementor Class #4

Feb 26th, 2019
590
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.70 KB | None | 0 0
  1.  
  2. /* Slider CSS */
  3.  
  4.  
  5. .single-slide-item .row {
  6.     height: 700px;
  7.     text-align: center;
  8. }
  9.  
  10. .single-slide-item:after {
  11.     position: absolute;
  12.     left: 0;
  13.     top: 0;
  14.     height: 100%;
  15.     width: 100%;
  16.     content: "";
  17.     background: #000;
  18.     opacity: .3;
  19.     z-index: -1;
  20. }
  21.  
  22. .single-slide-item h2 {
  23.     font-size: 100px;
  24.     color: #fff;
  25. }
  26.  
  27. .slide-info {
  28.     position: absolute;
  29.     bottom: 16px;
  30.     left: 0;
  31.     width: 100%;
  32.     z-index: 3;
  33.     text-align: center;
  34.     color: #fff;
  35. }
  36.  
  37. .single-slide-item {
  38.     position: relative;
  39.     background-size: cover;
  40.     background-position: center;
  41.     background-color: #ddd;
  42.     z-index: 2;
  43. }
  44.  
  45. .slide-info h4 {
  46.     font-size: 20px;
  47.     margin-bottom: 5px;
  48. }
  49.  
  50. div.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated {
  51.     padding: 0;
  52. }
  53.  
  54. .slides .slick-arrow {
  55.     position: absolute;
  56.     left: -5px;
  57.     top: 50%;
  58.     z-index: 3;
  59.     background: #000;
  60.     height: 60px;
  61.     width: 60px;
  62.     text-align: center;
  63.     color: #fff;
  64.     line-height: 55px;
  65.     font-size: 20px;
  66.     margin-top: -30px;
  67.     cursor: pointer;
  68. }
  69.  
  70. .slides .slick-arrow.fa-angle-right {
  71.     left: auto;
  72.     right: -5px;
  73. }
  74.  
  75. ul.slick-dots {
  76.     margin: 10px 0 0;
  77.     padding: 0;
  78.     list-style: none;
  79.     text-align: center;
  80. }
  81.  
  82. ul.slick-dots li button {
  83.     display: inline-block;
  84.     height: 10px;
  85.     width: 10px;
  86.     background: #7a7a7a;
  87.     text-indent: -9999px;
  88.     border: none;
  89.     margin: 5px;
  90.     border-radius: 50%;
  91.     padding: 0;
  92.     cursor: pointer;
  93. }
  94.  
  95. ul.slick-dots li {
  96.     display: inline-block;
  97. }
  98.  
  99. ul.slick-dots li.slick-active button {
  100.     background-color: #000;
  101. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement