Advertisement
stevebuckey

sunhands theme

Jul 1st, 2014
3,307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.37 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <head>
  4.  
  5.  
  6. <title>{Title}</title>
  7.  
  8.  
  9. <!----------------------------------------------->
  10. <!----------------------------------------------->
  11. <!----- S T E V E B U C K E Y T H E M E S ----->
  12. <!----------------------------------------------->
  13. <!----------------------------------------------->
  14.  
  15.  
  16. <link rel="shortcut icon" href="{Favicon}">
  17. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  18. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  19.  
  20. <!--Default Variables-->
  21.  
  22. <meta name="color:background" content="#ffffff"/>
  23. <meta name="color:body" content="#aaaaaa"/>
  24. <meta name="color:link" content="#000000"/>
  25. <meta name="color:description" conent="#ddd"/>
  26. <meta name="color:sidebar links" content="#cecece"/>
  27. <meta name="color:sidebar links hover" content="eee"/>
  28. <meta name="color:tags" content="#eee"/>
  29. <meta name="color:title" content="eee"/>
  30. <meta name="color:scrollbar" content="#000000"/>
  31. <meta name="color:scrollbar bg" content="#ffffff"/>
  32. <meta name="text:Link 1 URL" content="" />
  33. <meta name="text:Link 1" content="" />
  34. <meta name="text:Link 2 URL" content="" />
  35. <meta name="text:Link 2" content="" />
  36. <meta name="text:Link 3 URL" content="" />
  37. <meta name="text:Link 3" content="" />
  38.  
  39.  
  40. <!-- jquery for tooltips-->
  41.  
  42.  
  43. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  44.  
  45. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  46.  
  47. <script>
  48.  
  49. (function($){
  50.  
  51. $(document).ready(function(){
  52.  
  53. $("a[title]").style_my_tooltips({
  54.  
  55. tip_follows_cursor:true,
  56.  
  57. tip_delay_time:30,
  58.  
  59. tip_fade_speed:300,
  60.  
  61. attribute:"title"
  62.  
  63. });
  64.  
  65. });
  66.  
  67. })(jQuery);
  68.  
  69. </script>
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76. <!--CSS customization here. -->
  77.  
  78. <style type="text/css">
  79.  
  80. #s-m-t-tooltip{
  81. position:absolute;
  82. margin-top: 15px;
  83. z-index:9999;
  84. background:{color:background};
  85. }
  86.  
  87.  
  88. ::-webkit-scrollbar-thumb {
  89. height:auto;
  90. background-color:{color:Scrollbar};
  91. }
  92.  
  93.  
  94. ::-webkit-scrollbar {
  95. height:10px;
  96. width:3px;
  97. background-color:{color:ScrollbarBg};
  98. }
  99.  
  100.  
  101.  
  102. /*basics*/
  103. blockquote {padding:0px 0px 0px 15px;
  104. border-left:1px solid #eee;
  105. margin-left:7px;
  106. }
  107.  
  108. body {
  109. background:{color:background};
  110. color:{color:body};
  111. font-family:arial;
  112. font-size:8.5px;
  113. text-align:justify;
  114. margin:0;
  115. letter-spacing:1px;
  116. line-height:14px;}
  117.  
  118.  
  119. a {
  120. color:{color:link};
  121. text-decoration:none;
  122. }
  123.  
  124. a:hover {
  125. text-decoration:bold;}
  126.  
  127. img{opacity:1;
  128. border:none;
  129. text-decoration:none}
  130.  
  131.  
  132. small {
  133. font-size:9px;}
  134.  
  135. big {
  136. font-size:12px;}
  137.  
  138.  
  139. #title {
  140. font-family:arial;
  141. font-size:12px;
  142. line-height:18px;
  143. font-weight:bold;
  144. margin-bottom:10px;
  145. text-transform:none;
  146. text-align:right;
  147. color:{color:title}}
  148.  
  149.  
  150. /*sidebar*/
  151. #sidebar {text-align:left;
  152. position:fixed;
  153. margin-left:-305px;
  154. margin-top:215px;
  155. width:180px;
  156. border-right:1px solid #eee; padding:0px 10px 0px 0px;
  157. }
  158.  
  159. #sidebarim {
  160. margin-bottom:20px
  161.  
  162. }
  163.  
  164. #links {
  165. line-height:16px;
  166. text-transform:lowercase;
  167. text-align:right;
  168. color:{color:sidebar links};
  169. }
  170.  
  171.  
  172. #links a {
  173. font-size:7px;
  174. text-align:justify;
  175. color:#000;
  176. text-transform:uppercase;
  177. font-style:normal;
  178. color:{color:sidebar links};
  179.  
  180. }
  181.  
  182. #links a:hover {
  183. font-style:italic;
  184. color:{color:sidebar links hover};
  185.  
  186. }
  187.  
  188.  
  189. #description {
  190. font-family:arial;
  191. font-size:8px;
  192. margin:10px 0;
  193. text-align:right;
  194. color:{color:description};
  195. }
  196.  
  197.  
  198. /*pagination*/
  199.  
  200. #pagination {
  201. text-align:center;
  202. width:86px;
  203. margin-left:165px;
  204. text-transform:uppercase;
  205. font-weight:bold;
  206. letter-spacing:4px;
  207. }
  208. #pagination a {
  209. padding:15px 15px 15px 15px;
  210. }
  211.  
  212. /*container*/
  213. #con {
  214. left:50%;
  215. margin-left:-250px;
  216. position:absolute;
  217. }
  218.  
  219.  
  220.  
  221. /*posts*/
  222.  
  223. #entries {
  224. margin-top:75px;
  225. margin-left:25px;
  226. width:400px;
  227. line-height:11px;
  228. }
  229.  
  230.  
  231.  
  232. #posts {
  233. width:400px;
  234. {block:IndexPage}
  235. margin-bottom:75px;
  236. {/block:IndexPage}
  237. {block:PermalinkPage}
  238. margin-bottom:50px;
  239. {/block:PermalinkPage}
  240.  
  241. }
  242. #posts img {
  243. max-width:400px;
  244. }
  245.  
  246. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  247. .caption {width:100%;
  248. margin-top:10px;
  249.  
  250. }
  251.  
  252. /*quote*/
  253.  
  254. #titlequote{text-align:left;
  255. font-size:12px;
  256. line-height:18px;
  257. font-weight:bold;
  258. }
  259. #source {
  260. font-size:7px;
  261. text-transform:uppercase;
  262. margin-top:15px;
  263. margin-left:15px;}
  264.  
  265. /*audio*/
  266.  
  267. .player {
  268. width:25px;
  269. height:25px;
  270. overflow:hidden;
  271. position:absolute;
  272. background-color:#ddd;}
  273.  
  274. .audioinfo {
  275. margin-left:50px;
  276. }
  277.  
  278.  
  279. /*asks*/
  280.  
  281. #ask {
  282. padding:5px;
  283. padding-bottom:10px;
  284. padding-left:10px;
  285. text-align:left;
  286. color:{color:text};
  287. line-height:150%;
  288. }
  289.  
  290. #ask img {
  291. margin-left:-2px;
  292. margin-bottom:-2px;
  293. padding:0px;
  294. border: 2px solid;
  295. color:#f5f5f5;
  296. opacity:.90;
  297. border-radius:70px;
  298. }
  299.  
  300.  
  301.  
  302.  
  303. /*chat*/
  304.  
  305. .chat ol {
  306. padding:0;
  307. list-style:none;
  308. }
  309. .line {padding:5px 0;}
  310.  
  311. .label {font-weight:bold;
  312. }
  313.  
  314.  
  315.  
  316.  
  317.  
  318. /*permalink and notes*/
  319.  
  320. #permalink {
  321. margin-top:15px;
  322. font-size:8px;
  323. text-transform:uppercase;
  324. line-height:15px;
  325. }
  326. #permalink a {margin-right:10px;
  327. }
  328.  
  329.  
  330. .tags {
  331. word-break:break-all;
  332. font-size:8px;
  333. width:375px;
  334. text-transform:none;
  335. color:{color:tags};
  336. }
  337.  
  338. .pagenotes {
  339. {block:IndexPage}
  340. display: none!important;
  341. {/block:IndexPage}
  342. width:400px;
  343. text-align:left;
  344.  
  345. }
  346. .pagenotes img {
  347. display:none!important;}
  348. .pagenotes li {
  349. list-style-type:none;
  350. padding:5px 0px;
  351. text-align:left;
  352. margin:0 0 0 -40px;
  353. }
  354.  
  355.  
  356. #stuff {
  357. position:fixed;
  358. text-align:center;
  359. border:1px solid #ddd;
  360. bottom:12px;
  361. right:12px;
  362. height:12px;
  363. width:12px;
  364. font-family:arial;
  365. font-size:8px;
  366. letter-spacing:1px;
  367. text-transform:uppercase;
  368. padding: 3px;
  369. }
  370.  
  371.  
  372.  
  373. {CustomCSS}
  374.  
  375.  
  376. </style>
  377.  
  378.  
  379.  
  380. </head>
  381.  
  382. <body>
  383.  
  384. <div id="con">
  385.  
  386. <div id="sidebar">
  387. <div id="title">{title}</div>
  388. <div id="description" style="letter-spacing:1px">{description}</div>
  389. <div id="links">
  390. <a href="/">home</a>
  391. <a href="/ask">ask</a>
  392. <a href="{text:Link 1 URL}">{text:Link 1}</a>
  393. <a href="{text:Link 2 URL}">{text:Link 2}</a>
  394. <a href="{text:Link 3 URL}">{text:Link 3}</a></div>
  395.  
  396. </div>
  397.  
  398.  
  399.  
  400. <div id="entries">
  401.  
  402. {block:Posts}
  403. <div id="posts">
  404.  
  405.  
  406. {block:Quote}
  407.  
  408.  
  409. <center><div id="titlequote">“{Quote}”</div>
  410. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  411. {/block:Quote}
  412.  
  413.  
  414.  
  415. {block:Text}
  416.  
  417. {block:Title}
  418. <div id="title">{Title}</div>{/block:Title}
  419. {Body}
  420. {/block:Text}
  421.  
  422. {block:Link}
  423. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  424. {/block:Link}
  425.  
  426. {block:Chat}
  427. {block:Title}
  428. <h1>{Title}</h1>
  429. {/block:Title}
  430. <div class="chat">
  431. <ol>{block:Lines}
  432. <li class="line {Alt}">
  433. {block:Label}
  434. <span class="label">
  435. {Label}</span>
  436. {/block:Label}{Line}</li>
  437. {/block:Lines}
  438. </ol></div>
  439. {/block:Chat}
  440.  
  441. {block:Photo}
  442. {LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}
  443. {/block:Photo}
  444.  
  445. {block:Photoset}
  446. {Photoset-400}
  447. {/block:Photoset}
  448.  
  449. {block:Video}
  450. {Video-400}
  451. {/block:Video}
  452.  
  453. {block:Audio}
  454. <div class="player">{AudioPlayerWhite}</div>
  455. <div class="audioinfo">
  456. {block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  457. </div>
  458. {/block:Audio}
  459.  
  460. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}">&ensp;<b>{asker}</b> said: <i>{Question}</i></div><div id="ans"></i></b><br></span> </div><left><div style="padding:2px 6px 2px 6px;margin-top:-10px;font-size:8.5px;background-color:#eee"><font face="arial">{Answer}</div>{/block:answer}
  461.  
  462. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  463.  
  464. <center>{block:Date}
  465.  
  466. {block:PermalinkPage}
  467. <div class="info">
  468. {block:Date}<a href="{Permalink}">{TimeAgo}</a>{/block:Date} / {block:NoteCount} {NoteCount} notes / {/block:NoteCount}{block:RebloggedFrom} <a href="{ReblogParentURL}"title="{ReblogParentName}">via</a> / <a href="{ReblogRootURL}"title="{ReblogRootName}">source</a>{/block:RebloggedFrom} <div class="tagss">tagged:{block:HasTags}{block:Tags} #<a href="{TagURL}">{Tag}</a>{/block:Tags}{/block:HasTags}</div></div>{/block:PermalinkPage}
  469.  
  470. {block:IndexPage}
  471. <div id="permalink">
  472. <br><br><br>
  473. <b><a href="{Permalink}">{12Hour}:{Minutes} {AmPm}</a>{block:NoteCount}<a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}</b> {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}" style="color:{color:tags}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}<br>
  474. </div>{/block:IndexPage}
  475. {/block:Date}</center>
  476.  
  477.  
  478.  
  479. </div>
  480.  
  481.  
  482. {block:PostNotes}
  483. <div class="pagenotes">
  484. {PostNotes}
  485. </div>
  486. {/block:PostNotes}
  487.  
  488.  
  489. {/block:Posts}
  490.  
  491. <div id="pagination" style="margin-bottom:10px">
  492. {block:Pagination}
  493. {block:PreviousPage}
  494. <a href="{PreviousPage}">previous </a>
  495. {/block:PreviousPage}
  496.  
  497.  
  498. {block:NextPage}
  499. <a href="{NextPage}">next</a>
  500. {/block:NextPage}
  501. {/block:Pagination}<p></p><p></p>
  502. </div>
  503.  
  504. </div>
  505.  
  506. </div>
  507.  
  508.  
  509. {block:ContentSource}
  510. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  511. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  512. {/block:SourceLogo}
  513. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  514. {/block:ContentSource}
  515.  
  516.  
  517. <div id="stuff"><a href="http://stevebuckeythemes.tumblr.com" title="stevebuckeythemes">s</a></div>
  518. </div>
  519. </div>
  520.  
  521. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement