Advertisement
jackirps

theme 02 // settle down

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