Advertisement
Guest User

blogroll 01 | stylessext

a guest
Mar 23rd, 2013
2,431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. <!--
  2. Theme 01
  3. - blogroll 01 by Melissa http://stylessext.tumblr.com/
  4. don't remove my credits or claim it as your own
  5. enjoy!
  6. !-->
  7.  
  8.  
  9.  
  10. <!DOCTYPE html>
  11. <html>
  12. <head>
  13.  
  14. <link rel="shortcut icon" href="{Favicon}">
  15. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  16. <!--Title shown on tab-->
  17. <title>{title}</title>
  18. <!--STEP 2: CSS styling-->
  19. <style type="text/css">
  20.  
  21. center{
  22. width:800px;
  23. margin:auto;
  24. font-family:Cambria, "Cambria";
  25. font-style:normal;
  26. font-size:11px;
  27. }
  28. ul {
  29. list-style: none;
  30. margin-left: 0%;
  31. }
  32. li {
  33. float: left;
  34. margin: 0%;
  35. }
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42. center img{
  43. -webkit-transform:scale(0.9); /*Webkit: Scale down image to 0.8x original size*/
  44. -moz-transform:scale(0.9); /*Mozilla scale version*/
  45. -o-transform:scale(0.9); /*Opera scale version*/
  46. -webkit-transition-duration: 0.5s; /*Webkit: Animation duration*/
  47. -moz-transition-duration: 0.5s; /*Mozilla duration version*/
  48. -o-transition-duration: 0.5s; /*Opera duration version*/
  49. opacity: 0.7; /*initial opacity of images*/
  50. z-index:-100;
  51. box-shadow:0 0 0.2em gray;
  52. }
  53. img:hover{
  54. -webkit-transform:scale(1.3); /*Webkit: Scale up image to 1.2x original size*/
  55. -moz-transform:scale(1.3); /*Mozilla scale version*/
  56. -o-transform:scale(1.3); /*Opera scale version*/
  57. box-shadow:0px 0px 20px gray; /*CSS3 shadow: 30px blurred shadow all around image*/
  58. -webkit-box-shadow:0px 0px 20px gray; /*Safari shadow version*/
  59. -moz-box-shadow:0px 0px 20px gray; /*Mozilla shadow version*/
  60. opacity:0.9;
  61. z-index:100;
  62. position:relative;
  63. }
  64. .link{opacity:0.5;text-decoration:none;color:#000;
  65. display:block;
  66. text-align:left;
  67. border-bottom:dashed #ccc 1px;
  68. }
  69. a:link, a:visited{text-decoration:none;padding:0px;color:#000;}
  70. #footer{
  71. text-transform:uppercase;
  72. opacity:0.5;
  73. margin:auto;
  74. text-align:center;
  75. padding:30px;
  76. font-style:italic;
  77. font-family:Cambria;
  78. }
  79. </style>
  80. </head>
  81.  
  82. <body>
  83.  
  84. <center>
  85. <div class="link" >
  86. <center><br><br><br><br>
  87. <big><big><big><big><big><big> blogroll. </big></big></big></big></big></big>
  88. <br><a href="http://www.tumblr.com/dashboard"> dash </a> | <a href="/"> back </a> |
  89. <a href="http://stylessext.tumblr.com"> credit </a>
  90. <!--STEP 1: Following code-->
  91. {block:Following}
  92. <ul>
  93. {block:Followed}
  94. <li>
  95. <a href="{FollowedURL}"><img src="{FollowedPortraitURL-64}"/></a>
  96. </li>
  97. {/block:Followed}
  98. </ul>
  99. {/block:Following}
  100. </body>
  101. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement