Advertisement
Fuukoi

Untitled

Nov 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. /* —- CAROUSEL —– */
  2. #carousel{
  3. background-color: transparent;
  4. width: 700px;
  5. height:354px;
  6. margin: 0 auto;
  7. padding: 20px 0px 10px 0px;
  8. position:relative;
  9. border-top: 0px solid #FEE7D4;
  10. border-right: 0px dashed #FEE7D4;
  11. border-left: 0px dashed #FEE7D4;
  12. border-bottom: 0px dashed #FEE7D4;
  13. display:block;
  14. }
  15. #carousel .container{
  16. position:absolute;
  17. left:35px;
  18. margin: 50px 0px 0px 0px;
  19. width: 700px;
  20. height:200px;
  21. overflow:hidden;
  22. border: 0px solid #cccccc;
  23. }
  24. #carousel img {
  25. width: 187px;
  26. height: 187px;
  27. }
  28. #carousel #previous_button{
  29. position:absolute;
  30. margin: 50px 0px 0px 5px;
  31. width:31px;
  32. height:210px;
  33. background: url(https://lh3.googleusercontent.com/-l8_dhVk0Wso/VvNhuEGK2fI/AAAAAAAAEDc/4DpBg2dBrFI2TpzyrqKQIDYk8FRvXww9gCCo/s23-Ic42/SetaEsquerda.png) no-repeat center;
  34. z-index:100;
  35. cursor:pointer;
  36. border-right:0px solid #ccc}
  37. #carousel #previous_button:hover{
  38. background: url(https://lh3.googleusercontent.com/-0oTDcE1pZns/VvNhupaPdzI/AAAAAAAAEDk/czfX0w3LraUXjGNBuhJ8I3TEdn8Ldjf-QCCo/s23-Ic42/SetaEsquerdaHover.png) no-repeat center}
  39. #carousel #next_button{
  40. position:absolute;
  41. right:0;
  42. margin: 50px 5px 0px 0px;
  43. width:31px;
  44. height:210px;
  45. background: url(https://lh3.googleusercontent.com/-VTnP2gpbXX8/VvNhuF5rxwI/AAAAAAAAEDc/MoYqBx7AZJsMRiFv8Az0AlrE3JU3bk6GQCCo/s23-Ic42/SetaDireita.png) no-repeat center;z-index:100;cursor:pointer;border-left:0px solid #ccc}
  46. #carousel #next_button:hover {background: url(https://lh3.googleusercontent.com/-SF-5nNLG408/VvNhuEy8grI/AAAAAAAAEDk/W2wf3Mo1ZXcGvs_Hz5m5IyFdaG0RMS9ygCCo/s23-Ic42/SetaDireitaHover.png) no-repeat center}
  47. #carousel ul{width:100000px;position:relative;margin-top:10px}
  48. #carousel ul li{
  49. background:transparent url() repeat-x top;
  50. display:inline;
  51. float:left;
  52. text-align:center;
  53. font-size: 15px;
  54. font-family: ‘Arial';
  55. font-weight: normal;
  56. line-height:1.2em;
  57. border:0px solid #ccc;
  58. width: 200px;
  59. margin:0 4px 20px 0px;
  60. padding:6px;
  61. }
  62. #carousel ul li:hover{filter:alpha(opacity=75);opacity:.75;}
  63. #carousel ul li a.slider_title{
  64. display:none;
  65. margin-top:5px;
  66. text-decoration: none;
  67. }
  68. #carousel ul li a.slider_title:hover{color:#A7725D}
  69. #carousel a img{display:block;background:transparent;margin-top:0; text-decoration: none;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement