Advertisement
swte

Sample CSS for Server Side Script (Revslider Full Height Slider)

May 10th, 2021
1,098
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.42 KB | None | 0 0
  1. rs-module-wrap, rs-module, rs-slides {
  2.     visibility: visible;
  3.     width: 100%;
  4.     height: 100%;
  5. }
  6.  
  7. rs-module-wrap {
  8.     height: 100vh;
  9. }
  10.  
  11. .pseudo-slide-wrapper {
  12.     height: 100vh;
  13.     overflow: hidden;
  14.     position: absolute;
  15. }
  16.  
  17. .pseudo-slide {
  18.   height: auto;
  19.   max-width: none;
  20.   width: 100%;
  21. }
  22.  
  23. @media (max-width: 768px){
  24.     .pseudo-slide {
  25.       height: 100%;
  26.       width: auto;
  27.       transform: translateX(-25%);
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement