Advertisement
herohdales

Theme 1 by Herohdales

Apr 21st, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.14 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!-------------------------------------------
  5. Theme by Rosa
  6. herohdales.tumblr.com
  7. please do not remove the credit!
  8. Base code by Clara; mandrakescry.tumblr.com
  9. -------------------------------------------->
  10. <html>
  11. <head>
  12.  
  13. <meta name="color:background" content="#FFFFFF">
  14. <meta name="color:sidebar link" context="#413f3f">
  15. <meta name="color:link" content="#928f8f">
  16. <meta name="color:post links" content="#928f8f">
  17. <meta name="color:hover" content="#454545">
  18. <meta name="color:info" content="#dadada">
  19. <meta name="color:text" content="#9A9A9A">
  20. <meta name="color:title" content="#0a0a0a">
  21. <meta name="color:sidebar text" content="#a8a6a6">
  22. <meta name="color:tags" content="#dddddd">
  23. <meta name="color:scrollbar" content="#313231">
  24. <meta name="color:border" content="#313231">
  25.  
  26. <meta name="image:sidebar" content=""/>
  27.  
  28. <meta name="text:Link1" content="" />
  29. <meta name="text:Link1 Hover" content="link 1" />
  30. <meta name="text:Link2" content="" />
  31. <meta name="text:Link2 Hover" content="link 2" />
  32. <meta name="text:Link3" content="" />
  33. <meta name="text:Link3 Hover" content="link 3" />
  34.  
  35.  
  36. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  37. <title>{Title}</title> {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  38. <link rel="shortcut icon" href="{Favicon}" />
  39. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  40.  
  41. <script type="text/javascript"
  42. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  43.  
  44. <!-- okay this is like beginning of like tail thing on hovering over links whatever-->
  45.  
  46. <script src="http://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  47. <script>
  48. (function($){
  49. $(document).ready(function(){
  50. $("[title]").style_my_tooltips({
  51. tip_follows_cursor:true,
  52. tip_delay_time:200,
  53. tip_fade_speed:300
  54. }
  55. );
  56. });
  57. })(jQuery);
  58. </script>
  59.  
  60. <!-- like a memo to thememaker but ok whatever dont touch it pls-->
  61.  
  62. <style type="text/css">
  63.  
  64. #updatesbox {/*the styling of the whole updates box; tutorial by http://capably.tumblr.com*/
  65. line-height:100%;/*don't change this!*/
  66. display:block;/*don't change this either lol*/
  67. border:1px solid #eee;/*the border of the whole box; 1px is the width, #eee is the hex color (go to colorpicker.com and pick one)*/
  68. height:12px;/*the height of the box before hover*/
  69. width:30px;/*the width of the box before hover*/
  70. padding:0px 5px 5px 5px;/*don't change this!*/
  71. z-index:0;/*don't change this!*/
  72. top:15px;/*distance from top of page*/
  73. left:15px;/*distance from left of page*/
  74. color:#999;/*color of text*/
  75. position:fixed;/*don't change this!*/
  76. background:#fff;/*background color of updates box*/
  77. overflow:hidden;/*don't change this!*/
  78. text-align:center;/*text alignment of everything in updates box*/
  79. -moz-transition-duration:0.6s;
  80. -webkit-transition-duration:0.6s;
  81. -o-transition-duration:0.6s;
  82. }
  83.  
  84. #updatesbox:hover {/*the updates box after hover*/
  85. height:180px;/*the height of the box after hover*/
  86. width:90px;/*the width of the box after hover*/
  87. -moz-transition-duration:0.5s;
  88. -webkit-transition-duration:0.5s;
  89. -o-transition-duration:0.5s;
  90. }
  91. /*tutorial by meem.co.vu; please don't remove this note*/
  92. #updatestitle {/*the title of the updates box*/
  93. line-height:17px;/*don't change this!*/
  94. font-family:calibri;/*the font of the updates title*/
  95. text-transform:uppercase;/*can be uppercase, lowercase, none*/
  96. font-size:8px;/*font size of updates title*/
  97. }
  98.  
  99. #inside {/*the actual updates*/
  100. font-size:9px;/*the font size of the actual updates*/
  101. font-family:baskerville;/*the font of the actual updates*/
  102. width:90px;/*if you increase the width of #updatesbox:hover , increase the width of #inside by the same value. for instance, if you increase the width of #updatesbox:hover from 90px to 100px, change the width of #inside to 100px*/
  103. line-height:10px;/*don't change this!*/
  104. -moz-transition-duration:0.5s;
  105. -webkit-transition-duration:0.5s;
  106. -o-transition-duration:0.5s;
  107. }
  108.  
  109. #s-m-t-tooltip{
  110. max-width:300px;
  111. margin:15px;
  112. padding:2px 8px;
  113. border:1px solid #DDD;
  114. border-radius:1px;
  115. background:#FFF;
  116. color:#000;
  117. z-index:999999;
  118. font-size:8px;
  119. font-style:normal;
  120. text-transform:uppercase;
  121. box-shadow:1px 1px 3px rgba(0,0,0,.1);}
  122.  
  123. a {
  124. color:{color:link};
  125. text-decoration:none;
  126. -moz-transition-duration:0.5s;
  127. -webkit-transition-duration:0.5s;
  128. -o-transition-duration:0.5s;
  129. }
  130.  
  131. a:hover {
  132. color:{color:hover};
  133. text-decoration:none;
  134. -moz-transition-duration:0.5s;
  135. -webkit-transition-duration:0.5s;
  136. -o-transition-duration:0.5s;
  137. }
  138.  
  139.  
  140. ::-webkit-scrollbar {
  141. height:8px;
  142. width:5px}
  143.  
  144. ::-webkit-scrollbar-thumb:vertical {
  145. background-color:{color:scrollbar};
  146. height:50px;
  147. }
  148.  
  149. ::-webkit-scrollbar-thumb:horizontal {
  150. background-color:{color:scrollbar};
  151. height:8px!important;
  152. }
  153.  
  154. body {
  155. background-color:{color:background};
  156. font-family:cambria;
  157. font-weight:normal;
  158. }
  159.  
  160.  
  161.  
  162.  
  163. h1 {
  164. font-weight:normal;
  165. font-size:10px;
  166. text-align:center;
  167. font-style:normal;
  168. line-height:80%;
  169. letter-spacing:1px;
  170. text-transform:uppercase;
  171. color:{color:text};
  172. }
  173.  
  174. h2 {
  175. font-size:18px;
  176. text-align:left;
  177. line-height:100%;
  178. letter-spacing:-0.5px;
  179. font-family: vernada;
  180. color:{color:title};
  181. font-weight:normal;
  182. padding:5px;
  183. padding-bottom:2px;
  184. }
  185.  
  186.  
  187. blockquote {
  188. border-left:2px solid {color:text};
  189. padding-left:5px;
  190. margin:5px;
  191. }
  192.  
  193.  
  194.  
  195. #sidebar {
  196. position:fixed;
  197. margin-left:190px;
  198. width: 150px;
  199. margin-top:200px;
  200. background-color: transparent ;
  201. padding:0px 5px 0px;
  202. }
  203.  
  204.  
  205. #simg img {
  206. width:160px;
  207. height:110px;
  208. margin-left:-5px;
  209. padding:4px;
  210. border: 10px {color:border};
  211. }
  212.  
  213. #description {
  214. width:160px;
  215. margin-top:7px;
  216. font-size: 11px;
  217. font-family: monospace;
  218. color:{color:sidebar text};
  219. line-height: 10px;
  220. text-align:center;
  221. line-height:10px;
  222. padding:5px 3px 5px;
  223. }
  224.  
  225. .pagination {
  226. margin-top:5px;
  227. text-align:right;
  228. font-size:9px;
  229. width:150px;
  230. }
  231.  
  232.  
  233.  
  234. .links {
  235. margin-top:5px;
  236. width: 160px;
  237. font-size: 10.5px;
  238. font-family: monospace;
  239. text-transform: uppercase;
  240. text-align: center;
  241. }
  242.  
  243. .links a {
  244. padding:4px;
  245. color: {color:sidebar link};
  246. margin-bottom: 8px;
  247. width: 60px;
  248. -webkit-transition:0.3s linear;
  249. }
  250.  
  251. .links a:hover {
  252. color:{color:hover};
  253. }
  254.  
  255.  
  256. #stuffcontainer {
  257. float:left;
  258. margin-left:500px;
  259. margin-top:-10px;
  260. text-align:justify;
  261. color:{color:text};
  262. margin-bottom: 35px;
  263. }
  264.  
  265.  
  266. #stuff {
  267. width:500px;
  268. margin-top:45px;
  269. text-align:justify;
  270. font-size:11px;
  271. line-height:90%;
  272. letter-spacing:0x;
  273. color:{color:text};
  274. }
  275.  
  276. .caption {
  277. width:500px;
  278. text-align:justify;
  279. line-height:120%;
  280. }
  281.  
  282. .asker {
  283. padding:10px;
  284. font-family:arial;
  285. letter-spacing:.6px;
  286. text-align:left;
  287. text-transform:none;
  288.  
  289. }
  290.  
  291. .ans {
  292. text-align:left;
  293. padding:10px;
  294. color:{color:text};
  295. }
  296.  
  297. .audio {
  298. width:500px;
  299. padding-bottom:10px;
  300. background-color:{color:infobg};
  301. }
  302.  
  303. .albumart {
  304. float:left;
  305. padding:0px 10px 10px 0px;
  306. }
  307.  
  308. .albumart img {
  309. width:45px;
  310. height:45px;
  311. }
  312.  
  313. .playercontainer {
  314. text-align:left;
  315. padding:10px;
  316. background-color:#ffffff;
  317. width:480px;
  318. }
  319.  
  320. .audioinfo {
  321. padding:10px;
  322. color:{color:text};
  323. }
  324.  
  325. #postinfo {
  326. width:490px;
  327. padding:5px;
  328. font-size:8px;
  329. color:{color:link};
  330. text-transform:uppercase;
  331. font-style:normal;
  332. letter-spacing:2px;
  333. text-align:center;
  334. -moz-transition-duration:0.5s;
  335. -webkit-transition-duration:0.5s;
  336. -o-transition-duration:0.5s;
  337. background:{color:info};
  338. }
  339.  
  340. #postinfo a {
  341. color:{color:post links};
  342. text-align:center;
  343. letter-spacing:1px;
  344. font-style:normal;
  345. }
  346.  
  347. #postinfo a:hover {
  348. color:{color:hover};
  349. }
  350.  
  351. .note {
  352. text-transform:uppercase;
  353. font-style:normal;
  354. letter-spacing:0px;
  355. font-size: 9px;
  356. text-align:left;
  357. line-height:90%;
  358. margin-left:-40px;
  359. }
  360.  
  361. .note li {
  362. list-style-type:none;
  363. padding:10px 25px 10px 25px;
  364. text-align:left;
  365. margin:0px;
  366. -moz-transition-duration:0.5s;
  367. -webkit-transition-duration:0.5s;
  368. -o-transition-duration:0.5s;
  369. }
  370.  
  371. .tags {
  372. font-style:normal;
  373. width:500px;
  374. text-transform:uppercase;
  375. font-style:normal;
  376. color:{color:tags};
  377. letter-spacing:2px;
  378. line-height:120%;
  379. font-size:8px;
  380. text-align:left;
  381. padding:2px;
  382. -moz-transition-duration:0.5s;
  383. -webkit-transition-duration:0.5s;
  384. -o-transition-duration:0.5s;
  385. }
  386.  
  387. .tags a {
  388. color:{color:tags};
  389. letter-spacing:1px;
  390. padding:1px;
  391. }
  392.  
  393. .tags a:hover {
  394. color:{color:link};
  395. }
  396.  
  397. ul.chat, .chat ol, .chat li {
  398. list-style:none;
  399. margin:0px;
  400. padding:2px;
  401. }
  402.  
  403. .label {
  404. text-decoration:underline;
  405. font-weight:700;
  406. background-color:{color:infobg};
  407. margin-right:5px;
  408. }
  409.  
  410.  
  411.  
  412.  
  413.  
  414. .credit {
  415. position:fixed;
  416. bottom:4px;
  417. right:8px;
  418. font: 9px consolas;
  419. border:1px solid {color:border};
  420. text-transform:uppercase;
  421. letter-spacing: 0px;
  422. padding: 2px;
  423. }
  424.  
  425. .credit a{
  426. color: {color:link};
  427. opacity:0.8;
  428. }
  429.  
  430. .credit a:hover{
  431. color:{color:hover};
  432. opacity:1.0;
  433. }
  434.  
  435.  
  436. {CustomCSS}
  437. </style>
  438. </head>
  439.  
  440.  
  441. <div id="sidebar">
  442.  
  443. <div id="simg"><img src="{image:sidebar}"/>
  444. </div>
  445.  
  446. <div class="links">
  447. <a href="/"title="home">un</a>
  448. <a href="/ask"title="ask">deux</a></a>
  449. <a href="{text:Link1}"title="{text:Link1 Hover}">trois</a>
  450. <a href="{text:Link2}"title="{text:Link2 Hover}">quatre</a>
  451. <a href="{text:Link3}"title="{text:Link3 Hover}">cinq</a>
  452.  
  453. </div>
  454.  
  455. <div id="description">
  456. {block:Description}{Description}{/block:Description}
  457. </div>
  458.  
  459.  
  460.  
  461.  
  462. <div class="pagination">
  463. {block:Pagination}
  464. {block:PreviousPage}<a href="{PreviousPage}"><b><big>-</big></b></a>{/block:PreviousPage} {CurrentPage} of {TotalPages} {block:NextPage}<a href="{NextPage}"><b><big>+</big></b></a>
  465. {/block:NextPage}
  466. {/block:Pagination}
  467. </div>
  468. </div>
  469.  
  470. </div>
  471.  
  472. <div id="stuffcontainer">
  473.  
  474. {block:Posts}
  475.  
  476. <div id="stuff">
  477.  
  478. {block:Text}{block:Title}<h2>{Title}</h2>{/block:Title}{Body}{/block:Text}
  479.  
  480. {block:Quote}<h2>“{Quote}”</h2><h1>{Source}</h1>{/block:Quote}
  481.  
  482. {block:Link}<a href="{URL}"><h2>{Name}</h2></a>
  483. {block:Description}<p>{Description}</p>{/block:Description}{/block:Link}
  484.  
  485. {block:Photo}<center><img src="{PhotoURL-500}"/></center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  486.  
  487. {block:Photoset}<center>{Photoset-500}</center>
  488. {block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  489.  
  490. {block:Chat}<ul class="chat">{block:Title}<h2>{Title}</h2>{/block:Title}{block:Lines}<li>{block:Label}<span class="label">{Label}</span>{/block:Label}&nbsp;{Line}</li>{/block:Lines}</ul>{/block:Chat}
  491.  
  492. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  493.  
  494. {block:Answer}<div id="asker" style="margin-left:-5px;width:500px;"><span style="font-family:cambria;font-size:12px;font-style:italic; margin-left:15px;">{Asker}whispered: {Question}</span></div><br><left><font face="cambria"><span style="font-family:cambria;font-size:10px; marging-left:5px;">{Answer}</span></font>{/block:Answer}
  495.  
  496. {block:Audio}<div class="audio">{block:AlbumArt}<div class="albumart"><img src="{AlbumArtURL}"/></div>{/block:AlbumArt}
  497. <div class="audioinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  498. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times</div>
  499. <br><div class="playercontainer">{AudioPlayerWhite}</div></div>
  500. {block:Caption}{Caption}{/block:Caption}<br>{/block:Audio}
  501.  
  502. <p>
  503.  
  504. {block:Date}<div id="postinfo">{MonthNumberWithZero}-{DayOfMonthWithZero} • <a href="{Permalink}">{24Hour}:{Minutes}</a>{block:NoteCount} • <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}{block:RebloggedFrom} • <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  505. {block:ContentSource} • <a href="{SourceURL}">{SourceLink}</a>{/block:ContentSource}</div>{/block:Date}
  506. {block:HasTags}
  507. <div class="tags">
  508. {block:Tags}<a href="{TagURL}">#&nbsp;{Tag}</a>{/block:Tags}</div>
  509. {/block:HasTags}
  510. <div class="note">
  511. {block:PostNotes}{PostNotes}{/block:PostNotes}
  512. </div>
  513. </div>
  514. {/block:Posts}
  515.  
  516.  
  517. </div>
  518.  
  519. <!-- begin updates box -->
  520. <div id="updatesbox">
  521. <span id="updatestitle">updates</span>
  522. <div id="inside">
  523. <div style="color:#000000; background-color:#81BEF7">text<p></div>
  524. okay hi so this is where you put your updates or whatever it is you want to put! <br>type &lt;br&gt; to go to a new line :) if you want to make it longer, just use ctrl + f to search for "#updatesbox:hover" <!--should be under <style type="text/css">--> and change the height! if you need help, msg me on my tumblr!
  525. </div>
  526. </div>
  527. <!-- end updates box; it would be nice if you left the below comment in the code! :)
  528. updates box tutorial by http://capably.tumblr.com -->
  529.  
  530. <div class="credit"><a href="http://herohdales.tumblr.com/"><center>HT</center></a></div>
  531.  
  532. </body>
  533.  
  534.  
  535. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement