jquery.fancybox-buttons.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. -webkit-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  23. -moz-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  24. box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  25. background: rgb(50,50,50);
  26. background: -moz-linear-gradient(top, rgb(68,68,68) 0%, rgb(52,52,52) 50%, rgb(41,41,41) 50%, rgb(51,51,51) 100%);
  27. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(68,68,68)), color-stop(50%,rgb(52,52,52)), color-stop(50%,rgb(41,41,41)), color-stop(100%,rgb(51,51,51)));
  28. background: -webkit-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
  29. background: -o-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
  30. background: -ms-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
  31. background: linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
  32. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222',GradientType=0 );
  33. }
  34. #fancybox-buttons ul li {
  35. float: left;
  36. margin: 0;
  37. padding: 0;
  38. }
  39. #fancybox-buttons a {
  40. display: block;
  41. width: 30px;
  42. height: 30px;
  43. text-indent: -9999px;
  44. background-image: url('fancybox_buttons.png');
  45. background-repeat: no-repeat;
  46. outline: none;
  47. opacity: 0.8;
  48. }
  49. #fancybox-buttons a:hover {
  50. opacity: 1;
  51. }
  52. #fancybox-buttons a.btnPrev {
  53. background-position: 5px 0;
  54. }
  55. #fancybox-buttons a.btnNext {
  56. background-position: -33px 0;
  57. border-right: 1px solid #3e3e3e;
  58. }
  59. #fancybox-buttons a.btnPlay {
  60. background-position: 0 -30px;
  61. }
  62. #fancybox-buttons a.btnPlayOn {
  63. background-position: -30px -30px;
  64. }
  65. #fancybox-buttons a.btnToggle {
  66. background-position: 3px -60px;
  67. border-left: 1px solid #111;
  68. border-right: 1px solid #3e3e3e;
  69. width: 35px
  70. }
  71. #fancybox-buttons a.btnToggleOn {
  72. background-position: -27px -60px;
  73. }
  74. #fancybox-buttons a.btnClose {
  75. border-left: 1px solid #111;
  76. width: 35px;
  77. background-position: -56px 0px;
  78. }
  79. #fancybox-buttons a.btnDisabled {
  80. opacity : 0.4;
  81. cursor: default;
  82. }