Advertisement
cleuron

dropbox pack {1.2}

Jul 11th, 2014
1,131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.84 KB | None | 0 0
  1. /*DAENSO'S DROPBOX NUMBER 1*/
  2.  
  3. -----------------------PASTE THIS CODE BEFORE </STYLE>
  4.  
  5. #drop {
  6. position:fixed;
  7. margin-left:75px;
  8. height:118px;
  9. z-index:99;
  10. width:1px;
  11. border-left:1px dashed #eee; /*customizable color*/
  12.  
  13. }
  14.  
  15. .soolist {
  16. margin:0px;
  17. padding:2px;
  18. height:120px;
  19. width:150px;
  20. top:0px;
  21. left:100px; /*customizable*/
  22. text-transform:lowercase; /*customizable*/
  23. position:relative;
  24. text-align:center;
  25. font-family:helvetica;
  26. font-size:10px;
  27. }
  28.  
  29. .soohead {
  30. position:relative;
  31. margin-top:110px;
  32. background:#a7f8ca; /*customizable*/
  33. width:9px;
  34. height:9px;
  35. z-index:999;
  36. margin-left:71px;
  37. border-radius:0px 26px 14px 26px;
  38. -webkit-transition: opacity 8s ease-in-out;
  39. -moz-transition: opacity 8s ease-in-out;
  40. -o-transition: opacity 8s ease-in-out;
  41. -ms-transition: opacity 8s ease-in-out;
  42. transition: opacity 8s ease-in-out;
  43. transform:rotate(45deg);
  44. -ms-transform:rotate(45deg);
  45. -webkit-transform:rotate(45deg);
  46. animation:mymove 10s infinite;
  47. -webkit-animation:mymove 10s infinite;
  48. }
  49.  
  50. @keyframes mymove
  51. {
  52. 0% {background-color: #ffe8b8;} /*customizable color 1 of the drop*/
  53. 25% {background-color: #a7f8ca;} /*customizable color 2 of the drop*/
  54. 50% {background-color: #ffc2cf;} /*customizable color 3 of the drop*/
  55. 75% {background-color: #d0eaf5;} /*customizable color 4 of the drop*/
  56. 100% {background-color: #ffe8b8;} /*customizable color 1 of the drop*/
  57. }
  58.  
  59. @-webkit-keyframes mymove
  60. {
  61. 0% {background-color: #ffe8b8;} /*customizable color 1 of the drop*/
  62. 25% {background-color: #a7f8ca;} /*customizable color 2 of the drop*/
  63. 50% {background-color: #ffc2cf;} /*customizable color 3 of the drop*/
  64. 75% {background-color: #d0eaf5;} /*customizable color 4 of the drop*/
  65. 100% {background-color: #ffe8b8;} /*customizable color 1 of the drop*/
  66. }
  67.  
  68. .soohead:hover {
  69. margin-top:112px;
  70.  
  71. -webkit-transition: opacity 8s ease-in-out;
  72. -moz-transition: opacity 8s ease-in-out;
  73. -o-transition: opacity 8s ease-in-out;
  74. -ms-transition: opacity 8s ease-in-out;
  75. transition: opacity 8s ease-in-out;
  76.  
  77. }
  78.  
  79. .soobody {
  80. border:3px double #eee; /*customizable color*/
  81. background:#fff; /*customizable*/
  82. color:#ddd; /*customizable*/
  83. display:none;
  84. z-index:999;
  85. position:relative;
  86. width:auto;
  87. height:80px;
  88. overflow-y:auto;
  89. top:-132px;
  90. text-align:center;
  91.  
  92. }
  93.  
  94.  
  95.  
  96. -------------------THEN PAST THIS AFTER <BODY> AND INSERT WHAT YOU WANNA WRITE WHERE THERE'S "YOUR TEXT HERE"
  97.  
  98. <div class="soolist">
  99. <div id="drop"></div>
  100. <p class="soohead"></p>
  101. <div class="soobody">
  102.  
  103. your text here.
  104.  
  105. </div></div>
  106.  
  107.  
  108. ------------------AND PAST THIS CODE AFTER <HEAD> (THIS SHOULD BE ON TOP OF ALL THE CSS OF YOUR THEME)
  109.  
  110. <script type="text/javascript" src="http://static.tumblr.com/3ikgvxs/0TGl4zgpu/jquery.min.js"></script>
  111. <script type="text/javascript">
  112. $(document).ready(function(){
  113. $(".soobody").hide();
  114. $(".soohead").click(function(){
  115. $(this).next(".soobody").slideToggle('medium');
  116. }); }); </script>
  117.  
  118.  
  119.  
  120. ________________________________________________________________
  121.  
  122.  
  123. /*DAENSO'S DROPBOX NUMBER 2*/
  124.  
  125. -----------------------PASTE THIS CODE BEFORE </STYLE>
  126.  
  127. #k{
  128. height:19px;
  129. background:#fff; /*customizable*/
  130. position:fixed;
  131. color:#ddd; /*customizable*/
  132. border-radius:0px 0px 20px 20px;
  133. margin-left:400px; /*customizable*/
  134. border:1px solid #eee; /*customizable color*/
  135. top:-2px;
  136. width:20px;
  137. overflow:hidden;
  138. z-index:99;
  139. -webkit-transition:opacity 0.7s ease-in; opacity:1;
  140. -webkit-transition:all 0.7s ease-in;
  141. -moz-transition:all 0.7s ease-in;
  142. transition:all 0.7s ease-in;
  143. }
  144.  
  145. #k .olap{
  146. padding:3px;
  147. height:80px;
  148. background:#fff; /*customizable*/
  149. position:fixed;
  150. font-family:helvetica; /*customizable*/
  151. text-transform:lowercase; /*customizable*/
  152. font-size:9px; /*customizable*/
  153. color:#ddd; /*customizable*/
  154. text-align:center; /*customizable*/
  155. line-height:9px; /*customizable*/
  156. border:3px double #eee; /*customizable color*/
  157. margin:2px;
  158. margin-top:-111px;
  159. margin-left:-58px;
  160. width:120px;
  161. overflow-y:auto;
  162. -webkit-transition:opacity 0.7s ease-in; opacity:1.0;
  163. -webkit-transition:all 0.7s ease-in;
  164. -moz-transition:all 0.7s ease-in;
  165. transition:all 0.7s ease-in;
  166. }
  167.  
  168. div#k:hover {
  169. top:100px;
  170. -webkit-transition:opacity 0.7s ease-in; opacity:1;
  171. -webkit-transition:all 0.7s ease-in;
  172. -moz-transition:all 0.7s ease-in;
  173. transition:all 0.7s ease-in;
  174. }
  175.  
  176.  
  177.  
  178. -----------------------THEN PASTE THIS CODE BEFORE AFTER <BODY> AND INSERT WHAT YOU WANNA WRITE WHERE THERE'S "YOUR TEXT HERE"
  179.  
  180. <div id="k">
  181. <div style="padding:2px; opacity:0.6;"><img src="http://i.imgur.com/3z67pSE.gif" /></div>
  182.  
  183. <div class="olap">
  184.  
  185. your text here.
  186.  
  187. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement