Advertisement
themesbyhaleigh

blogroll (page #13)

Jul 25th, 2014
1,721
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.03 KB | None | 0 0
  1. <!-- page #13 by nerdydean. don't remove the credit.-->
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.  
  5. <head>
  6.  
  7. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  8. <script>
  9. (function($){
  10. $(document).ready(function(){
  11. $("a[title]").style_my_tooltips({
  12. tip_follows_cursor:true,
  13. tip_delay_time:20,
  14. tip_fade_speed:400,
  15. attribute:"title"
  16. });
  17. });
  18. })(jQuery);
  19. </script>
  20.  
  21. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
  22.  
  23. <title>{Title}</title>
  24. <link rel="shortcut icon" href="{Favicon}">
  25. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  26.  
  27. <style type="text/css">
  28.  
  29. #content {
  30. position: absolute;
  31. padding: 0px;
  32. margin-left: 0px;
  33. overflow: auto;
  34. margin-top:10px;
  35. }
  36.  
  37. #content img {
  38. padding: 5px;
  39. width: 55px;
  40. margin: 3px;
  41. border: 1px solid #fff;
  42. background-color: #fff;
  43. -webkit-filter: grayscale(.5);
  44. -webkit-transition:all 0.6s;
  45. -moz-transition:all 0.6s;
  46. -ms-transition:all 0.6s;
  47. -o-transition:all 0.6s;
  48. transition:all 0.6s;
  49. }
  50.  
  51. #content img:hover {
  52. -webkit-filter: grayscale(0);
  53. -webkit-transition:all 0.6s;
  54. -moz-transition:all 0.6s;
  55. -ms-transition:all 0.6s;
  56. -o-transition:all 0.6s;
  57. transition:all 0.6s;
  58. }
  59.  
  60. #s-m-t-tooltip {
  61. max-width:300px;
  62. padding:2px 2px 2px 2px;
  63. margin:20px 0px 0px 20px;
  64. background:#fff;
  65. border:1px solid #eee;
  66. text-transform:lowercase;
  67. color:#2e2e2e;
  68. z-index:999999999999999999999999999999999999;
  69. text-decoration:bold;
  70. font-family: helvetica;
  71. font-size: 10px;
  72. letter-spacing: 0px;
  73. }
  74.  
  75. ::-webkit-scrollbar {
  76. width: 3px; height:auto; background:#fff;
  77. }
  78.  
  79. ::-webkit-scrollbar-corner {
  80. padding:2px;
  81. background:#fff;
  82. }
  83.  
  84. ::-webkit-scrollbar-button:vertical {
  85. height:5px;
  86. display: block;
  87. background:#2e2e2e;
  88. }
  89.  
  90. ::-webkit-scrollbar-button:horizontal {
  91. width: 3px;
  92. height: 5px;
  93. display: block;
  94. background:#2e2e2e;
  95. }
  96.  
  97. ::-webkit-scrollbar-thumb:vertical {
  98. background:#2e2e2e;
  99. }
  100.  
  101. ::-webkit-scrollbar-thumb:horizontal {
  102. background: #fff;
  103. }
  104.  
  105. ::-webkit-scrollbar-thumb {
  106. background: #2e2e2e;
  107. }
  108.  
  109. body {
  110. color:#333;
  111. font-family:calibri;
  112. font-weight:100;
  113. font-size:11px;
  114. text-align:justify;
  115. margin:0;
  116. line-height:18px;
  117. background:#fff;
  118. }
  119.  
  120. a {
  121. color:#333;
  122. text-decoration:none;
  123. }
  124.  
  125. a:hover {
  126. text-decoration:underline;
  127. }
  128.  
  129. img {
  130. border:none;
  131. text-decoration:none;
  132. }
  133.  
  134. p {
  135. margin-top:5px;
  136. margin-bottom:5px;
  137. }
  138.  
  139. #con {
  140. left:50%;
  141. margin-left:-200px;
  142. position:absolute;
  143. }
  144.  
  145. .posts {
  146. width:400px;
  147. background:#fff;
  148. margin:50px 0;
  149. }
  150.  
  151. .l {
  152. background:#fff;
  153. margin-top:50px;
  154. width:400px;
  155. text-align:center;
  156. font-family:calibri;
  157. text-transform:uppercase;
  158. }
  159.  
  160. #title {
  161. font-size:14px;
  162. margin-bottom:12px;
  163. text-align:center;
  164. letter-spacing:1px;
  165. font-family:calibri;
  166. text-transform:uppercase;
  167. color:#333;
  168. background:#fff;
  169. padding:15px;
  170. border-bottom:1px solid #eee;
  171. }
  172.  
  173. .links {
  174. padding-bottom:10px;
  175. border-bottom:1px solid #eee;
  176. }
  177.  
  178. .links a {
  179. margin:0 5px;
  180. padding:2px 5px;
  181. border:none;
  182. }
  183.  
  184. </style>
  185.  
  186. <script type="text/javascript">
  187. $(document).ready(function() {
  188. // Tooltip only Text
  189. $('.masterTooltip').hover(function(){
  190. // Hover over code
  191. var title = $(this).attr('title');
  192. $(this).data('tipText', title).removeAttr('title');
  193. $('<p class="tooltip"></p>')
  194. .text(title)
  195. .appendTo('body')
  196. .fadeIn('slow');
  197. }, function() {
  198. // Hover out code
  199. $(this).attr('title', $(this).data('tipText'));
  200. $('.tooltip').remove();
  201. }).mousemove(function(e) {
  202. var mousex = e.pageX + 20; //Get X coordinates
  203. var mousey = e.pageY + 10; //Get Y coordinates
  204. $('.tooltip')
  205. .css({ top: mousey, left: mousex })
  206. });
  207. });
  208. </script>
  209.  
  210. </head>
  211.  
  212. <link href="#s-m-t-tooltip" rel="stylesheet" type="text/css" />
  213.  
  214. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  215.  
  216. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  217.  
  218. <script>
  219. (function($){
  220. $(document).ready(function(){
  221. $("a[title]").style_my_tooltips({
  222. tip_follows_cursor:true,
  223. tip_delay_time:90,
  224. tip_fade_speed:600,
  225. attribute:"title"
  226. });
  227. });
  228. })(jQuery);
  229. </script>
  230.  
  231. <body>
  232.  
  233. <div id="con">
  234. <div class="l">
  235. <!-- this is your title. you can leave it ask blogroll or change it to say what you want. -->
  236. <div id="title">blogroll</div>
  237. <div class="links">
  238. <!-- these are your links. -->
  239. <a href="/">home</a>
  240. <a href="/ask">ask</a>
  241. <a href="/">link2</a>
  242. <!-- please don't remove this -->
  243. <a title ="theme by nerdydean" href="/">theme</a>
  244. </div>
  245.  
  246. </div>
  247.  
  248. <div id="content">
  249. <div id="posts">
  250.  
  251. <center>
  252. <div style="width:400px; height:400px; overflow-Y:scroll;">
  253. {block:Following}{block:Followed}<a target='_blank' href='{FollowedURL}' title="{FollowedName}"><img border='1' src='{FollowedPortraitURL-96}' />{/block:Followed}{/block:Following}
  254. </center>
  255.  
  256. </div>
  257. </body>
  258. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement