franzzfu

Blogroll 01

May 29th, 2014
4,529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <head>
  4. <title>BLOGROLL</title> <!-- This is the text on your browser tab-->
  5. <link rel="shortcut icon" href="{Favicon}">
  6.  
  7. <!----
  8.  
  9. blogroll 01 by franz @ lestranqe.tumblr.com/
  10. DO NOT REMOVE THE CREDIT OR YOU'LL SUFFER A FATE WORSE THAN EPONINE'S
  11. instructions included :)
  12.  
  13. --->
  14.  
  15. <script language="JavaScript" src="http://dl.dropbox.com/u/3173073/GothicDarkness/qTip.js" type="text/JavaScript"></script>
  16.  
  17. <style>
  18. div#qTip {
  19. padding:5px;
  20. display:none;
  21. text-align:center;
  22. position:absolute;
  23. font-size:8px;
  24. line-height:10px;
  25. font-family:baskerville;
  26. z-index:1000;
  27. border:0px solid;
  28. background-color:#000;
  29. color:#fff;
  30. text-transform:uppercase;
  31. letter-spacing:2px;
  32. opacity:1;
  33. }
  34. </style>
  35.  
  36.  
  37. <style type="text/css">
  38.  
  39. /*Scrollbar*/
  40.  
  41. ::-webkit-scrollbar {
  42. width:5px;
  43. height:auto;
  44. background:#f2f2f2;} /*Change scrollbar background colour here*/
  45. ::-webkit-scrollbar-corner {background:#f2f2f2;} /*Change scrollbar background colour here*/
  46. ::-webkit-scrollbar-thumb:vertical {background:#fff;} /*Change scrollbar colour here*/
  47. ::-webkit-scrollbar-thumb:horizontal {background:#fff;} /*Change scrollbar colour here*/
  48.  
  49. /*Main Structure*/
  50.  
  51. body {
  52. background:#fff; /*Change background colour here*/
  53. color:#000; /*Change font colour here*/
  54. font-family:times; /*Change font here*/
  55. font-size:11px; /*Change font size here*/
  56. line-height:180%;
  57. }
  58.  
  59. a {
  60. text-decoration:none;
  61. outline:none;
  62. -moz-outline-style:none;
  63. -webkit-transition:all .5s ease-in-out;
  64. -moz-transition:all .5s ease-in-out;
  65. transition:all .5s ease-in-out;
  66. }
  67.  
  68. a:hover {
  69. -webkit-transition:all .5s ease-in-out;
  70. -moz-transition:all .5s ease-in-out;
  71. transition:all .5s ease-in-out;
  72. }
  73.  
  74. /*Header*/
  75.  
  76. #header {
  77. margin-left:auto;
  78. margin-right:auto;
  79. margin-top:100px;
  80. background:transparent;
  81. width:660px;
  82. border-bottom:1px solid #e6e6e6;
  83. }
  84.  
  85. #title {
  86. text-align:center;
  87. font-family:times;
  88. font-size:25px;
  89. font-weight:bold;
  90. text-transform:uppercase;
  91. letter-spacing:8px;
  92. }
  93.  
  94. #description {
  95. margin:15px;
  96. text-align:center;
  97. font-size:8px;
  98. text-transform:uppercase;
  99. letter-spacing:3px;
  100. }
  101.  
  102. /*Content*/
  103.  
  104. #content {
  105. margin:0 auto;
  106. width:660px;
  107. height:310px;
  108. text-align:center;
  109. border-bottom:1px solid #e6e6e6;
  110. border-left:1px solid #e6e6e6;
  111. border-right:1px solid #e6e6e6;
  112. overflow:auto;
  113. }
  114.  
  115. #wrapper {
  116. width:128px;
  117. height:148px;
  118. margin:12px;
  119. border:1px solid #e6e6e6;
  120. overflow:hidden;
  121. display:inline-block;
  122. }
  123.  
  124. #content img {
  125. padding:10px;
  126. border:1px solid #ffffff;
  127. background-color: #ffffff;
  128. }
  129.  
  130. #blog {
  131. margin-top:-6px;
  132. font-size:9px;
  133. font-style:italic;
  134. text-align:center;
  135. text-transform:lowercase;
  136. letter-spacing:1px;
  137. }
  138.  
  139. #blog a {
  140. color:#2a2a2a; /*Change blog links colour here*/
  141. }
  142.  
  143. #blog a:hover {
  144. color:#e6e6e6; /*Change hovered blog links colour here*/
  145. }
  146.  
  147. /*Links*/
  148.  
  149. #navigation {
  150. text-align:center;
  151. margin:15px 0;
  152. }
  153.  
  154. #navigation a {
  155. color:#000;
  156. padding:20px;
  157. font-size:8px;
  158. text-transform:uppercase;
  159. letter-spacing:3px;
  160. }
  161.  
  162. #navigation a:hover {
  163. color:#e6e6e6;
  164. }
  165.  
  166. /*Credit - DON'T TOUCH THIS PART*/
  167.  
  168. #credit {
  169. position:fixed;
  170. float:right;
  171. bottom:5px;
  172. right:5px;
  173. background:transparent;
  174. font-size:20px;
  175. text-align:right;
  176. }
  177.  
  178. #credit a {
  179. color:#000;
  180. }
  181.  
  182. #logo {
  183. font-size:10px;
  184. font-family:baskerville;
  185. font-style:italic;
  186. opacity:0;
  187. -webkit-transition:all .5s ease-in-out;
  188. -moz-transition:all .5s ease-in-out;
  189. transition:all .5s ease-in-out;
  190. }
  191.  
  192. #credit:hover #logo {
  193. opacity:1;
  194. -webkit-transition:all .5s ease-in-out;
  195. -moz-transition:all .5s ease-in-out;
  196. transition:all .5s ease-in-out;
  197. }
  198.  
  199. </style>
  200. </head>
  201.  
  202. <body>
  203.  
  204. <div id="header">
  205. <div id="title">Blogroll</div> <!-- Page Title-->
  206. <div id="description">These people fill my dash will magic</div> <!-- Description-->
  207. </div>
  208.  
  209. <div id="content">
  210. {block:Following}
  211. {block:Followed}
  212. <div id="wrapper">
  213. <a href='{FollowedURL}' title='{FollowedTitle}' target='_blank' >
  214. <img src='{FollowedPortraitURL-96}'>
  215. <div id="blog"><a href='{FollowedURL}' target='_blank'>{FollowedName}</a></div>
  216. </div>
  217. {/block:Followed}
  218. {/block:Following}
  219. </div>
  220.  
  221. <div id="navigation"> <!-- The links at the bottom, duplicate to add more links-->
  222. <a href="/">Link 1</a>
  223. <a href="/">Link 2</a>
  224. <a href="/">Link 3</a>
  225. <a href="/">Link 4</a>
  226. </div>
  227.  
  228. <div id="credit"> <!-- DON'T TOUCH-->
  229. <div id="logo">franztheme</div>
  230. <a href="http://lestranqe.tumblr.com">☺</a>
  231. </div>
  232.  
  233. </body>
  234. </html>
Advertisement
Add Comment
Please, Sign In to add comment