bangyixing

Theme #01 - Spirals & Loops

May 23rd, 2013
557
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.42 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. <html>
  12. <head>
  13.  
  14. <!--
  15. THEME MADE BY ANDREA @ MILIKBOY
  16. PLEASE DON'T REMOVE THE CREDITS. THANK YOU.
  17. -->
  18. <script type="text/javascript"
  19. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  20.  
  21. <script>
  22.  
  23. $(document).ready(function() {
  24.  
  25.  
  26. $('a.poplight[href^=#]').click(function() {
  27.  
  28. var popID = $(this).attr('rel');
  29.  
  30. var popURL = $(this).attr('href');
  31.  
  32. var query= popURL.split('?');
  33.  
  34. var dim= query[1].split('&');
  35.  
  36. var popWidth = dim[0].split('=')[1];
  37.  
  38. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  39.  
  40. var popMargTop = ($('#' + popID).height() + 80) / 2;
  41.  
  42. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  43.  
  44. $('#' + popID).css({
  45.  
  46. 'margin-top' : -popMargTop,
  47.  
  48. 'margin-left' : -popMargLeft
  49.  
  50. });
  51.  
  52. $('body').append('<div id="fade"></div>');
  53.  
  54. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn();
  55. return false;
  56.  
  57. });
  58.  
  59.  
  60. $('a.close, #fade').live('click', function() {
  61.  
  62. $('#fade , .popup_block').fadeOut(function() {
  63.  
  64. $('#fade, a.close').remove();
  65. });
  66.  
  67. return false;
  68.  
  69. });
  70.  
  71. });
  72.  
  73. </script>
  74.  
  75. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  76. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  77. <head><title>{Title}</title>
  78. <link rel="shortcut icon" href="{Favicon}">
  79. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  80. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  81.  
  82. <!--Default Variables-->
  83. <!--Colors-->
  84.  
  85. <meta name="color:Background" content="#ffffff"/>
  86. <meta name="color:Title" content="#9c9c9c"/>
  87. <meta name="color:Link" content="#000000"/>
  88. <meta name="color:Link Hover" content="#b8b8b8"/>
  89. <meta name="color:Info Border" content="#e6e4e4"/>
  90. <meta name="color:Border" content="#ebe9e9"/>
  91. <meta name="color:Text" content="#000000"/>
  92.  
  93. <!--Images-->
  94.  
  95. <meta name="image:Background" content=""/>
  96. <img src="http://tiny.cc/closeimg" class="btn_close" title="Close
  97. Window" alt="Close" /></a>
  98.  
  99. <!--Links-->
  100.  
  101. <meta name="text:Link1" content="" />
  102. <meta name="text:Link1 Title" content="" />
  103. <meta name="text:Link2" content="" />
  104. <meta name="text:Link2 Title" content="" />
  105. <meta name="text:Link3" content="" />
  106. <meta name="text:Link3 Title" content="" />
  107. <meta name="text:Link4" content="" />
  108. <meta name="text:Link4 Title" content="" />
  109. <meta name="text:Link5" content="" />
  110. <meta name="text:Link5 Title" content="" />
  111. <meta name="text:Link6" content="" />
  112. <meta name="text:Link6 Title" content="" />
  113.  
  114. <style type="text/css">
  115.  
  116. #bite
  117. #bite a{
  118. display:block
  119. }
  120. #bite .death {
  121. margin-top:0px;filter: alpha(opacity = 0);
  122. opacity:0;-webkit-transition: all 0.5s ease-out;
  123. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  124. }
  125.  
  126. #bite:hover .death {
  127. margin-top:0px;
  128. -webkit-transition: all 0.8s ease-out;
  129. -moz-transition: all 0.8s ease-out;
  130. transition: all 0.8s ease-out;
  131. filter: alpha(opacity = 100);
  132. filter: alpha(opacity = 100);
  133. opacity:100;
  134. }
  135.  
  136. body {
  137. background-color:{color:Background};
  138. background-image: url("{image:Background}");
  139. background-attachment:fixed;
  140. margin:0px;
  141. color:{color:Text};
  142. font-family:Times New Roman;
  143. font-size:9px;
  144. text-align:justify;
  145. font-style:italic;
  146. letter-spacing:1px;
  147. }
  148.  
  149. a {
  150. text-decoration:none;
  151. outline:none;
  152. -moz-outline-style:none;
  153. color:{color:Link};
  154. -webkit-transition: all 0.5s ease;
  155. -moz-transition: all 0.5s ease;
  156. -o-transition: all 0.5s ease;
  157. }
  158.  
  159. img {
  160. border:none;
  161. }
  162.  
  163. blockquote blockquote {
  164. padding-left:5px;
  165. border-left:1px solid {color:Border};
  166. }
  167.  
  168. h1 {
  169. font-size:15px;
  170. text-transform:none;
  171. font-style:none;
  172. text-align:center;
  173. color:{color:Title};
  174. }
  175.  
  176. a:hover {
  177. color:{color:Link Hover};
  178. }
  179.  
  180. small{
  181. font-size:9px;
  182. line-height:140%;
  183. }
  184.  
  185. big {
  186. font-size:12px;
  187. line-height:140%;
  188. }
  189.  
  190. b, strong{
  191. color:{color:Text};
  192. }
  193. i, em {
  194. color:{color:Text};
  195. }
  196.  
  197. p{
  198. margin-top:5px;
  199. margin-bottom:5px;
  200. }
  201. blockquote {
  202. padding:0px;
  203. padding-left:5px;
  204. margin:5px;
  205. border-left:1px solid {color:Border};
  206. }
  207.  
  208. blockquote img {
  209. max-width:300px;
  210. }
  211.  
  212. .audio { height:60px; padding:5px; margin-bottom:5px; }
  213. .audio-album { position:absolute; width:60px; }
  214. .audio-player { position:absolute; width:25px; height:25px; margin-left:15px; margin-top:15px; opacity:0.9; overflow:hidden; border:2px solid {color:Border}; }
  215. .audio-info { margin-top:-2px; position:relative; margin-left:70px; padding:5px; }
  216.  
  217. #fade {
  218. display: none;
  219. background: {color:Text};
  220. position: fixed;
  221. left: 0;
  222. top: 0;
  223. width: 100%;
  224. height: 100%;
  225. opacity: .70;
  226. z-index: 9999;
  227. }
  228.  
  229. .popup_block{
  230. display: none;
  231. background: {color:Border};
  232. padding: 20px;
  233. float: left;
  234. position: fixed;
  235. top: 50%;
  236. left: 50%;
  237. z-index: 99999;
  238. }
  239.  
  240. img.btn_close {
  241. float: right;
  242. margin: -55px -55px 0 0;
  243. }
  244.  
  245. *html #fade {
  246. position: absolute;
  247. }
  248.  
  249. *html .popup_block {
  250. position: absolute;
  251. }
  252.  
  253. #entries {
  254. padding:10px;
  255. width:400px;
  256. font-style:none;
  257. margin-left:596px;
  258. margin-top:90px;
  259. }
  260.  
  261. #post {
  262. width:400px;
  263. opacity:1;
  264. padding-bottom:10px;
  265. font-style:italic;
  266. overflow:hidden;
  267. }
  268.  
  269. #quote {
  270. font-size:15px;
  271. font-style:none;
  272. text-align:center;
  273. line-height:140%;
  274. }
  275.  
  276. #sidebar {
  277. width:150px;
  278. height: 150px;
  279. position:fixed;
  280. margin-left:320px;
  281. margin-top:105px;
  282. }
  283.  
  284. #sidebarimage img{
  285. width:300px;
  286. height:250px;
  287. margin-left: -50px;
  288. padding:3px;
  289. -webkit-transition: all 0.5s ease;
  290. -moz-transition: all 0.5s ease;
  291. -o-transition: all 0.5s ease;
  292. }
  293.  
  294. #links{
  295. width: 160px;
  296. opacity:0.9;
  297. display:inline-block;
  298. text-transform: lowercase;
  299. text-align:center;
  300. padding-top:5px;
  301. padding-bottom:5px;
  302. margin-top: -3px;
  303. margin-left:25px;
  304. }
  305.  
  306. #links a {
  307. width: 150px;
  308. color:{color:Text};
  309. font-size:9px;
  310. font-style:italic;
  311. line-height:20px;
  312. margin-bottom:8px;
  313. letter-spacing:1px;
  314. opacity:0.9;
  315. padding:4.5px;
  316. text-decoration:none;
  317. -moz-transition-duration:1s;
  318. -webkit-transition-duration:1s;
  319. -o-transition-duration:1s;
  320. }
  321.  
  322. #links a:hover{
  323. text-decoration:none;
  324. color:{color:Background};
  325. background:{color:Text};
  326. padding:4.5px;
  327. letter-spacing:1px;
  328. opacity:1;
  329. }
  330.  
  331. #nav {
  332. margin-top: 0px;
  333. padding-top:5px;
  334. }
  335.  
  336. #nav a {
  337. width:90px;
  338. background:{color:Text};
  339. color:{color:Background};
  340. display:inline-block;
  341. line-height:20px;
  342. padding:3px;
  343. letter-spacing:1px;
  344. text-transform:lowercase;
  345. margin-left:3px;
  346. margin-right:3px;
  347. text-align:center;
  348. margin-bottom:3px;
  349. -webkit-transition: all 0.3s ease-in-out;
  350. -moz-transition: all 0.3s ease-in-out;
  351. -o-transition: all 0.3s ease-in-out;
  352. -ms-transition: all 0.3s ease-in-out;
  353. transition: all 0.3s ease-in-out;
  354. }
  355.  
  356. #nav a:hover{
  357. text-decoration:none;
  358. background:{color:Background};
  359. color:{color:Text};
  360. letter-spacing:3px;
  361. opacity:1;
  362. }
  363.  
  364. #description {
  365. font-size:9px;
  366. width:130px;
  367. height:auto;
  368. font-style:italic;
  369. opacity:0.9;
  370. text-align:center;
  371. margin-top:-190px;
  372. margin-left:36px;
  373. }
  374.  
  375.  
  376. #pagination {
  377. font-size:16px;
  378. margin-top: -70px;
  379. text-align:center;
  380. color:{color:Text};
  381. width:200px;
  382. padding:0px;
  383. font-style:italic;
  384. text-transform:uppercase;
  385. letter-spacing:1px;
  386. margin-left:640px;
  387. }
  388.  
  389. #info {
  390. text-align: center;
  391. margin-top:5px;
  392. margin-bottom:10px;
  393. padding-top:5px;
  394. text-transform:uppercase;
  395. font-size:8px;
  396. line-height:120%;
  397. border-top:3px double {color:Info Border};
  398. }
  399.  
  400. #info a:hover{
  401. text-decoration: none;
  402. background:{color:Background};
  403. color:{color:Link Hover};
  404. }
  405.  
  406. #tags {
  407. text-transform:lowercase;
  408. font-size:9px;
  409. margin-top:0px;
  410. opacity:0.9;
  411. font-style:none;
  412. padding:-4px;
  413. text-align:center;
  414. letter-spacing:1px;
  415. }
  416.  
  417. #notes {
  418. text-transform:lowercase;
  419. font-size:8px;
  420. }
  421.  
  422. {CustomCSS}</style></head><body>
  423.  
  424. <div id="sidebar">
  425. <div id="sidebarimage"><img src="http://4.bp.blogspot.com/-T91amJ8ZCBA/TmOKVTJNIzI/AAAAAAAAN_g/i47RGl9j_Aw/s1600/scrolly%2Bframe%2Bgraphicsfairy%2Bbw.jpg"></div>
  426. <div id="links">
  427. <div style="margin-left:-4px; letter-spacing:1px;background:#000000; text-transform: lowercase;
  428. display:inline-block;"><a href="/"><font color="white"><font color="red">i</font>ndex</font></a></div>
  429. <a href="/ask">mail</a>
  430. <a href="#?w=210" rel="popup_name" class="poplight">
  431. links</a>
  432. <a href="http://mlikboy.tumblr.com/">theme</a>
  433. </div>
  434.  
  435. <div id="description">{Description}</div>
  436.  
  437. {block:Pagination}<div align="center" id="pagination">{block:PreviousPage}<a href="{PreviousPage}">prev</a>{/block:PreviousPage}<p> {block:NextPage}<a href="{NextPage}">next</a>{/block:NextPage}</div>{/block:Pagination}
  438. </div>
  439.  
  440. <div id="entries">{block:Posts}<div id="post">
  441.  
  442. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  443.  
  444. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  445.  
  446. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  447.  
  448. {block:Quote}<div id="quote">❝<i>{Quote}</i>❞{block:Source} — <i>{Source}</i></div>{/block:Source}{/block:Quote}
  449.  
  450. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  451.  
  452. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  453.  
  454. {block:Audio}<div class="audio">{block:AlbumArt}<img class="audio-album" src="{AlbumArtURL}">{/block:AlbumArt}<div class="audio-player">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div><div class="audio-info">{block:TrackName} <b>Title: </b>{TrackName}<br>{/block:TrackName}{block:Artist}<b>Artist: </b>{Artist}<br>{/block:Artist}{block:Album}<b>Album: </b>{Album}<br>{/block:Album}{block:PlayCount}<b>Plays: </b>{PlayCount}<br>{/block:PlayCount}</div></div>
  455. {/block:Audio}
  456.  
  457. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  458.  
  459. {block:Answer}
  460. <div style="text-transform:uppercase; border-bottom:1px dashed {color:Text}; padding:10px; margin-left:-10px;"><b>{Asker}</b> asked: {Question}</div>
  461. <div style="margin-left:0px;padding-top:10px;">{Answer}{/block:answer}
  462.  
  463. <div id="info">
  464. <a href="{Permalink}">{TimeAgo}</a> <font color="red">♥</font> <a href="{Permalink}">{NoteCountWithLabel}</a> {block:RebloggedFrom} via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom} {block:ContentSource} from <a href="{SourceURL}">{SourceLink}</a>{/block:ContentSource}{block:RebloggedFrom} <a href="{ReblogParentURL}" target="_blank"></a>{/block:RebloggedFrom}
  465.  
  466. <div id="bite">
  467. <div class="death">
  468. {block:HasTags}<div id="tags">{block:Tags} #<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div></div></div></div>
  469. {/block:Posts}
  470. {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
  471. </body>
  472.  
  473. <div id="popup_name" class="popup_block">
  474. <div id="nav">
  475. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  476. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}
  477. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}
  478. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}
  479. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5}
  480. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6}
  481. </div>
  482. </div>
  483. </html>
Advertisement
Add Comment
Please, Sign In to add comment