caity_hillier

Untitled

Jul 15th, 2013
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. <style>
  2.  
  3. .Chandler {
  4. height: 100px;
  5. width: 50px;
  6. background-color: #fcf; /* background color of tab*/
  7. background-image: url('Insert Background Image Url Here'); /* Put background image url in perenthes if you want*/
  8. border: 0px #000 solid; /*border style and color*/
  9. border-radius: 0px; /*border radius, aka how rounded you want it*/
  10. position: fixed;
  11. margin-top: 200px; /*How far from the top*/
  12. Left: 0px;
  13. z-index:999999999;
  14. -webkit-transition: 0.6s ease-in-out;
  15. padding: 10px;
  16. -moz-box-shadow: 0px 0px 5px 2px #0C6; /*Glow color, Delete this line and the two below if you do not want glow */
  17. -webkit-box-shadow: 0px 0px 5px 2px #0C6; /*Glow color, Delete this line and the two below if you do not want glow */
  18. box-shadow: 0px 0px 5px 2px #0C6;/*Glow color, Delete this line and the two below if you do not want glow */
  19. }
  20.  
  21.  
  22. .Monica {
  23.  
  24. width: 300px; /*If you adjust with width, make sure you adjust the margin left as well*/
  25. min-height: 100px;
  26. background-color: #99F; /* Background Color of the slide out box */
  27. background-image: url('Insert Background Image Url Here'); /* Put background image url in perenthes if you want*/
  28. border: 0px #000 solid; /*Border color and style of the box */
  29. position: fixed;
  30. margin-top: -10px; /*If you have a border, at the border number onto this number*/
  31. Left: -325px; /*This must be negative whatever the width is plus 10px */
  32. z-index:999999999;
  33. -webkit-transition: 0.6s ease-in-out;
  34. padding: 10px;
  35. -moz-box-shadow: 0px 0px 5px 2px #0C6; /*Glow color, Delete this line and the two below if you do not want glow */
  36. -webkit-box-shadow: 0px 0px 5px 2px #0C6; /*Glow color, Delete this line and the two below if you do not want glow */
  37. box-shadow: 0px 0px 5px 2px #0C6;/*Glow color, Delete this line and the two below if you do not want glow */
  38. }
  39.  
  40. .Chandler:hover {
  41. z-index:1000;
  42. left: 320px;
  43. -webkit-transition: 0.6s ease-in-out;}
  44.  
  45. .Chandler:hover .Monica {
  46. z-index:1000;
  47. left: 0px;
  48. -webkit-transition: 0.6s ease-in-out;}
  49.  
  50. .Monica:hover {
  51. z-index:1000;
  52. left: 0px;
  53. -webkit-transition: 0.6s ease-in-out;
  54. }
  55.  
  56. .rachel{
  57. -webkit-transform: rotate(90deg);
  58. margin-top: 20px;
  59. font-size: 30px;
  60. position: absolute;
  61. margin-left: -20px;
  62. text-align: center;
  63. }
  64. </style>
Advertisement
Add Comment
Please, Sign In to add comment