Advertisement
Guest User

Untitled

a guest
Aug 31st, 2016
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.36 KB | None | 0 0
  1. /* scrollbar background color */
  2. .horizontal-scrollbar-container {
  3.    
  4.     background-color: rgba(0, 0, 0, 0.5);
  5.    
  6. }
  7.  
  8. /* scroller main color */
  9. .horizontal-scrollbar {
  10.    
  11.     background-color: rgba(255, 255, 255, 0.5);
  12.      
  13. }
  14.  
  15. /* transition timing and easing for the movement */
  16. .film-strip {
  17.  
  18.     transition: left 0.5s ease-out;
  19.    
  20. }
  21.  
  22. /* ********************* */
  23. /* no need to edit below */
  24. /* ********************* */
  25.  
  26. .horizontal-scrollbar-container {
  27.    
  28.     position: absolute;
  29.     left: 0;
  30.     bottom: 0;
  31.     z-index: 999;
  32.     width: 100%;
  33.     height: 15px;
  34.    
  35. }
  36.  
  37.  
  38. .horizontal-scrollbar-container div {
  39.  
  40.     position: absolute;
  41.     left: 0;
  42.     top: 0;
  43.     height: 100%;
  44.    
  45. }
  46.  
  47. .horizontal-scrollbar-base {
  48.  
  49.     width: 100%;
  50.    
  51. }
  52.  
  53. .rev_slider {
  54.  
  55.     opacity: 0;
  56.     overflow: hidden !important;
  57.     transition: opacity 0.5s ease-out;
  58.  
  59. }
  60.  
  61. .rev_slider.the-slider-loaded {
  62.  
  63.     opacity: 1;
  64.  
  65. }
  66.  
  67. .rev_slider * {
  68.      
  69.     visibility: visible !important;
  70.     opacity: 1 !important;
  71.        
  72. }
  73.  
  74. .tp-revslider-mainul {
  75.    
  76.     white-space: nowrap !important;
  77.     overflow: visible !important;
  78.     font-size: 0;
  79.  
  80. }
  81.  
  82. .rev_slider_wrapper .rev_slider li.tp-revslider-slidesli {
  83.  
  84.     position: relative !important;
  85.     display: inline-block !important;
  86.     letter-spacing: 0;
  87.      
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement