Advertisement
mayayo

theme 4; amnesia

Jul 5th, 2014
490
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.77 KB | None | 0 0
  1. <!--theme by mqlfoy-->
  2. <!--do not steal/take credit/remove credit etc-->
  3. <!--do nOT-->
  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. <link href='http://fonts.googleapis.com/css?family=Lato:300,400,700,900' rel='stylesheet' type='text/css'>
  15.  
  16. <link href='http://fonts.googleapis.com/css?family=Inconsolata:400,700' rel='stylesheet' type='text/css'>
  17.  
  18. <!--Default Variables-->
  19.  
  20. <meta name="color:Background" content="#e2e2e2"/>
  21. <meta name="color:Text" content="#000"/>
  22. <meta name="color:Link" content="#000000"/>
  23. <meta name="color:title" content="#000"/>
  24. <meta name="color:description" content="#000"/>
  25. <meta name="color:link border" content="#000"/>
  26. <meta name="color:link background" content="#000"/>
  27. <meta name="color:border" content="#cfcfcf"/>
  28. <meta name="color:title hover" content="#fff"/>
  29. <meta name="image:Sidebar Image" content=""/>
  30. <meta name="color:sidebar" content="#f5f5f5"/>
  31. <meta name="color:posts" content="#fff"/>
  32.  
  33. <meta name="text:Link 1 URL" content="" />
  34. <meta name="text:Link 1" content="" />
  35. <meta name="text:Link 2 URL" content="" />
  36. <meta name="text:Link 2" content="" />
  37. <meta name="text:Link 3 URL" content="" />
  38. <meta name="text:Link 3" content="" />
  39. <meta name="text:Link 4 URL" content="" />
  40. <meta name="text:Link 4" content="" />
  41.  
  42.  
  43. <!-- jquery for tooltips-->
  44.  
  45.  
  46. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  47.  
  48. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  49.  
  50. <script>
  51.  
  52. (function($){
  53.  
  54. $(document).ready(function(){
  55.  
  56. $("a[title]").style_my_tooltips({
  57.  
  58. tip_follows_cursor:true,
  59.  
  60. tip_delay_time:30,
  61.  
  62. tip_fade_speed:300,
  63.  
  64. attribute:"title"
  65.  
  66. });
  67.  
  68. });
  69.  
  70. })(jQuery);
  71.  
  72. </script>
  73. <!--CSS customization here. -->
  74.  
  75. <style type="text/css">
  76.  
  77. #s-m-t-tooltip{
  78. position:absolute;
  79. margin-top: 15px;
  80. z-index:9999;
  81. background:{color:background};
  82. }
  83.  
  84.  
  85.  
  86. /*basics*/
  87. blockquote {padding:5px 0 5px 30px;
  88. border-left:1px solid {color:border};
  89. margin-left:30px;
  90. }
  91.  
  92. body {
  93. background:{color:background};
  94. color:{color:text};
  95. font-family:'lato',sans-serif,'helvetica',arial;
  96. font-size:11px;
  97. text-align:justify;
  98. margin:0;
  99. line-height:16px;}
  100.  
  101.  
  102. a {
  103. color:{color:link};
  104. text-decoration:none;
  105. }
  106.  
  107. a:hover {
  108. text-shadow:2px 2px 2px #aaa;
  109. -webkit-transition:all 0.8s;
  110. -moz-transition:all 0.8s;
  111. -ms-transition:all 0.8s;
  112. -o-transition:all 0.8s;
  113. transition:all 0.8s;
  114. }
  115.  
  116. ::-webkit-scrollbar-thumb{
  117. background:#000;
  118. border:3px solid #fff;
  119. height:auto;
  120. }
  121.  
  122. ::-webkit-scrollbar {
  123. height:auto;
  124. width:11px;
  125. background:#aaaaaa;
  126. border:3px solid #ffffff;
  127. }
  128.  
  129.  
  130. img{
  131. border:none;
  132. text-decoration:none
  133. -webkit-transition:all 0.8s;
  134. -moz-transition:all 0.8s;
  135. -ms-transition:all 0.8s;
  136. -o-transition:all 0.8s;
  137. transition:all 0.8s;
  138. }
  139.  
  140. small {
  141. font-size:9px;}
  142.  
  143. big {
  144. font-size:12px;}
  145.  
  146.  
  147. #fries {
  148. font-size:20px;
  149. line-height:18px;
  150. font-weight:normal;
  151. font-family:'lato', sans-serif;
  152. margin-bottom:10px;
  153. text-transform:uppercase;
  154. text-align:center;
  155.  
  156. }
  157.  
  158.  
  159. /*sidebar*/
  160. #sidebar {
  161. margin-left:0px;
  162. text-align:left;
  163. padding:10px;
  164. background:{color:sidebar};
  165. position:fixed;
  166. margin-top:-5px;
  167. width:502px;
  168. height:70px;
  169. overflow:hidden;
  170. -webkit-transition:all 1s;
  171. -moz-transition:all 1s;
  172. -ms-transition:all 1s;
  173. -o-transition:all 1s;
  174. transition:all 1s;
  175.  
  176. }
  177.  
  178. #sidebar:hover {
  179. height:210px;
  180. max-height:100%!important;
  181. -webkit-transition:all 1s;
  182. -moz-transition:all 1s;
  183. -ms-transition:all 1s;
  184. -o-transition:all 1s;
  185. transition:all 1s;
  186. }
  187.  
  188. #sidebarim {margin-bottom:20px;
  189. }
  190.  
  191. #sidebarim img {width:522px;
  192. margin-left:-10px;
  193. opacity:0;
  194. margin-top:-10px;
  195. -webkit-transition:all 1s;
  196. -moz-transition:all 1s;
  197. -ms-transition:all 1s;
  198. -o-transition:all 1s;
  199. transition:all 1s;
  200. }
  201.  
  202. #sidebar:hover #sidebarim img {
  203. opacity:1;
  204. -webkit-transition:all 1s;
  205. -moz-transition:all 1s;
  206. -ms-transition:all 1s;
  207. -o-transition:all 1s;
  208. transition:all 1s;
  209. }
  210.  
  211. #title {font-size:24px;
  212. padding-right:10px;
  213. text-align:right;
  214. margin-left:10px;
  215. color:{color:title};
  216. margin-top:-310px;/*if sidebar image change this to -310px*/
  217. font-family:'lato',sans-serif;
  218. font-weight:700;
  219. text-transform:uppercase;
  220. letter-spacing:4px;
  221. z-index:-1;
  222. -webkit-transition:all 1s;
  223. -moz-transition:all 1s;
  224. -ms-transition:all 1s;
  225. -o-transition:all 1s;
  226. transition:all 1s;
  227. }
  228.  
  229. #title a {
  230. color:{color:title};
  231. }
  232.  
  233. #title a:hover {
  234. color:{color:title hover};
  235. text-shadow:2px 2px 2px #aaa;
  236. -webkit-transition:all 0.8s;
  237. -moz-transition:all 0.8s;
  238. -ms-transition:all 0.8s;
  239. -o-transition:all 0.8s;
  240. transition:all 0.8s;
  241. }
  242.  
  243. .links {
  244. line-height:20px;
  245. font-size:10px;
  246. width:80px;
  247. margin-top:-10px;
  248. font-family:'lato', sans-serif;
  249. background:transparent;
  250. letter-spacing:3px;
  251. margin-left:435px;
  252. text-transform:lowercase;
  253. -webkit-transition:all 0.8s;
  254. -moz-transition:all 0.8s;
  255. -ms-transition:all 0.8s;
  256. -o-transition:all 0.8s;
  257. transition:all 0.8s;
  258. }
  259.  
  260. .links a {
  261. border:1px solid {color:link border};
  262. display:inline-block;
  263. height:5px;
  264. width:5px;
  265. -webkit-transition:all 0.8s;
  266. -moz-transition:all 0.8s;
  267. -ms-transition:all 0.8s;
  268. -o-transition:all 0.8s;
  269. transition:all 0.8s;
  270. }
  271.  
  272. .links a:hover {
  273. background:{color:link background};
  274. box-shadow:2px 2px 2px #aaa;
  275. -webkit-transition:all 0.8s;
  276. -moz-transition:all 0.8s;
  277. -ms-transition:all 0.8s;
  278. -o-transition:all 0.8s;
  279. transition:all 0.8s;
  280. }
  281.  
  282. #description {
  283. margin:20px 0;
  284. padding-right:10px;
  285. text-align:right;
  286. font-size:9px;
  287. color:{color:description};
  288. margin-left:10px;
  289. margin-top:40px;
  290. text-transform:uppercase;
  291. letter-spacing:2px;
  292. font-family:'helvetica',arial;
  293. -webkit-transition:all 0.8s;
  294. -moz-transition:all 0.8s;
  295. -ms-transition:all 0.8s;
  296. -o-transition:all 0.8s;
  297. transition:all 0.8s;
  298. }
  299.  
  300.  
  301. /*pagination*/
  302. #pagination {
  303. text-align:center;
  304. margin-top:100px;
  305. margin-left:-30px;
  306. width:522px;
  307. border-top:1px solid {color:border};
  308. text-transform:uppercase;
  309. font-weight:bold;
  310. }
  311. #pagination a {
  312. padding:0 15px;
  313. margin-right:0px;
  314. }
  315.  
  316. /*container*/
  317. #con {
  318. left:50%;
  319. margin-left:-250px;
  320. position:absolute;
  321. }
  322.  
  323.  
  324.  
  325. /*posts*/
  326.  
  327. #entries {
  328. padding:30px 30px 30px;
  329. margin-top:300px;
  330. margin-bottom:100px;
  331. width:500px;
  332. }
  333.  
  334. #posts {
  335. padding:10px 10px 10px 10px;
  336. width:500px;
  337. margin-left:-30px;
  338. background:{color:posts};
  339. border:1px solid {color:border};
  340. {block:IndexPage}
  341. margin-bottom:75px;
  342. {/block:IndexPage}
  343. {block:PermalinkPage}
  344. margin-bottom:50px;
  345. {/block:PermalinkPage}
  346. }
  347.  
  348. #posts img {
  349. max-width:500px;
  350. -webkit-transition:all 0.4s;
  351. -moz-transition:all 0.4s;
  352. -ms-transition:all 0.4s;
  353. -o-transition:all 0.4s;
  354. transition:all 0.4s;
  355. }
  356.  
  357. #posts img, #posts li, #posts blockquote {max-width: 100%;
  358. }
  359. .caption {width:100%;
  360. margin-top:10px;
  361. }
  362.  
  363. /*quote*/
  364.  
  365. #titlequote{
  366. text-align:left;
  367. font-size:20px;
  368. padding:10px 10px 10px 10px;
  369. line-height:18px;
  370. font-weight:bold;
  371. }
  372. #source {
  373. margin-top:15px;
  374. margin-left:15px;}
  375.  
  376. /*audio*/
  377.  
  378. .player {
  379. width:25px;
  380. height:25px;
  381. overflow:hidden;
  382. position:absolute;
  383. background:black;}
  384.  
  385. .audioinfo {
  386. margin-left:50px;
  387. }
  388.  
  389.  
  390. /*asks*/
  391. .q {
  392. text-align:center;
  393. padding-bottom:5px;
  394. border-bottom:1px solid {color:border};
  395. }
  396. .as {
  397. text-align:center;
  398. font-weight:bold;
  399. }
  400.  
  401. .a {
  402. margin-top:10px;
  403. text-align:center;
  404. }
  405.  
  406.  
  407. /*chat*/
  408.  
  409. .chat ol {
  410. padding:0;
  411. list-style:none;
  412. text-align:center;
  413. }
  414. .line {padding:5px 0;
  415. }
  416.  
  417. .label {font-weight:bold;
  418. }
  419.  
  420. /*permalink and notes*/
  421.  
  422. #permalink {
  423. margin-top:20px;
  424. font-size:9px;
  425. text-align:center;
  426. font-family:'helvetica';
  427. text-transform:uppercase;
  428. -webkit-transition:all 0.4s;
  429. -moz-transition:all 0.4s;
  430. -ms-transition:all 0.4s;
  431. -o-transition:all 0.4s;
  432. transition:all 0.4s;
  433. }
  434.  
  435. #permalink a {margin-right:10px;
  436. padding-right:5px;
  437. }
  438.  
  439. #posts:hover .tags {
  440. opacity:1;
  441. }
  442.  
  443. .tags {
  444. word-break:break-all;
  445. text-align:center;
  446. font-size:9px;
  447. opacity:0;
  448. -webkit-transition:all 0.4s;
  449. -moz-transition:all 0.4s;
  450. -ms-transition:all 0.4s;
  451. -o-transition:all 0.4s;
  452. transition:all 0.4s;
  453.  
  454. }
  455. .tags a:last-child:after { content:""; }
  456.  
  457. .pagenotes {
  458. {block:IndexPage}
  459. display: none!important;
  460. {/block:IndexPage}
  461. width:400px;
  462. text-align:center;
  463.  
  464. }
  465. .pagenotes img {
  466. text-align:center;
  467. display:none!important;}
  468. .pagenotes li {
  469. list-style-type:none;
  470. padding:5px 0px;
  471. text-align:center;
  472. margin:0 0 0 -40px;
  473. }
  474.  
  475. #credit {
  476. right:10px;
  477. bottom:10px;
  478. position:fixed;
  479. opacity:0.3;
  480. border:1px solid {color:border};
  481. text-transform:uppercase;
  482. padding:4px 4px 4px 4px;
  483. -webkit-transition:all 0.7s;
  484. -moz-transition:all 0.7s;
  485. -ms-transition:all 0.7s;
  486. -o-transition:all 0.7s;
  487. transition:all 0.7s;
  488. }
  489.  
  490. #credit:hover {
  491. opacity:1;
  492. }
  493.  
  494. {CustomCSS}
  495.  
  496.  
  497. </style>
  498.  
  499.  
  500.  
  501. </head>
  502.  
  503. <body>
  504.  
  505. <div id="con">
  506.  
  507. <div id="sidebar">
  508. <div id="sidebarim"><img src="{image:Sidebar Image}">
  509. <div id="title"><a href="/">{Title}</a></div>
  510. <div id="description">{Description}</div>
  511. <div class="links">
  512. <a href="{text:Link 1 URL}" title="{text:Link 1}"></a>
  513. <a href="{text:Link 2 URL}" title="{text:Link 2}"></a>
  514. <a href="{text:Link 3 URL}" title="{text:Link 3}"></a>
  515. <a href="{text:Link 4 URL}" title="{text:Link 4}"></a>
  516. </div>
  517. </div>
  518.  
  519. </div>
  520.  
  521.  
  522.  
  523.  
  524. <div id="entries">
  525.  
  526. {block:Posts}
  527. <div id="posts">
  528.  
  529.  
  530. {block:Quote}
  531. <div id="titlequote">“{Quote}”</div>
  532. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  533. {/block:Quote}
  534.  
  535.  
  536.  
  537. {block:Text}
  538.  
  539. {block:Title}
  540. <div id="fries">{Title}</div>{/block:Title}
  541. {Body}
  542. {/block:Text}
  543.  
  544. {block:Link}
  545. <div id="fries"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  546. {/block:Link}
  547.  
  548. {block:Chat}
  549. {block:Title}
  550. <div id="fries">{Title}</div>
  551. {/block:Title}
  552. <div class="chat">
  553. <ol>{block:Lines}
  554. <li class="line {Alt}">
  555. {block:Label}
  556. <span class="label">
  557. {Label}</span>
  558. {/block:Label}{Line}</li>
  559. {/block:Lines}
  560. </ol></div>
  561. {/block:Chat}
  562.  
  563. {block:Photo}
  564. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}
  565. {/block:Photo}
  566.  
  567. {block:Photoset}
  568. {Photoset-500}
  569. {/block:Photoset}
  570.  
  571. {block:Video}
  572. {Video-500}
  573. {/block:Video}
  574.  
  575. {block:Audio}
  576. <div class="player">{AudioPlayerWhite}</div>
  577. <div class="audioinfo">
  578. {block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  579. </div>
  580. {/block:Audio}
  581.  
  582. {block:Answer}
  583. <div class="q">
  584. <div class="as">{Asker} asked:
  585. {Question}</div></div>
  586. <div class="a">{Answer}</div>
  587. {/block:Answer}
  588.  
  589.  
  590. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  591.  
  592. {block:Date}
  593. <div id="permalink">
  594. <a href="{Permalink}" >{TimeAgo}</a>{block:NoteCount}<a href="{Permalink}">+{NoteCount}</a>{/block:NoteCount}
  595. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  596. </div>
  597. {/block:Date}
  598.  
  599.  
  600.  
  601. </div>
  602.  
  603.  
  604. {block:PostNotes}
  605. <div class="pagenotes">
  606. {PostNotes}
  607. </div>
  608. {/block:PostNotes}
  609.  
  610.  
  611. {/block:Posts}
  612.  
  613. {block:IndexPage}
  614. <div id="pagination">
  615. {block:PreviousPage}
  616. <a href="{PreviousPage}"> back | </a>
  617. {/block:PreviousPage}
  618. {block:NextPage}
  619. <a href="{NextPage}"> forth</a>
  620. {/block:NextPage}</div>
  621. {/block:IndexPage}
  622.  
  623.  
  624. </div>
  625.  
  626. </div>
  627.  
  628.  
  629. {block:ContentSource}
  630. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  631. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  632. {/block:SourceLogo}
  633. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  634. {/block:ContentSource}
  635.  
  636. <div id="credit"><a href="http://jemcarstairs.co.vu">mq</a></div>
  637.  
  638. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement