jquery.fancybox-buttons.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. #fancybox-buttons {
  2. position: fixed;
  3. left: 0;
  4. width: 100%;
  5. z-index: 8050;
  6. }
  7. #fancybox-buttons.top {
  8. top: 10px;
  9. }
  10. #fancybox-buttons.bottom {
  11. bottom: 10px;
  12. }
  13. #fancybox-buttons ul {
  14. display: block;
  15. width: 166px;
  16. height: 30px;
  17. margin: 0 auto;
  18. padding: 0;
  19. list-style: none;
  20. border: 1px solid #111;
  21. border-radius: 3px;
  22. box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  23. background: rgb(50,50,50);
  24. background: linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
  25. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222',GradientType=0 );
  26. }
  27. #fancybox-buttons ul li {
  28. float: left;
  29. margin: 0;
  30. padding: 0;
  31. }
  32. #fancybox-buttons a {
  33. display: block;
  34. width: 30px;
  35. height: 30px;
  36. text-indent: -9999px;
  37. background-color: transparent;
  38. background-image: url('fancybox_buttons.png');
  39. background-repeat: no-repeat;
  40. outline: none;
  41. opacity: 0.8;
  42. }
  43. #fancybox-buttons a:hover {
  44. opacity: 1;
  45. }
  46. #fancybox-buttons a.btnPrev {
  47. background-position: 5px 0;
  48. }
  49. #fancybox-buttons a.btnNext {
  50. background-position: -33px 0;
  51. border-right: 1px solid #3e3e3e;
  52. }
  53. #fancybox-buttons a.btnPlay {
  54. background-position: 0 -30px;
  55. }
  56. #fancybox-buttons a.btnPlayOn {
  57. background-position: -30px -30px;
  58. }
  59. #fancybox-buttons a.btnToggle {
  60. background-position: 3px -60px;
  61. border-left: 1px solid #111;
  62. border-right: 1px solid #3e3e3e;
  63. width: 35px
  64. }
  65. #fancybox-buttons a.btnToggleOn {
  66. background-position: -27px -60px;
  67. }
  68. #fancybox-buttons a.btnClose {
  69. border-left: 1px solid #111;
  70. width: 35px;
  71. background-position: -56px 0px;
  72. }
  73. #fancybox-buttons a.btnDisabled {
  74. opacity : 0.4;
  75. cursor: default;
  76. }