Advertisement
konstantina

Loukia Theme by perfectic

Sep 10th, 2012
21,288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 16.05 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4. <!---------------------------------
  5. __   __  _   __  __   __  ___    __
  6. |__| |__ |_| |__ |__  /     |  | /
  7. |    |__ | \ |   |__  \__   |  | \__
  8.  
  9. Loukia Theme
  10.  
  11. personal: perfectic.tumblr.com
  12. themes: perfecticthemes.tumblr.com
  13.  
  14. please don't remove the credit.
  15. if you do, i'll report you.
  16.  
  17. ---------------------------------->
  18.  
  19. <head>
  20.  
  21. <script type="text/javascript"
  22. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  23.  
  24. <meta name="color:Background" content="#fafafa"/>
  25. <meta name="color:Text" content="#030303"/>
  26. <meta name="color:Links" content="#030303"/>
  27. <meta name="color:Links Hover" content="#dab4f1"/>
  28. <meta name="color:Blogtitle"content="#030303"/>
  29.  
  30. <meta name="image:Background" content=""/>
  31. <meta name="image:Sidebar Background" content=""/>
  32.  
  33. <meta name="if:custom scrollbar" content="1"/>
  34. <meta name="if:three columns" content="0"/>
  35.  
  36. <meta name="text:Link One Title" content="link 1" />
  37. <meta name="text:Link One" content="" />
  38. <meta name="text:Link Two Title" content="link 2" />
  39. <meta name="text:Link Two" content="" />
  40. <meta name="text:Link Three Title" content="link 3" />
  41. <meta name="text:Link Three" content="" />
  42. <meta name="text:Link Four Title" content="link 4" />
  43. <meta name="text:Link Four" content="" />
  44. <meta name="text:Link Five Title" content="link 5" />
  45. <meta name="text:Link Five" content="" />
  46. <meta name="text:Link Six Title" content="link 6" />
  47. <meta name="text:Link Six" content="" />
  48. <meta name="text:messagetext" content="Ask me anything!" />
  49. <meta name="text:Other" content="" />
  50.  
  51. <link href='http://fonts.googleapis.com/css?family=Lekton' rel='stylesheet' type='text/css'>
  52.  
  53.  
  54. <link href='http://fonts.googleapis.com/css?family=Happy+Monkey|Codystar' rel='stylesheet' type='text/css'>
  55.  
  56. <script type="text/javascript">
  57. // <![CDATA[
  58. var speed=100; // speed of wobbling, lower is faster
  59. var height=3; // height of wobbling in pixels
  60. var alink="/"; // page to link text to (set to ="" for no link)
  61.  
  62. /****************************
  63. * Wobbly Text Effect *
  64. *(c) 2003-6 mf2fm web-design*
  65. * http://www.mf2fm.com/rv *
  66. * DON'T EDIT BELOW THIS BOX *
  67. ****************************/
  68. var wobtxt, wobble, wobcnt=0;
  69. window.onload=function() { if (document.getElementById) {
  70. var i, wobli;
  71. wobble=document.getElementById("wobble");
  72. wobtxt=wobble.firstChild.nodeValue;
  73. while (wobble.childNodes.length) wobble.removeChild(wobble.childNodes[0]);
  74. for (i=0; i<wobtxt.length; i++) {
  75. wobli=document.createElement("span");
  76. wobli.setAttribute("id", "wobb"+i);
  77. wobli.style.position="relative";
  78. wobli.appendChild(document.createTextNode(wobtxt.charAt(i)));
  79. if (alink) {
  80. wobli.style.cursor="pointer";
  81. wobli.onclick=function() { top.location.href=alink; }
  82. }
  83. wobble.appendChild(wobli);
  84. }
  85. setInterval("wobbler()", speed);
  86. }}
  87.  
  88. function wobbler() {
  89. for (var i=0; i<wobtxt.length; i++) document.getElementById("wobb"+i).style.top=Math.round(height*Math.sin(i+wobcnt))+"px"
  90. wobcnt++;
  91. }
  92. // ]]>
  93. </script>
  94.  
  95.  
  96. <style type="text/css">  
  97.  
  98.  
  99. @import url(http://fonts.googleapis.com/css?family=Lekton);
  100.  
  101. #tumblr_controls {
  102. position: fixed;
  103. -webkit-filter: invert(100%)
  104. }
  105.  
  106. .wrapper{
  107. margin: 0px auto;
  108. width: 1000px;
  109. }
  110.  
  111. .header{
  112. float: center;
  113. width: 100%;
  114. }
  115.  
  116.  
  117. body {
  118. position: relative;
  119. padding: 10px;
  120. margin: 0px;
  121. float: center;
  122. color:{color:text};
  123. font-family: calibri;
  124. font-size:13px;
  125. line-height:14px;
  126. background-color: {color:Background};
  127. background-image:url({image:Background});
  128. background-attachment: fixed;
  129. background-size:cover;
  130. }
  131.  
  132. a:link, a:active, a:visited{
  133. color:{color:Links};
  134. text-decoration: none;
  135. -webkit-transition: color 0.4s ease-out;
  136. -moz-transition: color 0.4s ease-out;
  137. }
  138.  
  139. a:hover{
  140. text-shadow:0px 0px 5px {color:Links};    
  141. color:{color:Links Hover};
  142. -webkit-transition: color 0.4s ease-out;
  143. -moz-transition: color 0.4s ease-out;
  144. -webkit-transition: all 0.2s linear;
  145. -webkit-transition: all 0.2s linear;
  146. -moz-transition: all 0.2s linear;
  147. transition: all 0.2s linear;
  148. }
  149.  
  150.  
  151. #posts {
  152. float:center;
  153. width:800px;
  154. margin-top: 10px;
  155. margin-left:200px;
  156. {Block:ifthreecolumns}
  157. width:1000px;
  158. {/Block:ifthreecolumns}
  159. }
  160.  
  161. .entry {
  162. overflow: hidden;
  163. position:relative;
  164. margin: 13px;
  165. padding: 10px;
  166. float:left;
  167. border: 1px solid #ddd;
  168. text-align: justify;
  169. font-family: 'calibri';
  170. font-size: 14px;
  171. line-height:15px;
  172. background-color: white;
  173. width:350px;
  174. {Block:ifthreecolumns}
  175. width:265px;
  176. {/Block:ifthreecolumns}
  177. {block:PermalinkPage}
  178. margin-top:4px;
  179. margin-left:350px;
  180. width:400px;
  181. {/block:PermalinkPage}
  182. -o-border-radius: 3px
  183. }
  184.  
  185. #sidebar {
  186. position:fixed !important;
  187. font-size: 12px;
  188. line-height:12px;
  189. width:250px;;
  190. left:50px;
  191. border:1px solid #ddd;
  192. top:170px;
  193. height:auto;
  194. padding:15px;
  195. z-index:10;
  196. overflow:hidden;
  197. text-align:center;
  198. background-color: white;
  199. background-image:url({image:Sidebar Background});
  200. background-size:cover;
  201. }
  202.  
  203.  
  204. #box1{
  205. font-family: 'calibri';
  206. font-size:17px;
  207. position:fixed;
  208. left:65px;
  209. padding-top:12px;
  210. margin-top:200px;
  211. padding-bottom:12px;
  212. text-align:center;
  213. height:10px;
  214. width:68px;
  215. color:#444444;
  216. overflow:hidden;
  217. -webkit-transition: opacity 0.7s linear;
  218. -webkit-transition: all 0.7s ease-in-out;
  219. -moz-transition: all 0.7s ease-in-out;
  220. -o-transition: all 0.7s ease-in-out;
  221. background:transparent;
  222. z-index:9999999999999999999999999999999;
  223. border-top:1px dashed #ddd;
  224. border-bottom:1px dashed #ddd;
  225. }
  226.  
  227. #box1:hover{
  228. border:1px dashed #000;
  229. padding:5px;
  230. height:135px;
  231. width:175px;
  232. z-index:99999999999999999999999999999999999;
  233. opacity: 0.8;
  234. background:#fff;
  235. }
  236.  
  237. #box2{
  238. font-family: 'calibri';
  239. font-size:17px;
  240. position:fixed;
  241. left:130px; padding-top:12px;
  242. margin-top:200px;
  243. padding-bottom:12px;
  244. text-align:center;
  245. height:10px;
  246. color:#444444;
  247. width:70px;
  248. overflow:hidden;
  249. -webkit-transition: opacity 0.7s linear;
  250. -webkit-transition: all 0.7s ease-in-out;
  251. -moz-transition: all 0.7s ease-in-out;
  252. -o-transition: all 0.7s ease-in-out;
  253. background:transparent;
  254. z-index:999999999;
  255. border-top:1px dashed #ddd;
  256. border-bottom:1px dashed #ddd;
  257. }
  258.  
  259. #box2:hover{
  260. border:1px dashed #000;
  261. padding:5px;
  262. height:250px;
  263. overflow:hidden;
  264. width:390px;
  265. opacity:1.0;
  266. background:white;
  267. opacity: 0.8;
  268. z-index:999999999;
  269. }
  270.  
  271. #box3{
  272. color:#444444;
  273. font-family: 'calibri';
  274. font-size:17px;
  275. position:fixed !important;
  276. left:195px; padding-top:12px;
  277. margin-top:200px;
  278. padding-bottom:12px;
  279. text-align:center;
  280. height:10px;
  281. width:68px;
  282. overflow:hidden;
  283. -webkit-transition: opacity 0.7s linear;
  284. -webkit-transition: all 0.7s ease-in-out;
  285. -moz-transition: all 0.7s ease-in-out;
  286. -o-transition: all 0.7s ease-in-out;
  287. background:transparent;
  288. z-index:9999;
  289. border-top:1px dashed #ddd;
  290. border-bottom:1px dashed #ddd;
  291. }
  292.  
  293. #box3:hover{
  294. border:1px dashed #000;
  295. padding:5px;
  296. height:195px;
  297. width:200px;
  298. z-index:999999999;
  299. opacity: 0.8;
  300. background:white;
  301. }
  302.  
  303.  
  304. #box4{
  305. font-family: 'calibri';
  306. font-size:17px;
  307. position:fixed !important;
  308. left:250px; padding-top:12px;
  309. margin-top:200px;
  310. color:#444444;
  311. padding-bottom:12px;
  312. text-align:center;
  313. height:10px;
  314. width:68px;
  315. overflow:hidden;
  316. -webkit-transition: opacity 0.7s linear;
  317. -webkit-transition: all 0.7s ease-in-out;
  318. -moz-transition: all 0.7s ease-in-out;
  319. -o-transition: all 0.7s ease-in-out;
  320. background:transparent;
  321. z-index:9999;
  322. border-top:1px dashed #ddd;
  323. border-bottom:1px dashed #ddd;
  324. }
  325.  
  326. #box4:hover{
  327. border:1px dashed #000;
  328. padding:5px;
  329. height:145px;
  330. width:200px;
  331. z-index:999999999;
  332. opacity: 0.8;
  333. background:white;
  334. }
  335.  
  336.  
  337. .title{
  338. font-family: 'century gothic';
  339. font-size: 17px;
  340. line-height:13px;
  341. color: black;
  342. font-weight:normal;
  343. }
  344.  
  345. .blogtitle{
  346. font-family: 'Codystar';
  347. font-size: 30px;
  348. line-height: 30px;
  349. margin-top:120px;
  350. color: {color:Blogtitle};
  351. float: center;
  352. letter-spacing: 0px;
  353. font-weight: normal;
  354. padding:0px;
  355. }    
  356.  
  357. blockquote{
  358. padding:0px 0px 2px 5px;
  359. margin:0px 0px 2px 10px;
  360. background-color:#ddd;
  361. border-left: 3px solid #525252;
  362. }
  363.  
  364. iframe, img, embed, object, video {
  365. max-width: 100%;
  366. }
  367.  
  368. article {
  369. width: 41.5%;
  370. margin: 0 10px;
  371. }
  372.  
  373. img {
  374. height: auto;
  375. width: auto;;
  376. }
  377.  
  378. .reblogbutton {
  379. height: auto;
  380. overflow: hidden;
  381. width: 60px;
  382. margin-left:0px;
  383. text-align: center;
  384. font-size: 12px;
  385. font-family:'calibri';
  386. background: white;
  387. line-height: 15px;
  388. opacity: 0;
  389. padding:4px 3px;
  390. position:absolute;
  391. filter: alpha(opacity = 0);
  392. -webkit-transition: all 0.4s linear;
  393. -moz-transition: all 0.4s linear;
  394. transition: all 0.4s linear;
  395. }
  396.  
  397. .entry:hover .reblogbutton {
  398. opacity: 0.9;
  399. top: 20px;
  400. left:20px;
  401. font-family:'calibri';
  402. filter: alpha(opacity = 80);
  403. -webkit-transition: all 0.4s linear;
  404. -moz-transition: all 0.4s linear;
  405. transition: all 0.4s linear;
  406. }  
  407.  
  408. .notesbutton {
  409. height: auto;
  410. overflow: hidden;
  411. width: auto;
  412. margin-left:0px;
  413. text-align: center;
  414. font-size: 12px;
  415. font-family:'calibri';
  416. background: white;
  417. line-height: 15px;
  418. opacity: 0;
  419. padding:4px 5px;
  420. position:absolute;
  421. text-transform:uppercase;
  422. filter: alpha(opacity = 0);
  423. -webkit-transition: all 0.4s linear;
  424. -moz-transition: all 0.4s linear;
  425. transition: all 0.4s linear;
  426. }
  427.  
  428. .entry:hover .notesbutton {
  429. opacity: 0.9;
  430. top: 55px;
  431. left:20px;
  432. font-family:'calibri';
  433. filter: alpha(opacity = 80);
  434. -webkit-transition: all 0.4s linear;
  435. -moz-transition: all 0.4s linear;
  436. transition: all 0.4s linear;
  437. }
  438.  
  439. #infscr-loading{
  440. bottom: -70px;
  441. position: absolute;
  442. left: 50%;
  443. margin-left:-8px;
  444. width:16px;
  445. height:11px;
  446. overflow:hidden;
  447. margin-bottom: 50px;
  448. }
  449.  
  450. {CustomCSS}
  451.  
  452. {block:ifcustomscrollbar}
  453. ::-webkit-scrollbar { width: 3px; height: 4px; }
  454. ::-webkit-scrollbar-button:start:decrement,
  455. ::-webkit-scrollbar-button:end:increment  { height: 0px; display: block; background: #fff; }
  456. ::-webkit-scrollbar-track-piece  { background: #fff; }
  457. ::-webkit-scrollbar-thumb {height: 50px; background-color: #000; }
  458. {/block:ifcustomscrollbar}
  459.  
  460. </style>
  461.  
  462. {block:IndexPage}
  463.  
  464. <script type="text/javascript"
  465. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  466.  
  467. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  468.  
  469. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  470. <script type="text/javascript">
  471. $(window).load(function () {
  472. var $content = $('#posts');
  473. $content.masonry({itemSelector: '.entry'}),
  474. $content.infinitescroll({
  475. navSelector : 'div#pagination',
  476. nextSelector : 'div#pagination a#nextPage',
  477. itemSelector : '.entry',
  478. loading: {
  479. finishedMsg: '',
  480. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  481. },
  482. bufferPx : 600,
  483. debug : false,
  484. },
  485. // call masonry as a callback.
  486. function( newElements ) {
  487. var $newElems = $( newElements );
  488. $newElems.hide();
  489. // ensure that images load before adding to masonry layout
  490. $newElems.imagesLoaded(function(){
  491. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );});});});
  492.    
  493. </script>
  494.  
  495. {/block:IndexPage}
  496.  
  497. <title>{title}</title>
  498.  
  499. <link rel="shortcut icon" href="{Favicon}">
  500. <meta name="viewport" content="width=820" />    
  501.    
  502. </head>
  503.  
  504. <body>
  505.  
  506.  
  507. <div class="wrapper">
  508. <div class="header">
  509. </div>
  510.  
  511. <div id="sidebar">
  512. <a href="/"><div class="blogtitle"><div id="wobble">{Title}</div></a><br></div>
  513. </div>
  514.  
  515.  
  516. <div id="box1">
  517. about<br>
  518. <div id="box">
  519. <br>
  520. {description}
  521. <br>
  522. </div></div>
  523.  
  524. <div id="box2">
  525. message<p>
  526. <div id="box">
  527. {text:messagetext}
  528. <br><br>
  529. <iframe frameborder="0" scrolling="yes" width="100%" height="200" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" style="background-color:transparent; overflow:hidden;"></iframe>
  530. </div></div>
  531.  
  532. <div id="box3">
  533. links<br><p>
  534. <div id="box">
  535. {block:ifLinkOne}
  536. <a href="{text:Link One}">{text:Link One Title}</a><br><br>
  537. {/block:ifLinkOne}
  538. {block:ifLinkTwo}
  539. <a href="{text:Link Two}">{text:Link Two Title}</a><br><br>
  540. {/block:ifLinkTwo}
  541. {block:ifLinkThree}
  542. <a href="{text:Link Three}">{text:Link Three Title}</a><br><br>
  543. {/block:ifLinkThree}
  544. {block:ifLinkFour}
  545. <a href="{text:Link Four}">{text:Link Four Title}</a><br><br>
  546. {/block:ifLinkFour}
  547. {block:ifLinkFive}
  548. <a href="{text:Link Five}">{text:Link Five Title}</a><br><br>
  549. {/block:ifLinkFive}
  550. {block:ifLinkSix}
  551. <a href="{text:Link Six}">{text:Link Six Title}</a><br><br>
  552. {/block:ifLinkSix}
  553. <br><br>
  554. </div>
  555. </div>
  556.  
  557. <div id="box4">
  558. other<br><p>
  559. <div id="box">
  560. {text:Other}
  561.  
  562. </div></div></center>
  563.  
  564.  
  565. <div id="posts">
  566.  
  567. {block:Posts}
  568.  
  569. <div class="entry">
  570.  
  571. {block:Text}<strong>{block:Title}<span class="title">{Title}</span>{/block:Title}</strong>{Body}<br>{block:IndexPage}<a href="{Permalink}">+ {NoteCount}</a> <a href="{ReblogURL}" target="_blank"></a>{/block:IndexPage}{/block:text}
  572.  
  573. {block:Photo}
  574. {block:IndexPage}{LinkOpenTag}
  575. <div class="photo">
  576. <a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  577. {LinkCloseTag}
  578. <div class="reblogbutton">
  579. <div class="background"><a href="{ReblogURL}" target="_blank">REBLOG</a></div></div><div class="notesbutton"><div class="background2"><a href="{Permalink}">{NoteCountWithLabel}</a></div></div>
  580. {/block:IndexPage}
  581. {block:PermalinkPage}<center>{LinkOpenTag}<a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="400"/></a>{LinkCloseTag}
  582. {block:Caption}
  583. {Caption}
  584. {/block:Caption}  
  585. {/block:PermalinkPage}</center>
  586. {/block:Photo}
  587.  
  588. {block:Photoset}
  589. {Photoset-250}
  590. {block:IndexPage}
  591. <div class="reblogbutton">
  592. <div class="background"><a href="{ReblogURL}" target="_blank">REBLOG</a></div></div><div class="notesbutton"><div class="background2"><a href="{Permalink}">{NoteCountWithLabel}</a></div></div>
  593. {/block:IndexPage}
  594. {/block:Photoset}
  595.  
  596. {block:Link}<a href="{URL}" class="title">{Name}</a><br>{block:Description}{Description}{/block:Description}<br>{block:IndexPage}<a href="{Permalink}">+ {NoteCount}</a> <a href="{ReblogURL}" target="_blank"></a>{/block:IndexPage}{/block:link}
  597.  
  598. {block:Answer}
  599. {Asker} whispered: <b>{Question}</b>
  600. {Answer}<br>
  601. {block:IndexPage}<a href="{Permalink}">+ {NoteCount}</a>{/block:IndexPage}
  602. {/block:Answer}
  603.  
  604. {block:Quote}<span class="title">"{Quote}"</span>{block:Source}<i> - {Source}</i>{/block:Source}<br><br>{block:IndexPage}<a href="{Permalink}">+ {NoteCount}</a> <a href="{ReblogURL}" target="_blank"></a>{/block:IndexPage}{/block:Quote}
  605.  
  606. {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}{block:Lines}<li class="user_{UserNumber}">{block:Label}<b>{Label}</b>{/block:Label}{Line}</li>{/block:Lines}</ul><br>
  607. {block:IndexPage}
  608. <a href="{Permalink}">+ {NoteCount}</a> <a href="{ReblogURL}" target="_blank"></a>
  609. {block:IndexPage}
  610. {/block:Chat}
  611.  
  612.  
  613. {Line}
  614. </li>
  615. {/block:Lines}
  616. </ul>
  617. {/block:Chat}
  618.  
  619.  
  620. {block:Audio}
  621. <center><div style="width:100%; height:28px;"><div style="float:left">{AudioPlayerBlack}</div><div style="margin-top:10px; float:right;">
  622. {block:ExternalAudio}{/block:ExternalAudio}</div></div></center><br>{block:IndexPage}<a href="{Permalink}">+ {NoteCount}</a> <a href="{ReblogURL}" target="_blank"></a>{/block:IndexPage}
  623. {/block:Audio}
  624.  
  625. {block:Video}
  626. {block:IndexPage}
  627. <a href="{Permalink}">+ {NoteCount}</a> <a href="{ReblogURL}" target="_blank"></a>
  628. {Video-250}</center>
  629. {/block:IndexPage}
  630. {block:PermalinkPage}
  631. <center>
  632. {Video-500}</center>
  633. {/block:PermalinkPage}
  634. {block:Video}
  635.  
  636. {block:PermalinkPage}
  637. <center>
  638. <br>{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</center>
  639.  
  640.  
  641. {/block:PermalinkPage}
  642.  
  643.  
  644. {block:PostNotes}{PostNotes}
  645. {/block:PostNotes}
  646. </div>
  647.  
  648.  
  649. {/block:Posts}
  650. </div>
  651. </div>
  652. {block:IndexPage}
  653. {block:Pagination}
  654. <div id="pagination">
  655. {block:NextPage}
  656. <a id="nextPage" href="{NextPage}"></a>
  657. {/block:NextPage}
  658. {block:PreviousPage}
  659. <a href="{PreviousPage}"></a>
  660. {/block:PreviousPage}
  661. </div>
  662. {/block:Pagination}
  663. {/block:IndexPage}
  664. </div>
  665.  
  666. </body>
  667.  
  668. <div style="font-size: 14px; float: right; position: fixed; bottom: 3px; right: 5px; text-transform:lowercase;"><a href="http://perfectic.tumblr.com/">credit</a></div>
  669.  
  670.  
  671. <html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement