kitopia

❤❤ WITHOUT YOU ❤❤ theme

Dec 10th, 2015
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!-----
  5. ❤❤ WITHOUT YOU ❤❤
  6.  
  7. theme by lps666.tumblr.com
  8. base code by animecharacter.tumblr.com
  9.  
  10. ----->
  11.  
  12. <meta charset="utf-8">
  13. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  14. {block:Description}
  15. <meta name="description" content="{MetaDescription}" />
  16. {/block:Description}
  17.  
  18. <title>{Title}</title>
  19.  
  20. <link rel="shortcut icon" href="{image:Favicon}">
  21. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  22. <link rel="stylesheet" href="http://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
  23.  
  24.  
  25. <meta name="image:Favicon" content="/"/>
  26. <meta name="color:Background" content="#fee">
  27. <meta name="color:PostBackground" content="#fff"/>
  28. <meta name="color:SidebarBackground" content="#fff"/>
  29. <meta name="color:FooterBackground" content="#fff"/>
  30. <meta name="color:Text" content="#aaa">
  31. <meta name="color:Borders" content="#ddd">
  32. <meta name="color:Shadows" content="#ddd">
  33. <meta name="color:Link" content="#999"/>
  34. <meta name="color:Link Hover" content="#ccc"/>
  35. <meta name="color:LinkBorder" content="#fcf">
  36. <meta name="color:LinkBackground" content="#fee">
  37. <meta name="color:Selection" content="#fcc">
  38. <meta name="color:Cursor" content="#fcc">
  39. <meta name="if:Circle" content="">
  40. <meta name="text:Links" content="CLICK"/>
  41. <meta name="text:Font" content="arial"/>
  42. <meta name="if:300px" content="0"/>
  43. <meta name="if:400px" content="0"/>
  44. <meta name="if:500px" content="1"/>
  45. <meta name="if:SidebarRight" content="1"/>
  46.  
  47.  
  48.  
  49. <script src="http://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
  50. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
  51.  
  52. <script type="text/javascript">
  53. // <![CDATA[
  54. var colour="{color:Cursor}";
  55. var sparkles=50;
  56.  
  57. /****************************
  58. * Tinkerbell Magic Sparkle *
  59. * (c) 2005 mf2fm web-design *
  60. * http://www.mf2fm.com/rv *
  61. * DON'T EDIT BELOW THIS BOX *
  62. ****************************/
  63. var x=ox=400;
  64. var y=oy=300;
  65. var swide=800;
  66. var shigh=600;
  67. var sleft=sdown=0;
  68. var tiny=new Array();
  69. var star=new Array();
  70. var starv=new Array();
  71. var starx=new Array();
  72. var stary=new Array();
  73. var tinyx=new Array();
  74. var tinyy=new Array();
  75. var tinyv=new Array();
  76.  
  77. window.onload=function() { if (document.getElementById) {
  78. var i, rats, rlef, rdow;
  79. for (var i=0; i<sparkles; i++) {
  80. var rats=createDiv(3, 3);
  81. rats.style.visibility="hidden";
  82. document.body.appendChild(tiny[i]=rats);
  83. starv[i]=0;
  84. tinyv[i]=0;
  85. var rats=createDiv(5, 5);
  86. rats.style.backgroundColor="transparent";
  87. rats.style.visibility="hidden";
  88. var rlef=createDiv(1, 5);
  89. var rdow=createDiv(5, 1);
  90. rats.appendChild(rlef);
  91. rats.appendChild(rdow);
  92. rlef.style.top="2px";
  93. rlef.style.left="0px";
  94. rdow.style.top="0px";
  95. rdow.style.left="2px";
  96. document.body.appendChild(star[i]=rats);
  97. }
  98. set_width();
  99. sparkle();
  100. }}
  101.  
  102. function sparkle() {
  103. var c;
  104. if (x!=ox || y!=oy) {
  105. ox=x;
  106. oy=y;
  107. for (c=0; c<sparkles; c++) if (!starv[c]) {
  108. star[c].style.left=(starx[c]=x)+"px";
  109. star[c].style.top=(stary[c]=y)+"px";
  110. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  111. star[c].style.visibility="visible";
  112. starv[c]=50;
  113. break;
  114. }
  115. }
  116. for (c=0; c<sparkles; c++) {
  117. if (starv[c]) update_star(c);
  118. if (tinyv[c]) update_tiny(c);
  119. }
  120. setTimeout("sparkle()", 40);
  121. }
  122.  
  123. function update_star(i) {
  124. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  125. if (starv[i]) {
  126. stary[i]+=1+Math.random()*3;
  127. if (stary[i]<shigh+sdown) {
  128. star[i].style.top=stary[i]+"px";
  129. starx[i]+=(i%5-2)/5;
  130. star[i].style.left=starx[i]+"px";
  131. }
  132. else {
  133. star[i].style.visibility="hidden";
  134. starv[i]=0;
  135. return;
  136. }
  137. }
  138. else {
  139. tinyv[i]=50;
  140. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  141. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  142. tiny[i].style.width="2px";
  143. tiny[i].style.height="2px";
  144. star[i].style.visibility="hidden";
  145. tiny[i].style.visibility="visible"
  146. }
  147. }
  148.  
  149. function update_tiny(i) {
  150. if (--tinyv[i]==25) {
  151. tiny[i].style.width="1px";
  152. tiny[i].style.height="1px";
  153. }
  154. if (tinyv[i]) {
  155. tinyy[i]+=1+Math.random()*3;
  156. if (tinyy[i]<shigh+sdown) {
  157. tiny[i].style.top=tinyy[i]+"px";
  158. tinyx[i]+=(i%5-2)/5;
  159. tiny[i].style.left=tinyx[i]+"px";
  160. }
  161. else {
  162. tiny[i].style.visibility="hidden";
  163. tinyv[i]=0;
  164. return;
  165. }
  166. }
  167. else tiny[i].style.visibility="hidden";
  168. }
  169.  
  170. document.onmousemove=mouse;
  171. function mouse(e) {
  172. set_scroll();
  173. y=(e)?e.pageY:event.y+sdown;
  174. x=(e)?e.pageX:event.x+sleft;
  175. }
  176.  
  177. function set_scroll() {
  178. if (typeof(self.pageYOffset)=="number") {
  179. sdown=self.pageYOffset;
  180. sleft=self.pageXOffset;
  181. }
  182. else if (document.body.scrollTop || document.body.scrollLeft) {
  183. sdown=document.body.scrollTop;
  184. sleft=document.body.scrollLeft;
  185. }
  186. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  187. sleft=document.documentElement.scrollLeft;
  188. sdown=document.documentElement.scrollTop;
  189. }
  190. else {
  191. sdown=0;
  192. sleft=0;
  193. }
  194. }
  195.  
  196. window.onresize=set_width;
  197. function set_width() {
  198. if (typeof(self.innerWidth)=="number") {
  199. swide=self.innerWidth;
  200. shigh=self.innerHeight;
  201. }
  202. else if (document.documentElement && document.documentElement.clientWidth) {
  203. swide=document.documentElement.clientWidth;
  204. shigh=document.documentElement.clientHeight;
  205. }
  206. else if (document.body.clientWidth) {
  207. swide=document.body.clientWidth;
  208. shigh=document.body.clientHeight;
  209. }
  210. }
  211.  
  212. function createDiv(height, width) {
  213. var div=document.createElement("div");
  214. div.style.position="absolute";
  215. div.style.height=height+"px";
  216. div.style.width=width+"px";
  217. div.style.overflow="hidden";
  218. div.style.backgroundColor=colour;
  219. return (div);
  220. }
  221. // ]]>
  222. </script>
  223.  
  224. <meta http-equiv="Content-Language" content="en-us" />
  225. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  226.  
  227.  
  228. <style type="text/css">
  229.  
  230. #popitmenu{
  231. position: absolute;
  232. color:#ac8d8d;
  233. background-color: #fdeaf1;
  234. border:1px solid #ac8d8d;
  235. font-family:"Century Gothic";
  236. font-size:10px;
  237. line-height: 14x;
  238. z-index: 100;
  239. visibility: hidden;
  240. letter-spacing:2px;
  241. }
  242.  
  243. #popitmenu a{
  244. color:#ac8d8d;
  245. text-decoration: none;
  246. padding-left: 6px;
  247. color: black;
  248. display: block;
  249. }
  250.  
  251. #popitmenu a:hover{ /*hover background color*/
  252. background-color: #ffccff;
  253. }
  254.  
  255. </style>
  256.  
  257. <style type="text/css">
  258.  
  259.  
  260.  
  261. .post img{
  262. border-radius:10px;
  263. }
  264.  
  265. ::-moz-selection { background: {color:Selection}; }
  266. ::selection { background: {color:Selection}; }
  267.  
  268. body {
  269. margin:0px;
  270. background:{color:Background};
  271. font-family: {text:Font};
  272. font-size:12px;
  273. line-height:140%;
  274. color: {color:Text};
  275. }
  276.  
  277. p{
  278. margin:0 0 10px 0;
  279. padding:0;
  280. }
  281.  
  282. pre {
  283. white-space: pre-wrap;
  284. white-space: -moz-pre-wrap;
  285. white-space: -pre-wrap;
  286. white-space: -o-pre-wrap;
  287. word-wrap: break-word;
  288. }
  289.  
  290. a{
  291. color:{color:Link};
  292. text-decoration:none;
  293. transition: all .5s ease;
  294. }
  295.  
  296. a:hover{
  297. color:{color:Link Hover};
  298. }
  299.  
  300. li{
  301. margin-left:-15px;
  302. }
  303.  
  304. h1{
  305. font-size:15pt;
  306. font-weight:normal;
  307. margin-top:-5px;
  308. line-height:105%;
  309. }
  310.  
  311. /*
  312. containers etc
  313. */
  314. #wrapper{
  315. width:600px;
  316. margin:50px auto;
  317. }
  318.  
  319. #sidebar{
  320. margin-top:10px;
  321. {block:IfNotSidebarRight}
  322. left:100px;{/block:IfNotSidebarRight}
  323. {block:IfSidebarRight}left:1000px;{/block:IfSidebarRight}
  324. width:115px;
  325. position:fixed;
  326. background:{color:SidebarBackground};
  327. border: 1px {color:Borders} solid;
  328. padding:30px;
  329. box-shadow:0px 0px 10px {color:Shadows};
  330. border-radius:10px;
  331. text-align:center;
  332. }
  333.  
  334. #sidebar p{
  335. margin:5px;
  336. }
  337.  
  338.  
  339.  
  340. #sidebarlinks button{
  341. color:{color:LinkBorder};
  342. background: {color:LinkBackground};
  343. border: {color:LinkBorder} solid 1px;
  344. padding:5px;
  345. margin:-5px;
  346. box-shadow:0px 0px 10px {color:Shadows};
  347. text-decoration:none;
  348.  
  349. }
  350.  
  351. #sidebar img{
  352. border:3px solid #fff;
  353. box-shadow:0px 0px 5px #bbb;
  354. {block:IfCircle}
  355. border-radius:100%;
  356. {/block:IfCircle}
  357. }
  358.  
  359. #content{
  360. width:{block:If300px}400px{/block:If300px}{block:If400px}500px{/block:If400px}{block:If500px}600px{/block:If500px};
  361. {block:IfSidebarRight}margin-left:-100px;{/block:IfSidebarRight}
  362. {block:IfNotSidebarRight}margin-left:200px;{/block:IfNotSidebarRight}
  363. overflow:hidden;
  364. }
  365.  
  366. .post{
  367. background:{color:PostBackground};
  368. width:{block:If300px}300px{/block:If300px}{block:If400px}400px{/block:If400px}{block:If500px}500px{/block:If500px};
  369. margin:10px 0 50px 10px;
  370. overflow:hidden;
  371. padding:25px;
  372. border: 1px {color:Borders} solid;
  373. box-shadow:0px 0px 10px {color:Shadows};
  374. border-radius:10px;
  375. }
  376.  
  377. #sidebar img, .post img{
  378. max-width:100%;
  379. }
  380.  
  381. #nav{
  382. margin:50px 0 0 0;
  383. }
  384.  
  385. #nav a{
  386. padding:5px;
  387. background:#fff;
  388. border:{color:Borders};
  389. box-shadow: 0px 0px 10px {color:Shadows};
  390. margin:10px;
  391. }
  392.  
  393. .media{
  394. margin:0 0 10px 0;
  395. }
  396.  
  397. .title{
  398. font-weight:normal;
  399. font-size:18px;
  400. margin:0 0 10px 0;
  401. }
  402.  
  403. .quote{
  404. font-weight:normal;
  405. font-size:16px;
  406. font-style:italic;
  407. margin:0 0 10px 0;
  408. }
  409.  
  410. .question{
  411. margin-bottom:10px;
  412. }
  413.  
  414. blockquote{
  415. margin:0 0 10px 10px;
  416. padding:0 0 0 10px;
  417. border-left:solid 1px #000;
  418. }
  419.  
  420.  
  421. .post .footer{
  422. margin:0;
  423. text-align:left;
  424. background:{color:FooterBackground};
  425. padding:15px;
  426. border-radius:10px;
  427. margin-top:10px;
  428. border:1px solid {color:Borders};
  429. box-shadow:0px 0px 10px {color:Shadows};
  430. }
  431.  
  432.  
  433. ol.notes{
  434. list-style-type:none;
  435. padding:0;
  436. margin:0;
  437. }
  438.  
  439. ol.notes li.note img{
  440. width:16px;
  441. height:16px;
  442. }
  443.  
  444. ol.notes li.note{
  445. margin:0px;
  446. }
  447.  
  448. .hidden {display: none;}
  449. .unhidden {display: block;}
  450.  
  451. #credit{
  452. padding:5px;
  453. bottom:0px;
  454. left:0px;
  455. position:fixed;
  456. background:#fff;
  457. border:{color:Borders};
  458. box-shadow: 0px 0px 10px {color:Shadows};
  459. margin:10px;
  460.  
  461. }
  462.  
  463. {CustomCSS}
  464. </style>
  465.  
  466. </head>
  467.  
  468.  
  469. <body><div id="credit"><a href="http://lps666.tumblr.com/">THEME</a></div>
  470. <div id="wrapper">
  471.  
  472.  
  473. <div id="sidebar"><h1><a href="{BlogURL}">{blogtitle}</a></h1>
  474. <a href="{BlogURL}"><img src="{PortraitURL-128}"></a><br><br>
  475. {block:Description}
  476. <p>{Description}</p>
  477. {/block:Description}
  478. <br>
  479.  
  480. <script type="text/javascript">
  481. jQuery(document).ready(function() {
  482. jQuery(".sub").hide();
  483. //toggle the componenet with class msg_body
  484. jQuery(".cthrough").click(function()
  485. {
  486. jQuery(this).next(".sub").slideToggle(500);
  487. });});
  488. </script>
  489.  
  490. <a href="#" class="cthrough">{text:Links}</a>
  491. <div class="sub">
  492. <div id="sidebarlinks"><br><div align="center">
  493. <a href="/"><button style="display: block; width: 100%;">{lang:Home}</button></a><br>
  494.  
  495. {block:AskEnabled}
  496. <a href="/ask"><button style="display: block; width: 100%;">{AskLabel}</button></a><br>
  497. {/block:AskEnabled}
  498.  
  499. {block:SubmissionsEnabled}
  500. <a href="/ask"><button style="display: block; width: 100%;">{SubmitLabel}</button></a><br>
  501. {/block:SubmissionsEnabled}
  502. {block:HasPages}
  503. {block:Pages}
  504. <a href="{URL}"><button style="display: block; width:100%;">{Label}</button></a><br>
  505. {/block:Pages}
  506. {/block:HasPages}
  507. </div></div></div>
  508.  
  509.  
  510.  
  511. </div>
  512.  
  513.  
  514.  
  515. <div id="content">
  516. {block:Posts}
  517.  
  518. <div class="post">
  519.  
  520. {block:Text}
  521. {block:Title}
  522. <div class="title">{Title}</div>
  523. {/block:Title}
  524. {Body}
  525. {/block:Text}
  526.  
  527. {block:Photo}
  528. <div class="media">{LinkOpenTag}<div align="center"><img src="{PhotoURL-500}" alt="{PhotoAlt}"/></div>{LinkCloseTag}</div>
  529. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  530. {/block:Photo}
  531.  
  532. {block:Photoset}
  533. <div class="media"><div align="center">{Photoset-500}</div></div>
  534. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  535. {/block:Photoset}
  536.  
  537. {block:Quote}
  538. <div class="quote">"{Quote}"</div>
  539. {block:Source}
  540. <div class="quotesource">{Source}</div>
  541. {/block:Source}
  542. {/block:Quote}
  543.  
  544. {block:Link}
  545. <div class="title"><a href="{URL}">{Name}</a></div>
  546. {block:Description}
  547. <div class="description">{Description}</div>
  548. {/block:Description}
  549. {/block:Link}
  550.  
  551. {block:Chat}
  552. {block:Title}
  553. <div class="title">{Title}</div>
  554. {/block:Title}
  555.  
  556. {block:Lines}
  557. <div class="{Alt} user_{UserNumber}">
  558. {block:Label}
  559. <b>{Label}</b>{/block:Label}
  560. &nbsp;{Line}
  561. </div>
  562. {/block:Lines}
  563. {/block:Chat}
  564.  
  565. {block:Video}
  566. <div class="media">{Video-500}</div>
  567. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  568. {/block:Video}
  569.  
  570. {block:Audio}
  571. <div class="media">
  572. {block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}
  573. {AudioPlayerWhite}
  574. {block:TrackName}{TrackName}<br>{/block:TrackName}
  575. {block:Artist}{Artist}<br>{/block:Artist}
  576. {block:Album}{Album}{/block:Album}
  577. </div>
  578. {block:Caption}{Caption}{/block:Caption}
  579. {/block:Audio}
  580.  
  581. {block:Answer}
  582. <div class="question">{Asker}: {Question}</div>
  583. <div class="caption">{Answer}</div>
  584. {/block:Answer}
  585.  
  586.  
  587. {block:Date}
  588. <div class="footer">
  589. <a href="{Permalink}">{TimeAgo}{block:NoteCount} ({NoteCountWithLabel}){/block:NoteCount}</a>
  590. {block:HasTags}<br>{block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags}{/block:HasTags}
  591. {block:PermalinkPage}{block:RebloggedFrom}<br><a href="{ReblogParentURL}">{lang:Reblogged from ReblogParentName}</a>{/block:RebloggedFrom}
  592. {block:ContentSource}<br><a href="{SourceURL}">{lang:Source}: {SourceTitle}</a>{/block:ContentSource}{/block:PermalinkPage}
  593. </div>
  594.  
  595. {block:PermalinkPage}
  596.  
  597. {block:NoteCount}
  598. {block:PostNotes}{PostNotes}{/block:PostNotes}
  599. {/block:NoteCount}
  600. {/block:PermalinkPage}
  601. {/block:Date}
  602.  
  603. </div>
  604. {/block:Posts}
  605.  
  606. {block:Pagination}
  607. <div id="nav">
  608. {block:PreviousPage}<a href="{PreviousPage}">{lang:Previous}</a>{/block:PreviousPage}
  609.  
  610. {block:NextPage}<a href="{NextPage}">{lang:Next}</a>{/block:NextPage}
  611. </div>
  612. {/block:Pagination}
  613. </div>
  614. </div>
  615.  
  616. </div>
  617.  
  618. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  619. <script>window.jQuery || document.write('<script src="http://static.tumblr.com/qxrkgx6/q6kmgn2w2/jquery-1.8.3.min.js"><\/script>')</script>
  620.  
  621. </body>
  622. </html>
Advertisement
Add Comment
Please, Sign In to add comment