septims

Clinical

Dec 24th, 2013
4,036
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.03 KB | None | 0 0
  1. <!--
  2.  
  3. theme by septim
  4.  
  5. ╔╔ ══ ══ Rules:
  6. ║║ -do not use as base
  7. ╚╚ ══ ╗╗ -do not steal bits of code
  8. ║║ -do not remove credits
  9. ══ ══ ╝╝
  10.  
  11.  
  12. -->
  13.  
  14.  
  15. <!DOCTYPE html>
  16. <head>
  17.  
  18. <title>{Title}</title>
  19.  
  20. <link rel="shortcut icon" href="{Favicon}">
  21. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  22. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  23.  
  24. <!--Default Variables-->
  25.  
  26. <meta name="color:Background" content="#ffffff"/>
  27. <meta name="color:Text" content="#000000"/>
  28. <meta name="color:link" content="#000000"/>
  29. <meta name="color:title"content="#000000"/>
  30. <meta name="color:blog title"content="#000000"/>
  31. <meta name="color:scrollbar" content="#d5d5d5" />
  32. <meta name="color:sidebar links" content="#eeeeee"/>
  33.  
  34. <meta name="image:Sidebar image" content=""/>
  35.  
  36. <meta name="if:Show Sidebar Image" content="1"/>
  37. <meta name="if:Show Tags" content="0">
  38. <meta name="if:Show Title" content="1"/>
  39. <meta name="text:Link 1 URL" content="" />
  40. <meta name="text:Link 1" content="" />
  41. <meta name="text:Link 2 URL" content="" />
  42. <meta name="text:Link 2" content="" />
  43. <meta name="text:Link 3 URL" content="" />
  44. <meta name="text:Link 3" content="" />
  45.  
  46.  
  47.  
  48.  
  49. <!-- jquery -->
  50.  
  51.  
  52. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  53.  
  54. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  55.  
  56. <script>
  57.  
  58. (function($){
  59.  
  60. $(document).ready(function(){
  61.  
  62. $("a[title]").style_my_tooltips({
  63.  
  64. tip_follows_cursor:true,
  65.  
  66. tip_delay_time:30,
  67.  
  68. tip_fade_speed:300,
  69.  
  70. attribute:"title"
  71.  
  72. });
  73.  
  74. });
  75.  
  76. })(jQuery);
  77.  
  78. </script>
  79.  
  80. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
  81.  
  82. <script type="text/javascript">
  83. jQuery(document).ready(function() {
  84. jQuery(".more").hide();
  85. //toggle the componenet with class msg_body
  86. jQuery(".click").click(function()
  87. {
  88. jQuery(this).next(".more").slideToggle(500);
  89. });});
  90. </script>
  91.  
  92.  
  93.  
  94. <!--CSS customization here. -->
  95.  
  96. <style type="text/css">
  97.  
  98.  
  99.  
  100.  
  101. #s-m-t-tooltip{
  102. font-size:9px;
  103. position:absolute;
  104. margin-top: 15px;
  105. letter-spacing:1px;
  106. z-index:9999;
  107. background:white;
  108. color:{color:text};
  109. text-transform:uppercase;
  110. padding:2px 3px 2px 3px;
  111. -webkit-transition:all 0.3s;
  112. -moz-transition:all 0.3s;
  113. -ms-transition:all 0.3s;
  114. -o-transition:all 0.3s;
  115. transition:all 0.3s;
  116. }
  117.  
  118.  
  119.  
  120.  
  121. /*scrollbar*/
  122. ::-webkit-scrollbar{height: 5px;
  123. width: 4px;
  124. -webkit-border-radius: 0px;
  125. background-color:{color:background}}
  126. ::-webkit-scrollbar-thumb{background-color:{color:background};
  127. border:1px solid {color:scrollbar};}
  128. ::-webkit-scrollbar-track{background-color:{color:background};}
  129.  
  130.  
  131.  
  132.  
  133.  
  134. #text {position:fixed;
  135. bottom:5px;
  136. right:10px;
  137. text-transform:uppercase;
  138. font-family:arial;
  139. padding:5px 5px;
  140. font-size:14px;
  141. transform:rotate(90deg);
  142. -ms-transform:rotate(90deg); /* IE 9 */
  143. -webkit-transform:rotate(90deg); /* Safari and Chrome */}
  144. #text a {text-decoration:none;}
  145.  
  146. /*main structure*/
  147. blockquote {padding:5px 0 5px 30px;
  148. border-left:1px dotted {color:link};margin-left:0;
  149. }
  150.  
  151. body {
  152. background:{color:background};
  153. color:{color:text};
  154. font-family:courier new;
  155. font-size:10px;
  156. text-align:justify;
  157. margin:0;
  158. line-height:14px;}
  159.  
  160. a {color:{color:link};
  161. border-bottom:1px dotted transparent;
  162. text-decoration:none;}
  163.  
  164. a:hover {
  165. border-bottom:1px dotted {color:link};}
  166.  
  167.  
  168. img{
  169. border:none;
  170. text-decoration:none}
  171.  
  172. b, strong {
  173. color:{color:title}}
  174. i, em {
  175. color:{color:text}}
  176. p {
  177. margin-top:5px;
  178. margin-bottom:5px}
  179. ol {
  180. list-style:normal;}
  181. ul {
  182. list-style:square;}
  183.  
  184. small {
  185. font-size:8px;}
  186.  
  187. big {
  188. font-size:12px;}
  189.  
  190.  
  191.  
  192.  
  193. #title {font-size:12px;
  194. line-height:18px;
  195. font-weight:bold;
  196. margin-bottom:20px;
  197. text-transform:uppercase;
  198. text-align:left;
  199. color:{color:title};}
  200. #title a {color:{color:title};}
  201.  
  202.  
  203.  
  204.  
  205. /*header*/
  206. #headers {
  207. margin-top:100px;
  208. width:250px;
  209. margin-left:550px;
  210. position:fixed;
  211. }
  212.  
  213. #bat {
  214. float:left;
  215. margin-right:10px;}
  216. #bat img {width:80px;
  217. height:80px;
  218. border:5px solid {color:sidebar links};}
  219. #bat a {padding:0;
  220. border:0;}
  221.  
  222.  
  223.  
  224. #blogt {font-size:14px;
  225. font-weight:bold;
  226. margin-top:8px;
  227. letter-spacing:1px;
  228. text-transform:uppercase;}
  229. #blogt a {color:{color:blog title};}
  230.  
  231.  
  232. #standardlinks {
  233. font-size:9px;
  234. letter-spacing:1px;
  235. line-height:16px;
  236. text-align:right;
  237. line-height:20px;
  238. margin-bottom:50px;
  239. text-transform:uppercase;
  240.  
  241. }
  242.  
  243.  
  244. #standardlinks a {
  245. margin-bottom:10px;
  246. display:block;border:none;
  247. padding:0 10px;
  248. background:{color:sidebar links};
  249. text-decoration:none;
  250. -webkit-transition:all 0.8s;
  251. -moz-transition:all 0.8s;
  252. -ms-transition:all 0.8s;
  253. -o-transition:all 0.8s;
  254. transition:all 0.8s;
  255. }
  256. #standardlinks a:hover {
  257. padding-right:40px;
  258. background:{color:link};
  259. color:{color:background};
  260. -webkit-transition:all 0.8s;
  261. -moz-transition:all 0.8s;
  262. -ms-transition:all 0.8s;
  263. -o-transition:all 0.8s;
  264. transition:all 0.8s;}
  265. .click {cursor:help;
  266. margin-bottom:10px;
  267. display:block;border:none;
  268. padding:0 10px;
  269. background:{color:sidebar links};
  270. text-decoration:none;
  271. -webkit-transition:all 0.8s;
  272. -moz-transition:all 0.8s;
  273. -ms-transition:all 0.8s;
  274. -o-transition:all 0.8s;
  275. transition:all 0.8s;}
  276. .click:hover { padding-right:40px;
  277. background:{color:link};
  278. color:{color:background};
  279. -webkit-transition:all 0.8s;
  280. -moz-transition:all 0.8s;
  281. -ms-transition:all 0.8s;
  282. -o-transition:all 0.8s;
  283. transition:all 0.8s;}
  284.  
  285. #description {min-height:70px;
  286. margin:13px 0 25px 0;
  287. line-height:15px;
  288. text-align:justify;
  289. }
  290.  
  291.  
  292. /*pagination*/
  293. #pagination {
  294. text-align:center;
  295. margin:50px 0;
  296. font-weight:bold;
  297. text-transform:uppercase;
  298. }
  299. #pagination a {
  300. margin:0 15px;
  301. }
  302.  
  303. /*container*/
  304. #con {
  305. left:50%;
  306. margin-left:-250px;
  307. position:absolute;
  308. }
  309.  
  310.  
  311.  
  312. /*posts*/
  313.  
  314. #entries {
  315. margin-top:100px;
  316. width:500px;
  317. }
  318.  
  319.  
  320.  
  321. #posts {
  322. width:500px;
  323. {block:IndexPage}
  324. margin-bottom:100px;
  325. {/block:IndexPage}
  326. {block:PermalinkPage}
  327. margin-bottom:50px;
  328. {/block:PermalinkPage}
  329. }
  330. #posts img {
  331. max-width:500px;
  332. display:block;
  333. }
  334.  
  335.  
  336.  
  337.  
  338. #titlequote{
  339. font-size:14px;
  340. line-height:18px;
  341. font-weight:bold;
  342. color:{color:title};
  343. }
  344.  
  345. #source {
  346. padding-top:10px;}
  347.  
  348. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  349. .caption img{max-width:300px;}
  350. .caption {width:100%;
  351. margin-top:10px;
  352. text-transform:none;
  353. }
  354.  
  355.  
  356.  
  357.  
  358. /*audio*/
  359.  
  360.  
  361. .tumblr_audio_player {
  362. border: none;
  363. padding: 0px;
  364. margin: 0px;
  365. height:50px;
  366. margin-top:-6px;
  367. margin-left:-6px;
  368. width: 500px;
  369. }
  370.  
  371. .player {width:40px;
  372. overflow:hidden;
  373. height:40px;
  374. border:5px solid black;
  375. position:absolute;}
  376.  
  377. .audio_art {float:left;
  378. padding-right:10px;}
  379.  
  380.  
  381. .audio_info {
  382. height:38px;
  383. z-index:-1;
  384. text-transform:uppercase;
  385. background:black;
  386. color:white;
  387. font-size:12px;
  388. padding-top:12px;
  389. text-align:center
  390. }
  391.  
  392.  
  393.  
  394.  
  395. /*asks*/
  396. .q {
  397. text-align:right;
  398. }
  399. .as {
  400. font-weight:bold;}
  401. .as a {padding:0;}
  402. .a {
  403. margin-top:10px;
  404. padding-top:10px;
  405. text-align:justify}
  406.  
  407.  
  408.  
  409.  
  410.  
  411.  
  412.  
  413. .chat ol {
  414. padding:0;
  415. line-height:180%;
  416. list-style:none;
  417. }
  418.  
  419. .line.odd {
  420. background:black;
  421. color:white;
  422. padding:5px;
  423. }
  424. .line.odd .label {color:white;}
  425. .line.even {
  426. padding:5px;
  427. }
  428.  
  429. .label {font-weight:bold;
  430. padding-right:1px;
  431. letter-spacing:1px;
  432. text-transform:uppercase;
  433. color:{color:title};
  434. }
  435.  
  436.  
  437.  
  438.  
  439.  
  440. /*permalink and notes*/
  441.  
  442.  
  443. #permalink {
  444. margin-top:10px;
  445. text-transform:uppercase;
  446.  
  447. }
  448. #permalink a {margin-right:10px;
  449. }
  450.  
  451.  
  452. .tags {{block:ifNotShowTags}
  453. {block:IndexPage}
  454. display:none;
  455. {/block:IndexPage}
  456. {/block:ifNotShowTags}
  457. word-break:break-all;
  458. border-top:1px dotted {color:link};
  459. border-bottom:1px dotted {color:link};
  460. }
  461. .tags a{
  462. text-transform:none;}
  463.  
  464.  
  465. .pagenotes {
  466. {block:IndexPage}
  467. display: none!important;
  468. {/block:IndexPage}
  469. {block:PermalinkPage}
  470. width:500px;
  471. {/block:PermalinkPage}
  472. text-align:left;
  473.  
  474. }
  475. .pagenotes img {
  476. display:none!important;}
  477. .pagenotes li {
  478. list-style-type:none;
  479. padding:5px 0px;
  480. text-align:left;
  481. margin:0 0 0 -40px;
  482. font-size:9px;
  483. text-transform:uppercase;
  484. }
  485. .t {
  486. font-size:12px;
  487. font-weight:bold;
  488. letter-spacing:1px;
  489. color:{color:title};
  490. text-transform:uppercase;}
  491.  
  492.  
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  
  500.  
  501.  
  502. {CustomCSS}
  503.  
  504.  
  505. </style>
  506.  
  507.  
  508.  
  509.  
  510.  
  511.  
  512.  
  513.  
  514. </head>
  515.  
  516. <body>
  517.  
  518. <div id="con">
  519.  
  520. <div id="headers">
  521. {block:IfShowSidebarImage}
  522. <div id="bat">
  523. <a href="/"><img src="{image:Sidebar image}"></a>
  524. </div>
  525. {/block:IfShowSidebarImage}
  526. {block:IfShowTitle}
  527. <div id="blogt"><a href="/">{Title}</a></div>
  528. {/block:IfShowTitle}
  529. <div id="description">{Description}</div>
  530.  
  531. <div id="standardlinks">
  532. <a href="/">Index</a>
  533. <a href="/ask">Message</a>
  534. <a href="/archive">archive</a>
  535. <div class="click">links</div>
  536. <div class="more">
  537. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  538. {block:ifLink2}<a href="{text:Link 2 URL}">{text:Link 2}</a>{/block:ifLink2}
  539. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a>{/block:ifLink3}
  540. </div>
  541. </div>
  542.  
  543.  
  544.  
  545. </div>
  546.  
  547.  
  548.  
  549.  
  550. <div id="entries">
  551.  
  552. {block:Posts}
  553. <div id="posts">
  554.  
  555.  
  556. {block:Quote}
  557.  
  558.  
  559. <div id="titlequote">{Quote}</div>
  560. {block:Source}<div id="source">{Source}</div>{/block:Source}
  561. {/block:Quote}
  562.  
  563.  
  564.  
  565. {block:Text}
  566.  
  567. {block:Title}
  568. <div id="title">{Title}</div>{/block:Title}
  569. {Body}
  570.  
  571.  
  572. {/block:Text}
  573.  
  574. {block:Link}
  575.  
  576. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  577.  
  578. {/block:Link}
  579.  
  580. {block:Chat}
  581. {block:Title}
  582. <h1>{Title}</h1>
  583. {/block:Title}
  584. <div class="chat">
  585. <ol>{block:Lines}
  586. <li class="line {Alt}">
  587. {block:Label}
  588. <span class="label">
  589. {Label}</span>
  590. {/block:Label}{Line}</li>
  591. {/block:Lines}
  592. </ol></div>
  593. {/block:Chat}
  594.  
  595. {block:Photo}
  596. <center>{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>
  597.  
  598. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  599.  
  600.  
  601. {/block:Photo}
  602.  
  603. {block:Photoset}
  604.  
  605. <center>{Photoset-500}</center>
  606.  
  607. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  608.  
  609.  
  610. {/block:Photoset}
  611.  
  612. {block:Video}
  613. {Video-500}
  614. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  615. {/block:Video}
  616.  
  617.  
  618.  
  619. {block:Audio}
  620.  
  621.  
  622. {block:AudioPlayer}
  623.  
  624. <div class="player">{AudioPlayerBlack}</div>
  625. <div class="audio_info">{block:TrackName}{TrackName}{/block:TrackName}<br>{block:Artist}{Artist}{/block:Artist}</div>
  626. {/block:AudioPlayer}
  627. {/block:Audio}
  628.  
  629. {block:Answer}
  630. <div class="q">
  631. {Question}
  632. <div class="as">asked by {Asker}</div>
  633. </div>
  634.  
  635. <div class="a">{Answer}</div>
  636.  
  637. {/block:Answer}
  638.  
  639.  
  640.  
  641. {block:Date}
  642.  
  643. <div id="permalink">
  644.  
  645. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  646. <a href="{Permalink}" style="font-weight:bold">{12Hour}:{Minutes} {AmPm}</a>{block:NoteCount}<a href="{Permalink}">+ {NoteCount}</a>{/block:NoteCount}
  647. {block:PermalinkPage}
  648. {block:ContentSource}
  649. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  650. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  651. {/block:SourceLogo}
  652. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  653. {/block:ContentSource}
  654. {block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource} / <a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  655. {/block:PermalinkPage}
  656.  
  657. </div>
  658. {/block:Date}
  659.  
  660.  
  661.  
  662. </div>
  663.  
  664.  
  665. {block:PostNotes}
  666. <div class="pagenotes">
  667. {block:NoteCount}<div class="t">Notes</div>{/block:NoteCount}
  668. {PostNotes}
  669. </div>
  670. {/block:PostNotes}
  671.  
  672.  
  673. {/block:Posts}
  674.  
  675.  
  676. {block:Pagination}
  677. <div id="pagination">
  678. {block:PreviousPage}
  679. <a href="{PreviousPage}">< PREVIOUS PAGE</a>
  680. {/block:PreviousPage}
  681. {block:NextPage}
  682. <a href="{NextPage}">NEXT PAGE ></a>
  683. {/block:NextPage}
  684. </div>
  685. {/block:Pagination}
  686.  
  687.  
  688.  
  689.  
  690. </div>
  691.  
  692.  
  693. <div id="text">
  694. <a href="http://farahmir.tumblr.com" target="_blank" title="septim">S</a></div>
  695. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment