carousel.css 759 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .nokia-carousel, .nokia-carousel-container {
  2. position: relative;
  3. overflow: hidden;
  4. margin: 0 auto;
  5. }
  6. .nokia-carousel {
  7. padding: 4px 0;
  8. }
  9. .nokia-carousel-arrow {
  10. position: absolute;
  11. top: 0px;
  12. }
  13. .nokia-carousel-arrow-focused {
  14. border: 1px solid #CCCCCC;
  15. }
  16. .nokia-carousel-arrow-left {
  17. background: url(images/arrow-left.png) no-repeat 25% 50%;
  18. left: 0;
  19. }
  20. .nokia-carousel-arrow-right {
  21. background: url(images/arrow-right.png) no-repeat 75% 50%;
  22. right: 0;
  23. }
  24. .nokia-carousel-arrow-left:hover {
  25. background-position: 25% 50%;
  26. left: 0;
  27. }
  28. .nokia-carousel-arrow-right:hover {
  29. background-position: 75% 50%;
  30. right: 0;
  31. }
  32. .nokia-carousel-item {
  33. float: left;
  34. }
  35. .nokia-carousel-item img {
  36. margin: 0 4px;
  37. }