scrollbars.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .sl_header {
  2. position:absolute;
  3. z-index:2;
  4. top:0;
  5. left:0;
  6. width:100%;
  7. font-size:1em;
  8. text-align:center;
  9. }
  10. .sl_wrapper {
  11. position: absolute;
  12. z-index: 1;
  13. top:0;
  14. bottom:0;
  15. left: 0;
  16. right:5%;
  17. width: 100%;
  18. background: #eeeeee;
  19. /*overflow: hidden;*/
  20. }
  21. .sl_scroller {
  22. position: absolute;
  23. z-index: 1;
  24. -webkit-tap-highlight-color: rgba(0,0,0,0);
  25. width: 100%;
  26. -webkit-transform: translateZ(0);
  27. -moz-transform: translateZ(0);
  28. -ms-transform: translateZ(0);
  29. -o-transform: translateZ(0);
  30. transform: translateZ(0);
  31. -webkit-touch-callout: none;
  32. -webkit-user-select: none;
  33. -moz-user-select: none;
  34. -ms-user-select: none;
  35. user-select: none;
  36. -webkit-text-size-adjust: none;
  37. -moz-text-size-adjust: none;
  38. -ms-text-size-adjust: none;
  39. -o-text-size-adjust: none;
  40. text-size-adjust: none;
  41. }
  42. .sl_footer {
  43. position:absolute;
  44. z-index:2;
  45. bottom:0;
  46. left:0;
  47. width:100%;
  48. font-size:1em;
  49. text-align:center;
  50. }
  51. .sl_pop_footer{
  52. position: absolute;
  53. z-index: 1;
  54. bottom: 0;
  55. left: 0;
  56. width:93%;
  57. background-color:white;
  58. -webkit-animation:sl_pop_footer_Move 0.1s;
  59. }
  60. @-webkit-keyframes sl_pop_footer_Move{
  61. from{bottom:-100px;}
  62. to{bottom:0px;}
  63. }
  64. .sl_right {
  65. position: absolute;
  66. z-index: 2;
  67. top:0;
  68. right: 0;
  69. display:box;
  70. width:8%;
  71. font-size:0.6em;
  72. }
  73. .sl_middle{
  74. position: absolute;
  75. z-index: 3;
  76. top:40%;
  77. left: 37%;
  78. border:1px solid gray;
  79. background-color:white;
  80. font-size:3em;
  81. text-align:center;
  82. width: 1.2em;
  83. height: 1.2em;
  84. }
  85. .sl_middle:empty{
  86. display:none;
  87. }