Advertisement
mogimochi

Blogroll [01] Chiaki

Aug 17th, 2012
22,255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.26 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <!--
  6.  
  7. Blogroll 01 Chiaki
  8. by yukoki/yokoris
  9.  
  10. 1. Light/Heavy CSS editting is allowed.
  11. 2. Do not use as base code.
  12. 3. Do not remove credit.
  13. 4. Do not claim theme as your own.
  14.  
  15. ----------------------------------------------------------------------
  16. Please look out for notes throughout the code
  17. to help you in customizing the page!!
  18. -----------------------------------------------------------------------
  19.  
  20. -->
  21.  
  22. <title>{title} - blogroll</title>
  23. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  24. <link rel="shortcut icon" href="{Favicon}" />
  25.  
  26. <style type="text/css">
  27.  
  28. ::-webkit-scrollbar { width: 5px; }
  29. ::-webkit-scrollbar-track-piece{background-color:#ccc;}/**scrollbar bg**/
  30. ::-webkit-scrollbar-thumb:vertical {
  31. width: 10px;
  32. border-radius: 100px;
  33. -moz-border-radius: 100px;
  34. -webkit-border-radius: 100px;
  35. -o-border-radius: 100px;
  36. background-color: #e0adb4;/**scrollbar**/
  37. }
  38.  
  39. body {
  40. background-color: #fff; /**background colour**/
  41. background-image: url(http://25.media.tumblr.com/tumblr_m37lmqN7UD1rsx5i6o1_250.png);/**background image**/
  42. background-attachment: fixed;
  43. margin: 0;
  44. word-wrap: break-word;
  45. }
  46. a { text-decoration:none; }
  47.  
  48. #content {width: 550px;}
  49.  
  50. .followwrap {
  51. width: 550px;
  52. min-height: 790px;
  53. padding: 10px 10px 0 10px;
  54. background-color: #ffffff; /** content background colour **/
  55. background-image: url();/** content background image **/
  56. }
  57.  
  58. .followings {
  59. width: 64px;
  60. height: 64px;
  61. opacity: 0.6;
  62. transition: 0.8s;
  63. -moz-transition: 0.8s;
  64. -webkit-transition: 0.8s;
  65. }
  66.  
  67. .followings:hover {opacity: 1;}
  68.  
  69. #s-m-t-tooltip {
  70. max-width: 150px;
  71. padding: 3px 5px;
  72. margin: 20px 14px 7px 10px;
  73. font-family: Calibri;
  74. font-size: 10px;
  75. line-height: 11px;
  76. letter-spacing: 1px;
  77. text-transform: uppercase;
  78. z-index: 999;
  79. background-color: #ffffff; /** tooltip background colour **/
  80. color: #999999; /** tooltip colour **/
  81. border-bottom: 1px solid #e0adb4; /** tooltip underline **/
  82. }
  83.  
  84. #right {
  85. position: fixed;
  86. margin: 60px 570px;
  87. }
  88.  
  89. .followingtab {
  90. font-family: georgia;
  91. font-size: 24px;
  92. width: 200px;
  93. font-style: italic;
  94. text-align: left;
  95. height: 70px;
  96. line-height: 70px;
  97. padding-left: 30px;
  98. color: #aaaaaa; /** 'following' colour **/
  99. background-color: #fff; /** 'following' background **/
  100. box-shadow: 0 5px 0 #e0adb4; /** 'following' bottom colour **/
  101. border-top-right-radius: 100px;
  102. -moz-border-top-right-radius: 100px;
  103. webkit-border-top-right-radius: 100px;
  104. border-bottom-right-radius: 100px;
  105. -moz-border-bottom-right-radius: 100px;
  106. webkit-border-bottom-right-radius: 100px;
  107. }
  108.  
  109. .icon {
  110. position: absolute;
  111. margin: 7px 32px;
  112. width: 55px;
  113. height: 55px;
  114. border-radius: 100px;
  115. -moz-border-radius: 100px;
  116. webkit-border-radius: 100px;
  117. }
  118.  
  119. .nav {
  120. position: absolute;
  121. margin: 15px 10px;
  122. }
  123.  
  124. .nav a {
  125. float: left;
  126. display: block;
  127. text-align: left;
  128. border-left: 30px solid #e0adb4; /** links border **/
  129. background-color: #ffffff; /** links background **/
  130. color: #888888; /** links colour **/
  131. margin-bottom: 3px;
  132. font-family: consolas;
  133. font-size: 9px;
  134. text-transform: uppercase;
  135. letter-spacing: 1px;
  136. padding: 0 10px;
  137. transition: 0.8s;
  138. -moz-transition: 0.8s;
  139. -webkit-transition: 0.8s;
  140. }
  141.  
  142. .nav a:hover {
  143. padding: 0 10px 0 15px;
  144. border-left: 30px solid #e3cccf; /** links hover border **/
  145. color: #cccccc; /** links hover colour **/
  146. background-color: #ffffff; /** links hover background **/
  147. }
  148.  
  149.  
  150. {CustomCSS}
  151.  
  152. </style>
  153.  
  154. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  155. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  156. <script>
  157. (function($){
  158. $(document).ready(function(){
  159. $("a[title]").style_my_tooltips({
  160. tip_follows_cursor:true,
  161. tip_delay_time:0,
  162. tip_fade_speed:0,
  163. attribute:"title"
  164. });
  165. });
  166. })(jQuery);
  167. </script>
  168.  
  169. </head>
  170. <body>
  171.  
  172. <!--------------------------- RENDER IMAGE ----------------------------->
  173. <img style="position:fixed;bottom:0;left:0;width:300px;" src="">
  174. <!--place your img link in between those empty apostrophes at the end!-->
  175.  
  176. <center><div id="content">
  177.  
  178. <div id="right">
  179.  
  180. <div class="followingtab">following<img class="icon" src="{PortraitURL-64}"></div>
  181.  
  182. <!------------------------------ LINKS ----------------------------------
  183. add your own custom links with:
  184. <a href="linkhere">link title</a>
  185. ------------------------------------------------------------------------>
  186.  
  187. <div class="nav">
  188. <a href="/">restart</a>
  189. <a href="/ask">send a message</a>
  190. <a href="/archive">archives</a>
  191. <a href="http://tumblr.com/dashboard">to dashboard</a>
  192. <a href="http://yukoki.tumblr.com">page credit</a>
  193. </div><!--nav-->
  194.  
  195. </div><!--right-->
  196.  
  197. <div class="followwrap">
  198. {block:Following}{block:Followed}
  199. <a href="{FollowedURL}" title="{FollowedName}"><img class="followings" src="{FollowedPortraitURL-64}"></a>
  200. {/block:Followed}{/block:Following}
  201. </div></div></center>
  202.  
  203. </body>
  204. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement