12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- .sl_header {
- position:absolute;
- z-index:2;
- top:0;
- left:0;
- width:100%;
- font-size:1em;
- text-align:center;
- }
- .sl_wrapper {
- position: absolute;
- z-index: 1;
- top:0;
- bottom:0;
- left: 0;
- right:5%;
- width: 100%;
- background: #eeeeee;
- /*overflow: hidden;*/
- }
- .sl_scroller {
- position: absolute;
- z-index: 1;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
- width: 100%;
- -webkit-transform: translateZ(0);
- -moz-transform: translateZ(0);
- -ms-transform: translateZ(0);
- -o-transform: translateZ(0);
- transform: translateZ(0);
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- -webkit-text-size-adjust: none;
- -moz-text-size-adjust: none;
- -ms-text-size-adjust: none;
- -o-text-size-adjust: none;
- text-size-adjust: none;
- }
- .sl_footer {
- position:absolute;
- z-index:2;
- bottom:0;
- left:0;
- width:100%;
- font-size:1em;
- text-align:center;
- }
- .sl_pop_footer{
- position: absolute;
- z-index: 1;
- bottom: 0;
- left: 0;
- width:93%;
- background-color:white;
- -webkit-animation:sl_pop_footer_Move 0.1s;
- }
- @-webkit-keyframes sl_pop_footer_Move{
- from{bottom:-100px;}
- to{bottom:0px;}
- }
- .sl_right {
- position: absolute;
- z-index: 2;
- top:0;
- right: 0;
- display:box;
- width:8%;
- font-size:0.6em;
- }
- .sl_middle{
- position: absolute;
- z-index: 3;
- top:40%;
- left: 37%;
- border:1px solid gray;
- background-color:white;
- font-size:3em;
- text-align:center;
- width: 1.2em;
- height: 1.2em;
- }
- .sl_middle:empty{
- display:none;
- }
|