Advertisement
luciam

Blogroll #2

Apr 16th, 2014
5,840
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1. <html>
  2. <!-------------------------------------------------
  3. BLOGROLL #2 BY: http://robbarya.tumblr.com
  4. ...................................................
  5. ...................................................
  6.  
  7. TERMS OF USE:
  8. -Don’t remove or move the credit
  9. -Don’t redistribute
  10. -Don’t use as a base or take bits of code
  11. -You can edit it as much as you like as long as the credit remains untouched.
  12. --------------------------------------------->
  13. <head>
  14. <title>Blogroll</title><!---Change the browser title-->
  15. <link rel="shortcut icon" href="{Favicon}" />
  16.  
  17.  
  18. <style type="text/css">
  19.  
  20.  
  21. ::-webkit-scrollbar-thumb:vertical {
  22. background-color: #bbe4d0; /*Change the scrollbar color*/
  23. height:6px;
  24. }
  25. ::-webkit-scrollbar-corner {
  26. background-color: transparent;
  27. }
  28.  
  29. ::-webkit-scrollbar {
  30. margin-left: 5px;
  31. height:5px;
  32. width:5px;
  33. }
  34.  
  35.  
  36.  
  37.  
  38. body {
  39. background-color: #eee; /*Change the background color*/
  40. color: #999; /*Change the blogs description color*/
  41. font-family: Calibri;
  42. font-size: 8px;
  43. letter-spacing: 0.1em;
  44. }
  45.  
  46.  
  47. .titulo {
  48. color: #d1d1d1; /*Change the title color*/
  49. z-index: 2;
  50. padding: 10px;
  51. width: 190px;
  52. height: 16px;
  53. font-family: Century Gothic, calibri;
  54. font-size: 13px;
  55. font-weight: bold;
  56. text-transform: uppercase;
  57. text-align:center;
  58. letter-spacing: 0.4em;
  59. margin-bottom: -5px;
  60. }
  61.  
  62. .all {
  63. margin: 100px auto;
  64. width: 600px;
  65. }
  66.  
  67. .links {
  68. height: 30px;
  69. width: 300px;
  70. text-align: left;
  71. margin-left: -40px;
  72. }
  73.  
  74. .links ul {
  75. list-style-type: none;}
  76.  
  77. .links ul li {
  78. display: inline;
  79. width:100px;
  80. }
  81.  
  82. .links ul li a {
  83. letter-spacing: 0.2em;
  84. font-size: 8px;
  85. text-decoration:none;
  86. color: #ccc; /*Change the links color*/
  87. background-color: #ffffff; /*Change the links background color*/
  88. padding: 5px;
  89. text-transform: uppercase;
  90. text-align: center;
  91. }
  92.  
  93. .links ul li a:hover {
  94. background-color: #bbe4d0; /*Change the links background hover color*/
  95. text-align: right;
  96. color: #fff; /*Change the links hover color*/
  97. }
  98.  
  99. /*BLOG---------------------------------------*/
  100.  
  101. .blogroll {
  102. width: 530px;
  103. background-color: #fff; /*Change the container background color*/
  104. margin-left: 0px;
  105. padding: 10px 0px;
  106. height: 340px;
  107. text-align: center;
  108. overflow: scroll;
  109. }
  110.  
  111. .blog {
  112. margin-bottom: 10px;
  113. margin-left: 5px;
  114. float:left;
  115. width: 165px;
  116. }
  117.  
  118. .blog img {
  119. height: 40px;
  120. width: 40px;
  121. }
  122.  
  123.  
  124. .blog a, a:active, a:visited {
  125. text-decoration: none;
  126. color: #ccc; /*Change the blogs title color*/
  127. text-transform:uppercase;
  128. }
  129.  
  130. .blog a:hover {
  131. text-decoration:underline;
  132. color: #bbe4d0; /*Change the blogs hover color*/
  133. }
  134. .bloginfo {
  135. overflow: hidden;
  136. text-align: left;
  137. padding: 5px;
  138. background-color: #eee; /*Change blogs info background color*/
  139. width: 100px;
  140. height: 30px;
  141. float: right;
  142. }
  143. </style>
  144.  
  145. </head>
  146. <body>
  147. <div class="all">
  148. <div class="titulo">Blogroll</div> <!--Change the title----->
  149. <div class="links">
  150. <ul>
  151. <li><a href="/">home</a></li>
  152. <li><a href="/ask">message</a></li>
  153. <li><a href="http://tumblr.com/dashboard">dashboard</a></li>
  154. <li><a href="http://robbarya.tumblr.com">credit</a></li>
  155. </ul>
  156. </div>
  157. <div class="blogroll">
  158. {block:Following}{block:Followed}
  159. <div class="blog">
  160. <a target="_blank" href="{FollowedURL}"> <img border: "0" src="{FollowedPortraitURL-40}"/>
  161. </a>
  162. <div class="bloginfo"><a target="_blank" href="{FollowedURL}">{FollowedName}</a><br>{FollowedTitle}</div>
  163. </div>
  164. {/block:Followed}{/block:Following}
  165. </div>
  166. </div>
  167.  
  168. </div>
  169. </body>
  170. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement