hoopers

Palabras (retired)

Jul 22nd, 2014
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.54 KB | None | 0 0
  1. <!-- base code theme, by hardziam // themesbyzsu.tumblr.com-->
  2. <!--THEME BY :
  3. ▒█░░▒█ ▒█▀▀▀█ ▒█▀▀▀ ▀█▀ ▒█▀▀▄
  4. ░▒█▒█░ ▒█░░▒█ ▒█▀▀▀ ▒█░ ▒█░▒█
  5. ░░▀▄▀░ ▒█▄▄▄█ ▒█▄▄▄ ▄█▄ ▒█▄▄▀ -->
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7.  
  8. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  9.  
  10. <head>
  11.  
  12. <title>{Title}</title>
  13. <link rel="shortcut icon" href="{Favicon}">
  14. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  15.  
  16.  
  17.  
  18. <meta name="color:Background" content="#fff" />
  19. <meta name="color:Body" content="#333" />
  20. <meta name="color:Link" content="#8d8c8d" />
  21. <meta name="color:Link Hover" content="#c48e8e" />
  22. <meta name="image:Background" content="" />
  23. <meta name="text:Link1" content="link" />
  24. <meta name="text:Link1 URL" content="/" />
  25. <meta name="text:Link2" content="link" />
  26. <meta name="text:Link2 URL" content="/" />
  27. <meta name="text:Link3" content="link" />
  28. <meta name="text:Link3 URL" content="/" />
  29. <meta name="text:Link4" content="link" />
  30. <meta name="text:Link4 URL" content="/" />
  31. <meta name="text:Link5" content="link" />
  32. <meta name="text:Link5 URL" content="/" />
  33.  
  34.  
  35. <style type="text/css">
  36.  
  37. body {
  38. background: {color:Background};
  39. background-image: url('{image:Background}');
  40. position:absolute;
  41. font-size:12px;
  42. font-family: arial;
  43. color:{color:Body};
  44. }
  45.  
  46. blockquote {
  47. border-left: 3px solid #eee;
  48. padding:5px;
  49. padding-left:10px;
  50. text-align: justify;
  51. }
  52.  
  53. blockquote img {
  54. max-width: 100%;
  55. display: block;
  56. margin-bottom: 5px;
  57. }
  58.  
  59. blockquote blockquote {
  60. margin: 10px;
  61. padding: 10px;
  62. }
  63.  
  64. a {
  65. text-decoration:none;
  66. outline:none;
  67. color:{color:Link};
  68. -webkit-transition: all 0.5s ease-in-out;
  69. -moz-transition: all 0.5s ease-in-out;
  70. -o-transition: all 0.5s ease-in-out;
  71. }
  72.  
  73. a:hover {
  74. color:{color:Link Hover};
  75. -webkit-transition: all 0.5s ease-in-out;
  76. -moz-transition: all 0.5s ease-in-out;
  77. -o-transition: all 0.5s ease-in-out;
  78. }
  79.  
  80. h1 {
  81. font-family:{font:Body};
  82. font-family:times;
  83. font-style:italic;
  84. text-align:center;
  85. }
  86.  
  87. h2 {
  88. font-family:times;
  89. text-transform:uppercase;
  90. padding:5px;
  91. color:{color:Link};
  92. }
  93.  
  94. #title {
  95. font-family:georgia;
  96. font-size:23px;
  97. text-align:center;
  98. -webkit-transition: all 0.5s ease-in-out;
  99. -moz-transition: all 0.5s ease-in-out;
  100. -o-transition: all 0.5s ease-in-out;
  101. }
  102.  
  103. #title a {
  104. color:{color:Body};
  105. font-style:italic;
  106. text-decoration:none;
  107. -webkit-transition: all 0.5s ease-in-out;
  108. -moz-transition: all 0.5s ease-in-out;
  109. -o-transition: all 0.5s ease-in-out;
  110. }
  111.  
  112. #title a:hover {
  113. -webkit-filter:blur(1px);
  114. -webkit-transition: all 0.5s ease-in-out;
  115. -moz-transition: all 0.5s ease-in-out;
  116. -o-transition: all 0.5s ease-in-out;
  117. }
  118.  
  119. #sidebar {
  120. position:absolute;
  121. top:100px;
  122. left:450px;
  123. width:400px;
  124. padding:0px;
  125. }
  126.  
  127. #description {
  128. padding:10px;
  129. color:{color:Description};
  130. font-size:11px;
  131. text-align:center;
  132. text-align:justify;
  133. font-family:arial;
  134. }
  135.  
  136. #pagination {
  137. background:black;
  138. color:white;
  139. font-size:50px;
  140. }
  141.  
  142. #links {
  143. text-align:center;
  144. }
  145.  
  146.  
  147. #links a{
  148. display:inline-block;
  149. font-size:13px;
  150. letter-spacing:1px;
  151. font-family:times;
  152. padding:3px;
  153. font-style:italic;
  154. color:{color:Link};
  155. -webkit-transition: all 0.2s ease-in-out;
  156. -moz-transition: all 0.2s ease-in-out;
  157. -o-transition: all 0.2s ease-in-out;
  158. }
  159.  
  160. #links a:hover{
  161. color:{color:Link Hover};
  162. -webkit-filter:blur(1px);
  163. -webkit-transition: all 0.5s ease-in-out;
  164. -moz-transition: all 0.5s ease-in-out;
  165. -o-transition: all 0.5s ease-in-out;
  166. }
  167.  
  168.  
  169. #entries {
  170. font-size:10px;
  171. margin-left: 450px;
  172. margin-top:100px;
  173. float: right;
  174. text-align: justify;
  175. }
  176.  
  177. #post {
  178. font-size:10px;
  179. padding: 5px;
  180. margin-bottom:100px;
  181. width: 400px;
  182. color:{color:Body};
  183. text-align: left;
  184. overflow:hidden;
  185. }
  186.  
  187. #info {
  188. font-style:italic;
  189. padding: 5px;
  190. border-top:1px solid black;
  191. }
  192.  
  193. #credit a{
  194. position:fixed;
  195. color:#E1E3E2;
  196. right:3px;
  197. bottom:3px;
  198. padding:4px;
  199. background:;
  200. font-size:11px;
  201. -moz-transition-duration:1s;
  202. -webkit-transition-duration:1s;
  203. -o-transition-duration:1s;
  204. }
  205.  
  206. #credit a:hover {
  207. opacity:1;
  208. color:white;
  209. -moz-transition-duration:1s;
  210. -webkit-transition-duration:1s;
  211. -o-transition-duration:1s;
  212. }
  213.  
  214.  
  215. </style>
  216. <style type="text/css">{CustomCSS}</style>
  217. </head>
  218.  
  219. <body>
  220. <div id="sidebar">
  221. <div id="title"><a href="/">{Title}</a></div>
  222. <div id="description">
  223. {block:Description}{Description}{/block:Description}
  224. </div>
  225. <div id="links">
  226. <a href="{text:Link1 URL}">{text:Link1}</a>
  227. <a href="{text:Link2 URL}">{text:Link2}</a>
  228. <a href="{text:Link3 URL}">{text:Link3}</a>
  229. <a href="{text:Link4 URL}">{text:Link4}</a>
  230. <a href="{text:Link5 URL}">{text:Link5}</a>
  231. </div>
  232.  
  233.  
  234.  
  235.  
  236. <div id="entries">
  237. {block:Posts}
  238. <div id="post">
  239.  
  240. {block:Text}<h1>{title}</h1>{Body}{/block:Text}
  241.  
  242. {block:Quote}<h3>“{Quote}” </h3>
  243. <div style="text-align:right; padding-bottom:5px;">— {Source}</div>{/block:Quote}
  244.  
  245. {block:Link}<a href="{URL}" class="link" {Target}> <h2>{Name}</h2></a>
  246. {block:Description}<p>{Description}</p>{/block:Description}{/block:Link}
  247.  
  248. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  249. {block:Photoset}<center>{Photoset-400}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  250.  
  251. {block:Chat}{block:Title}<h1>{Title}</h1><br>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  252. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  253.  
  254.  
  255.  
  256.  
  257. {block:Audio}
  258. {block:AudioPlayer}
  259. {AudioPlayerWhite}
  260. {/block:AudioPlayer}
  261. {block:AlbumArt}
  262. <img src="{AlbumArtURL}" width="100px"/>
  263. {/block:AlbumArt}
  264. <br>
  265. {block:TrackName}Track: {TrackName}{/block:TrackName}<br>
  266. {block:Artist}Artist: {Artist}{/block:Artist}<br>
  267. {block:Album}Album: {Album}{/block:Album}<br>
  268. {block:Playcount}Play count: {FormattedPlayCount}{/block:Playcount}
  269. {block:Caption}{Caption}{/block:Caption}
  270. {/block:Audio}
  271.  
  272. {block:Answer}
  273. <img src="{AskerPortraitURL-30}">
  274. {Asker} asked: {Question}<br>
  275. {Answer}{/block:Answer}
  276.  
  277.  
  278.  
  279. <div id="info">
  280. posted {block:Date}<a href="{Permalink}">{TimeAgo}</a>{/block:Date}
  281. {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}{/block:NoteCount}{block:RebloggedFrom} (<a href="{ReblogParentURL}">via</a>{block:ContentSource} / <a href="{SourceURL}">source</a>{block:ContentSource}){/block:RebloggedFrom}<br>
  282. {block:HasTags}{block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags}{/block:HasTags}</div>
  283.  
  284. </div>
  285. {/block:Posts}
  286.  
  287. {block:PostNotes}{PostNotes}{/block:PostNotes}
  288.  
  289. </div>
  290. <center>
  291. {block:PreviousPage}<a href="{PreviousPage}">BACK</a>{/block:PreviousPage} | {block:NextPage} <a href="{NextPage}">NEXT</a>{/block:NextPage}</center>
  292. </div>
  293.  
  294.  
  295. <!----- put in your url here! ---->
  296. <div id="credit"><a href="http://voeid.tumblr.com">voeid</a></div>
  297. </body>
  298. </html>
Advertisement
Add Comment
Please, Sign In to add comment