Advertisement
Guest User

og banners

a guest
Oct 31st, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. #carousel_inner {
  2. float: left;
  3. height: 174px;
  4. width: 1098px;
  5. position: relative;
  6. left: -70px;
  7. overflow: hidden;
  8. background: transparent;
  9. margin-top: -30px;
  10. }
  11.  
  12. #carousel_ul {
  13. position:relative;
  14. left:-210px;
  15. list-style-type: none;
  16. margin: 0px;
  17. padding: 0px;
  18. width:9999px; /* important */
  19. /* non-important styling bellow */
  20. padding-bottom:0px;
  21. }
  22.  
  23. #carousel_ul li {
  24. float: left;
  25. width: 450px;
  26. padding: 0px;
  27. height: 174px;
  28. background: transparent;
  29. margin-top: 0px;
  30. margin-bottom: 0px;
  31. margin-left: 1.5px;
  32. margin-right: 2px;
  33. position: relative;
  34. left: 75px;
  35. }
  36.  
  37. #carousel_ul li img {
  38. cursor: pointer;
  39. cursor: hand;
  40. width: 450px;
  41. height: 172px;
  42. border: 1px solid #E0E0E0;
  43. pointer-events: none;
  44. }
  45.  
  46. #carousel_ul li:active {
  47. opacity: 0.9;
  48. }
  49.  
  50. #left_scroll img, #right_scroll img {
  51. cursor: pointer;
  52. /* border: 1px solid #FFFFFF; */
  53. border-top-left-radius: 20px;
  54. border-top-right-radius: 20px;
  55. border-bottom-left-radius: 20px;
  56. border-bottom-right-radius: 20px;
  57. background-color: rgba(255, 255, 255, 1);
  58. opacity: 0.6;
  59. }
  60.  
  61. #left_scroll img:active, #right_scroll img:active {
  62. opacity: 0.5;
  63. }
  64.  
  65. #right_scroll img {
  66. padding-left: 3px;
  67. padding-top: 2px;
  68. padding-bottom: 2px;
  69. position: absolute;
  70. top: 98px;
  71. right: 12px;
  72. -webkit-user-drag: none;
  73. user-drag: none;
  74. }
  75.  
  76. #left_scroll img {
  77. padding-right: 3px;
  78. padding-bottom: 2px;
  79. position: absolute;
  80. top: 100px;
  81. left: -60px;
  82. -webkit-user-drag: none;
  83. user-drag: none;
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement