Advertisement
Guest User

Untitled

a guest
Dec 25th, 2013
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. #oneout {
  2. position:fixed;
  3. top:64px;left:15px;
  4. text-align:center;
  5. -webkit-transition-duration:0.3s;-moz-transition-duration:0.3s;-o-transition-duration:0.3s;transition-duration:0.3s;
  6. z-index:99999999; }
  7.  
  8. #oneout_inner {
  9. position:fixed;
  10. width:300px; height:auto;
  11. top:40px; left:-340px;
  12. padding:10px;
  13. background:#FFFFFF; /* change #FFFFFF; to transparent; if you want the background of the slide out tab to be transparent and not white*/
  14. -webkit-transition-duration:0.3s;-moz-transition-duration:0.3s;-o-transition-duration:0.3s;transition-duration:0.3s;
  15. text-align:left;
  16. z-index:99999999; }
  17.  
  18. #oneout:hover {
  19. left:250px;
  20. z-index:99999999; }
  21.  
  22. #oneout:hover #oneout_inner {
  23. left:0px;
  24. z-index:99999999; }
  25.  
  26. .onetitle {
  27. position:absolute;
  28. left:-11px; top:3px;
  29. font-family:arial; font-size:16px;
  30. -webkit-transform:rotate(-90deg); -moz-transform:rotate(-90deg); -ms-transform:rotate(-90deg); -o-transform:rotate(-90deg); transform:rotate(-90deg);
  31. z-index:99999999; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement