Advertisement
themesbygeorgia

Page 05 -- Updates1 Code2

May 5th, 2014
513
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. /*--CODE BY WONDERFULLYTHEMES.TUMBLR.COM
  2. DON'T REMOVE THIS CREDIT--*/
  3.  
  4. #container {
  5. border-left:4px solid #e4e4e4; /*--change the colour of the main/constant line--*/
  6. height:100px;
  7. width:210px;
  8. margin-top:10px;
  9. margin-left:5px;
  10. position:fixed;
  11. }
  12.  
  13. #container:hover .title {
  14. margin-left:60px;
  15. opacity:0;
  16. -moz-transition-duration:0.7s;
  17. -webkit-transition-duration:0.7s;
  18. -o-transition-duration:0.7s;
  19. }
  20.  
  21. .title {
  22. height:20px;
  23. width:30px;
  24. font-size:15px;
  25. line-height:17px;
  26. text-align:center;
  27. font-family:'calibri'; /*--change the title for the main title here--*/
  28. color:#1bcc5c; /*--change the colour of the title here--*/
  29. padding:5px;
  30. margin-top:60px;
  31. text-transform:uppercase;
  32. letter-spacing:4px;
  33. opacity:1;
  34. -webkit-transform: rotate(270deg);
  35. -moz-transform: rotate(270deg);
  36. -ms-transform: rotate(270deg);
  37. -o-transform: rotate(270deg);
  38. transform: rotate(270deg);
  39. -moz-transition-duration:0.7s;
  40. -webkit-transition-duration:0.7s;
  41. -o-transition-duration:0.7s;
  42. }
  43.  
  44. #container:hover .links_list {
  45. opacity:1;
  46. margin:0px;
  47. -moz-transition-duration:0.7s;
  48. -webkit-transition-duration:0.7s;
  49. -o-transition-duration:0.7s;
  50. }
  51.  
  52. .links_list {
  53. margin-left:-50px;
  54. padding:1px 1px 1px 0px;
  55. width:140px;
  56. opacity:0;
  57. -moz-transition-duration:0.7s;
  58. -webkit-transition-duration:0.7s;
  59. -o-transition-duration:0.7s;
  60. }
  61.  
  62. .links_head {
  63. width:70px;
  64. cursor:pointer;
  65. margin-top:-82px;
  66. text-align:left;
  67. font-size:9px;
  68. text-transform:uppercase;
  69. position:absolute;
  70. padding:3px 3px 3px 0px;
  71. color:#000;
  72. font-family:'arial'; /*--change the font for the titles here--*/
  73. }
  74.  
  75. .links_head:hover {
  76. color:#000;
  77. background-color:#e4e4e4; /*--change the background colour of the titles on hover--*/
  78. }
  79.  
  80. .links_body {
  81. padding:3px;
  82. height:80px;
  83. overflow-y:scroll;
  84. line-height:12px;
  85. text-align:left;
  86. position:fixed;
  87. width:100px;
  88. display:none;
  89. font-family:'arial'; /*--change the font for the text in the boxes here--*/
  90. text-transform:none; /*--can change to 'lowercase' or 'uppercase'--*/
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement