mkbye

thm 22 — mkbye:celina

Jan 23rd, 2014
677
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.15 KB | None | 0 0
  1. <!--
  2. Theme 22 made by
  3. ╱╱╱╭╮╱╭╮
  4. ╱╱╱┃┃╱┃┃
  5. ╭╮╭┫┃╭┫╰━┳╮╱╭┳━━╮
  6. ┃╰╯┃╰╯┫╭╮┃┃╱┃┃┃━┫
  7. ┃┃┃┃╭╮┫╰╯┃╰━╯┃┃━┫
  8. ╰┻┻┻╯╰┻━━┻━╮╭┻━━╯
  9. ╱╱╱╱╱╱╱╱╱╭━╯┃
  10. ╱╱╱╱╱╱╱╱╱╰━━╯
  11. Please don't remove credit! If you do, please put it in your FAQ. Thank you :)
  12. http://mkbye.tumblr.com/
  13.  
  14. Theme created: 1.23.2013
  15. -->
  16.  
  17. <html lang="en">
  18. <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  19. <html xmlns="http://www.w3.org/1999/xhtml">
  20. <head>
  21. <script type="text/javascript">
  22. WebFontConfig = {
  23. google: { families: [ 'Allura::latin', 'Roboto:100:latin', 'Dancing+Script::latin', 'Pinyon+Script::latin', 'Allura::latin', 'Ruthie::latin', 'Noto+Sans:400,400italic:latin', 'Libre+Baskerville:400,400italic:latin', 'Satisfy::latin', 'Dawning+of+a+New+Day::latin','Dosis::latin', 'Raleway:200:latin', 'Parisienne::latin', 'Great+Vibes::latin', 'Clicker+Script::latin' ] }
  24. };
  25. (function() {
  26. var wf = document.createElement('script');
  27. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  28. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  29. wf.type = 'text/javascript';
  30. wf.async = 'true';
  31. var s = document.getElementsByTagName('script')[0];
  32. s.parentNode.insertBefore(wf, s);
  33. })(); </script>
  34. <script type="text/javascript"
  35. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  36. <script>
  37. $(document).ready(function() {
  38. //
  39. $('a.poplight[href^=#]').click(function() {
  40. var popID = $(this).attr('rel'); //Get Popup Name
  41. var popURL = $(this).attr('href'); //Get Popup href to define size
  42. var query= popURL.split('?');
  43. var dim= query[1].split('&');
  44. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  45. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('');
  46. var popMargTop = ($('#' + popID).height() + 80) / 2;
  47. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  48. //Apply Margin to Popup
  49. $('#' + popID).css({
  50. 'margin-top' : -popMargTop,
  51. 'margin-left' : -popMargLeft
  52. });
  53. $('body').append('<div id="fade"></div>');
  54. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  55. return false;
  56. });
  57. $('a.close, #fade').live('click', function() {
  58. $('#fade , .popup_block').fadeOut(function() {
  59. $('#fade, a.close').remove(); //fade them both out
  60. });
  61. return false;
  62. });
  63. });
  64. </script>
  65.  
  66.  
  67. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  68. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  69. <script>
  70. (function($){
  71. $(document).ready(function(){
  72. $("a[title]").style_my_tooltips({
  73. tip_follows_cursor:true,
  74. tip_delay_time:90,
  75. tip_fade_speed:600,
  76. attribute:"title"
  77. });
  78. });
  79. })(jQuery);
  80. </script>
  81.  
  82. <script type="text/javascript">
  83. // <![CDATA[
  84. var speed=50; // speed colours change, 1 second = 1000
  85. var delay=100; // how long to wait for each wipe
  86. var alink=""; // page to link text to (set to ="" for no link)
  87.  
  88. /****************************
  89. * Wipe Out Text Effect *
  90. *(c) 2003-6 mf2fm web-design*
  91. * http://www.mf2fm.com/rv *
  92. * DON'T EDIT BELOW THIS BOX *
  93. ****************************/
  94. var w_txt;
  95. window.onload=function() { if (document.getElementById) {
  96. var wiper=document.getElementById("wipe");
  97. w_txt=wiper.firstChild.nodeValue;
  98. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  99. for (var i=0; i<w_txt.length; i++) {
  100. var wipei=document.createElement("span");
  101. wipei.setAttribute("id", "wipe"+i);
  102. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  103. if (alink) {
  104. wipei.style.cursor="pointer";
  105. wipei.onclick=function() { top.location.href=alink; }
  106. }
  107. wiper.appendChild(wipei);
  108. }
  109. wipe(0);
  110. }}
  111.  
  112. function wipe(c) {
  113. if (!c) for (var w=0; w<w_txt.length; w++) document.getElementById("wipe"+w).style.visibility="hidden";
  114. else if (c<=w_txt.length) document.getElementById("wipe"+(c-1)).style.visibility="visible";
  115. setTimeout("wipe("+(++c%(w_txt.length+delay))+")", speed);
  116. }
  117. // ]]>
  118. </script>
  119.  
  120. <script type="text/javascript">
  121. <!--
  122.  
  123. // Disable Right Click Script
  124.  
  125. function IE(e)
  126. {
  127. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
  128. {
  129. return false;
  130. }
  131. }
  132. function NS(e)
  133. {
  134. if (document.layers || (document.getElementById && !document.all))
  135. {
  136. if (e.which == "2" || e.which == "3")
  137. {
  138. return false;
  139. }
  140. }
  141. }
  142. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  143.  
  144. //-->
  145. </script>
  146.  
  147.  
  148. <script type="text/javascript"
  149. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  150.  
  151. <!--DEFAULT VARIABLES-->
  152. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  153. <meta name="color:background" content="#fff"/>
  154. <meta name="color:link" content="#777"/>
  155. <meta name="color:text" content="#777"/>
  156. <meta name="color:title" content="#333"/>
  157. <meta name="color:hover" content="#fff"/>
  158. <meta name="image:background" content="1"/>
  159.  
  160. <meta name="image:sidebar" content="1"/>
  161. <meta name="image:bg" content="1"/>
  162. <meta name="image:picture" content="1"/>
  163.  
  164. <meta name="color:border" content="#fff"/>
  165. <meta name="color:border2" content="#fff"/>
  166. <meta name="color:name" content="#777"/>
  167.  
  168. <meta name="text:blogtitle" content="daydreamin'"/>
  169. <meta name="text:name" content="kendall & kylie"/>
  170. <meta name="text:stats" content="6 out of 100000"/>
  171. <meta name="text:link 1" content="/"/>
  172. <meta name="text:link 2" content="/"/>
  173. <meta name="text:link 3" content="/"/>
  174. <meta name="text:link 4" content="/"/>
  175. <meta name="text:link 5" content="/"/>
  176. <meta name="text:link 1 msg" content="home"/>
  177. <meta name="text:link 2 msg" content="message"/>
  178. <meta name="text:link 3 msg" content="movies"/>
  179. <meta name="text:link 4 msg" content="photography"/>
  180. <meta name="text:link 5 msg" content="face"/>
  181.  
  182. <meta name="text:quote" content="I want to grow old without face-lifts... I want to have the courage to be loyal to the face I've made. Sometimes I think it would be easier to avoid old age, to die young, but then you'd never complete your life, would you? You'd never wholly know you. - Marilyn Monroe"/>
  183.  
  184. <style type="text/css">
  185.  
  186. #fade { /*--Transparent background layer--*/
  187. display: none; /*--hidden by default--*/
  188. background:white;
  189. position: fixed; left: 0; top: 0;
  190. width: 100%; height: 100%;
  191. opacity: .50;
  192. z-index: 999999999;
  193. }
  194. .popup_block{
  195. display: none; /*--hidden by default--*/
  196. background-image:url({image:bg});
  197. padding: 20px;
  198. border: 10px solid {color:border2};
  199. float: left;
  200. font-size:12px;
  201. font-family:arial;
  202. position: fixed;
  203. top: 50%; left: 50%;
  204. z-index: 9999999999999999;
  205. /*--CSS3 Rounded Corners--*/
  206. -webkit-border-radius: 50px;
  207. -webkit-transition: all .7s ease;
  208. -moz-transition: all .7s ease;
  209. -o-transition: all .7s ease;
  210. transition: all .7s ease;
  211. }
  212. img.btn_close {
  213. float: right;
  214. margin: 5px 5px 0 0;
  215. }
  216. /*--Making IE6 Understand Fixed Positioning--*/
  217. *html #fade {
  218. position: absolute;
  219. }
  220. *html .popup_block {
  221. position: absolute;
  222. }
  223.  
  224.  
  225. .popup_block:hover{
  226. border-radius:50px;
  227. }
  228. #s-m-t-tooltip {
  229. max-width:300px;
  230. padding:6px 6px 6px 6px;
  231. margin:20px 0px 0px 20px;
  232. background:white; /* change the background color */
  233. border:1px solid {color:border}; /* change the border color */
  234. border-left:3px solid {color:bordeR};
  235. border-right:3px solid {color:bordeR};
  236. font-family:arial; /* change the font */
  237. font-size:10px; /* change the font size */
  238. letter-spacing:0px; /* change the letter spacing */
  239. color:{color:blogtitle}; /* change the text color */
  240. z-index:999999999999999999999999999999999999;
  241. border-radius:5px;
  242. text-transform:lowercase;
  243. }
  244.  
  245.  
  246. ::-webkit-scrollbar {width: 6px; height: 4px; background: #ffffff; }
  247. ::-webkit-scrollbar-thumb { background-color: {color:border}; -webkit-border-radius: 1ex; }
  248.  
  249. iframe#tumblr_controls {right:2px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.05;-webkit-transition: all 0.8s ease-out;-moz-
  250.  
  251. transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  252.  
  253. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 0.8;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  254.  
  255. p {
  256. margin:0px;
  257. margin-top:0px;
  258. }
  259.  
  260.  
  261. body {
  262. padding: 0px;
  263. margin: 0px;
  264. color:{color:text};
  265. font-family:arial;
  266. line-height:12px;
  267. font-size:11px;
  268. background-color: {color:Background};
  269. background-image:url({image:Background});
  270. background-attachment: fixed;
  271. background-repeat: repeat;
  272. }
  273.  
  274.  
  275. a:link, a:active, a:visited{
  276. text-decoration: none;
  277. -webkit-transition: color 0.3s ease-out;
  278. -moz-transition: color 0.3s ease-out;
  279. transition: color 0.3s ease-out;
  280. color:{color:link};
  281. }
  282.  
  283. a:hover {
  284. text-decoration: none;
  285. font-style:;
  286. color: {color:Hover};
  287. }
  288.  
  289. div#center{
  290. position:relative;
  291. width:1250px;
  292. background-color:;
  293. overflow:auto;
  294. overflow-y:hidden;
  295. }
  296.  
  297. askk {
  298. font-family:dawning of a new day;
  299. text-align: center;
  300. font-size:20px;
  301. color: {color:title};
  302. padding-top:10px;
  303. line-height:30px;
  304. text-shadow: 1.5px 1px #ddd;
  305. }
  306.  
  307. askkk {
  308. font-family:dawning of a new day;
  309. text-align: center;
  310. font-size:20px;
  311. line-height:30px;
  312. color: {color:title};
  313. text-shadow: 1.5px 1px #ddd;
  314. }
  315.  
  316. #askerpic img{
  317. width:35px;
  318. height:35px;
  319. padding:0px;
  320. border:0px;
  321. border-radius:100px;
  322. }
  323.  
  324. #mypic img{
  325. width:35px;
  326. height:35px;
  327. padding:0px;
  328. border:0px;
  329. border-radius:100px;
  330. }
  331. /*CUSTOMIZE ENTRY SETTINGS HERE*/
  332. .entry {
  333. float:left;
  334. display: block;
  335. margin:10px;
  336. overflow:hidden;
  337. width:270px;
  338. border:1px solid #dddddd;
  339. padding:15px;
  340. padding-bottom:13px;
  341. {block:PermalinkPage}
  342. width:450px;
  343. text-align:left;
  344. line-height:10px;
  345. {/block:PermalinkPage}
  346. background:white;
  347. background-image:URL();
  348. }
  349.  
  350. .entry img{
  351. width:253px;
  352. padding:8px;
  353. background:#efefef;
  354. border:1px solid #dddddd;
  355. {block:PermalinkPage}
  356. width:433px;
  357. {/block:PermalinkPage}
  358. }
  359.  
  360.  
  361. /*CUSTOMIZE THE APPEARANCE OF PERMALINKS*/
  362. .entry .perma{
  363. width:50px;
  364. height:50px;
  365. margin-left:50px;
  366. position: absolute;
  367. line-height: 16px;
  368. overflow:hidden;
  369. text-align:center;
  370. top:55px;
  371. background:{color:border};
  372. border:1px solid white;
  373. border-radius:5px;
  374. word-spacing:2px;
  375. letter-spacing:1px;
  376. opacity:0;
  377. -webkit-transition: all .7s ease;
  378. -moz-transition: all .7s ease;
  379. -o-transition: all .7s ease;
  380. transition: all .7s ease;
  381. }
  382.  
  383. .entry:hover .perma{
  384. overflow:visible;
  385. opacity:1;
  386. top:65px;
  387. }
  388.  
  389. .entry .perma2{
  390. width:50px;
  391. height:50px;
  392. margin-left:110px;
  393. position: absolute;
  394. line-height: 16px;
  395. overflow:hidden;
  396. text-align:center;
  397. top:55px;
  398. background:white;
  399. border:1px solid {color:border};
  400. border-bottom:1px solid {color:border2};
  401. border-right:1px solid {color:border2};
  402. border-radius:5px;
  403. word-spacing:2px;
  404. letter-spacing:1px;
  405. opacity:0;
  406. -webkit-transition: all .7s ease;
  407. -moz-transition: all .7s ease;
  408. -o-transition: all .7s ease;
  409. transition: all .7s ease;
  410. }
  411.  
  412. .entry:hover .perma2{
  413. overflow:visible;
  414. opacity:1;
  415. top:65px;
  416. }
  417.  
  418. .entry .perma3{
  419. width:50px;
  420. height:50px;
  421. margin-left:170px;
  422. position: absolute;
  423. line-height: 16px;
  424. overflow:hidden;
  425. text-align:center;
  426. top:55px;
  427. background:{color:border2};
  428. border:1px solid white;
  429. border-radius:5px;
  430. word-spacing:2px;
  431. letter-spacing:1px;
  432. opacity:0;
  433. -webkit-transition: all .7s ease;
  434. -moz-transition: all .7s ease;
  435. -o-transition: all .7s ease;
  436. transition: all .7s ease;
  437. }
  438.  
  439. .entry:hover .perma3{
  440. overflow:visible;
  441. opacity:1;
  442. top:65px;
  443. }
  444.  
  445. .perma3 img{
  446. margin-top:0px;
  447. margin-left:-3px;
  448. width:20px;
  449. }
  450.  
  451. .entry .perma4{
  452. width:170px;
  453. height:20px;
  454. margin-left:50px;
  455. position: absolute;
  456. line-height: 16px;
  457. overflow:hidden;
  458. text-align:center;
  459. top:140px;
  460. background:white;
  461. border:1px solid {color:border};
  462. border-bottom:1px solid {color:border2};
  463. border-right:1px solid {color:border2};
  464. border-radius:5px;
  465. word-spacing:0px;
  466. letter-spacing:0px;
  467. line-height:20px;
  468. opacity:0;
  469. -webkit-transition: all .7s ease;
  470. -moz-transition: all .7s ease;
  471. -o-transition: all .7s ease;
  472. transition: all .7s ease;
  473. }
  474.  
  475. .entry:hover .perma4{
  476. overflow:visible;
  477. opacity:1;
  478. top:130px;
  479. }
  480.  
  481.  
  482. /*CUSTOMIZE POST POSITIONING AND STUFFZ HERE*/
  483. #posts {
  484. width:800px;
  485. margin-top:70px;
  486. margin-left:600px;
  487. background:transparent;
  488. position:relative;
  489. overflow-y: hidden;
  490. }
  491.  
  492.  
  493. /*CUSTOMIZE SIDEBAR HERE*/
  494. #sidebar{
  495. position:fixed !important;
  496. width:400px;
  497. height:270px;
  498. margin-top:100px;
  499. margin-left:100px;
  500. background:white;
  501. text-align:center;
  502. border-radius:5px;
  503. border:1px solid {color:border};
  504. -webkit-transition: all .7s ease;
  505. -moz-transition: all .7s ease;
  506. -o-transition: all .7s ease;
  507. transition: all .7s ease;
  508. }
  509.  
  510. #blogtitle{
  511. position:fixed !important;
  512. z-index:999999;
  513. width:400px;
  514. margin-top:-23px;
  515. font-size:70px;
  516. font-family:dawning of a new day;
  517. color:white;
  518. text-shadow:-2px 0 {color:border}, 0 1px {color:border}, 1px 0 {color:border}, 0 -1px {color:border};
  519. }
  520.  
  521. #pic{
  522. position:fixed !important;
  523. width:380px;
  524. height:250px;
  525. margin-top:9px;
  526. margin-left:9px;
  527. border-radius:5px;
  528. border:1px solid {color:border2};
  529. background-image:url({image:bg});
  530. }
  531.  
  532. #pic img{
  533. width:380px;
  534. height:250px;
  535. border-radius:5px;
  536. opacity:1;
  537. -webkit-transition: all .7s ease;
  538. -moz-transition: all .7s ease;
  539. -o-transition: all .7s ease;
  540. transition: all .7s ease;
  541. -moz-transform: scale(1.0);
  542. -webkit-transform: scale(1.0);
  543. transform: scale(1.0);
  544. }
  545.  
  546. #sidebar:hover #pic img{
  547. opacity:0;
  548. -moz-transform: scale(0.5);
  549. -webkit-transform: scale(0.5);
  550. transform: scale(0.5);
  551. }
  552.  
  553. #pp{
  554. position:fixed !important;
  555. width:110px;
  556. height:110px;
  557. margin-top:20px;
  558. margin-left:143px;
  559. background:white;
  560. z-index:9999999999;
  561. opacity:0;
  562. -webkit-transition: all .7s ease;
  563. -moz-transition: all .7s ease;
  564. -o-transition: all .7s ease;
  565. transition: all .7s ease;
  566. }
  567.  
  568. #sidebar:hover #pp{
  569. opacity:1;
  570. margin-top:30px;
  571. }
  572.  
  573. #pp img{
  574. width:110px;
  575. height:110px;
  576. border-radius:5px;
  577. border:2px solid {color:border};
  578. padding:2px;
  579. z-index:9999999999;
  580. }
  581.  
  582. #pp2 img{
  583. position:fixed !important;
  584. margin-left:-110px;
  585. margin-top:-20px;
  586. -webkit-transform:rotate(50deg);
  587. opacity:0;
  588. -webkit-transition: all .7s ease;
  589. -moz-transition: all .7s ease;
  590. -o-transition: all .7s ease;
  591. transition: all .7s ease;
  592. }
  593.  
  594. #sidebar:hover #pp2 img{
  595. opacity:0.5;
  596. margin-left:-120px;
  597. }
  598.  
  599. #hey{
  600. position:fixed !important;
  601. z-index:9999999999;
  602. width:380px;
  603. height:30px;
  604. line-height:30px;
  605. margin-top:155px;
  606. margin-left:0px;
  607. font-size:30px;
  608. font-family:dawning of a new day;
  609. color:{color:name};
  610. opacity:0;
  611. -webkit-transition: all .7s ease;
  612. -moz-transition: all .7s ease;
  613. -o-transition: all .7s ease;
  614. transition: all .7s ease;
  615. }
  616.  
  617. #sidebar:hover #hey{
  618. opacity:1;
  619. margin-left:10px;
  620. }
  621.  
  622. #bye{
  623. position:fixed !important;
  624. width:360px;
  625. height:35px;
  626. margin-top:190px;
  627. margin-left:14px;
  628. background:white;
  629. border:1px solid {color:border2};
  630. border-radius:5px;
  631. padding:5px;
  632. overflow:auto;
  633. opacity:0;
  634. -webkit-transition: all .7s ease;
  635. -moz-transition: all .7s ease;
  636. -o-transition: all .7s ease;
  637. transition: all .7s ease;
  638. }
  639.  
  640. #sidebar:hover #bye{
  641. opacity:1;
  642. }
  643.  
  644. #hov{
  645. position:fixed !important;
  646. z-index:9999999999;
  647. width:100px;
  648. height:18px;
  649. margin-top:242px;
  650. margin-left:30px;
  651. border-top-right-radius:10px;
  652. border-top-left-radius:10px;
  653. background:{color:border};
  654. color:white;
  655. line-height:18px;
  656. opacity:0;
  657. -webkit-transition: all .7s ease;
  658. -moz-transition: all .7s ease;
  659. -o-transition: all .7s ease;
  660. transition: all .7s ease;
  661. }
  662.  
  663. #sidebar:hover #hov{
  664. opacity:1;
  665. margin-left:50px;
  666. }
  667.  
  668. #stats{
  669. position:fixed !important;
  670. z-index:9999999999;
  671. width:185px;
  672. height:18px;
  673. margin-top:-18px;
  674. margin-left:115px;
  675. border-top-right-radius:10px;
  676. border-top-left-radius:10px;
  677. background:{color:border};
  678. color:white;
  679. line-height:18px;
  680. opacity:0;
  681. -webkit-transition: all .7s ease;
  682. -moz-transition: all .7s ease;
  683. -o-transition: all .7s ease;
  684. transition: all .7s ease;
  685. }
  686.  
  687. #sidebar:hover #stats{
  688. opacity:1;
  689. }
  690.  
  691. #lol{
  692. position:fixed !important;
  693. width:400px;
  694. height:60px;
  695. margin-top:20px;
  696. margin-left:-550px;
  697. background-image:url({image:bg});
  698. border-radius:5px;
  699. border:1px solid {color:border2};
  700. opacity:0;
  701. -webkit-transition: all .7s ease;
  702. -moz-transition: all .7s ease;
  703. -o-transition: all .7s ease;
  704. transition: all .7s ease;
  705. }
  706.  
  707. #hov:hover #lol{
  708. opacity:1;
  709. margin-left:-50px;
  710. }
  711.  
  712. #link1{
  713. position:fixed !important;
  714. width:30px;
  715. height:30px;
  716. margin-top:14px;
  717. margin-left:20px;
  718. background:white;
  719. border-radius:100px;
  720. border:1px solid {color:border};
  721. font-size:20px;
  722. font-family:dawning of a new day;
  723. line-height:30px;
  724. -webkit-transition: all .7s ease;
  725. -moz-transition: all .7s ease;
  726. -o-transition: all .7s ease;
  727. transition: all .7s ease;
  728. }
  729.  
  730. #link1:hover{
  731. border:1px solid white;
  732. background:{color:border};
  733. }
  734.  
  735. #link2{
  736. position:fixed !important;
  737. width:30px;
  738. height:30px;
  739. margin-top:14px;
  740. margin-left:60px;
  741. background:white;
  742. border-radius:100px;
  743. border:1px solid {color:border2};
  744. font-size:20px;
  745. font-family:dawning of a new day;
  746. line-height:30px;
  747. -webkit-transition: all .7s ease;
  748. -moz-transition: all .7s ease;
  749. -o-transition: all .7s ease;
  750. transition: all .7s ease;
  751. }
  752.  
  753. #link2:hover{
  754. border:1px solid white;
  755. background:{color:border2};
  756. }
  757.  
  758. #link3{
  759. position:fixed !important;
  760. width:30px;
  761. height:30px;
  762. margin-top:14px;
  763. margin-left:100px;
  764. background:white;
  765. border-radius:100px;
  766. border:1px solid {color:border};
  767. font-size:20px;
  768. font-family:dawning of a new day;
  769. line-height:30px;
  770. -webkit-transition: all .7s ease;
  771. -moz-transition: all .7s ease;
  772. -o-transition: all .7s ease;
  773. transition: all .7s ease;
  774. }
  775.  
  776. #link3:hover{
  777. border:1px solid white;
  778. background:{color:border};
  779. }
  780.  
  781. #link4{
  782. position:fixed !important;
  783. width:30px;
  784. height:30px;
  785. margin-top:14px;
  786. margin-left:140px;
  787. background:white;
  788. border-radius:100px;
  789. border:1px solid {color:border2};
  790. font-size:20px;
  791. font-family:dawning of a new day;
  792. line-height:30px;
  793. -webkit-transition: all .7s ease;
  794. -moz-transition: all .7s ease;
  795. -o-transition: all .7s ease;
  796. transition: all .7s ease;
  797. }
  798.  
  799. #link4:hover{
  800. border:1px solid white;
  801. background:{color:border2};
  802. }
  803.  
  804. #link5{
  805. position:fixed !important;
  806. width:30px;
  807. height:30px;
  808. margin-top:14px;
  809. margin-left:180px;
  810. background:white;
  811. border-radius:100px;
  812. border:1px solid {color:border};
  813. font-size:20px;
  814. font-family:dawning of a new day;
  815. line-height:30px;
  816. -webkit-transition: all .7s ease;
  817. -moz-transition: all .7s ease;
  818. -o-transition: all .7s ease;
  819. transition: all .7s ease;
  820. }
  821.  
  822. #link5:hover{
  823. border:1px solid white;
  824. background:{color:border};
  825. }
  826.  
  827. #link6{
  828. position:fixed !important;
  829. width:30px;
  830. height:30px;
  831. margin-top:14px;
  832. margin-left:220px;
  833. background:white;
  834. border-radius:100px;
  835. border:1px solid {color:border2};
  836. font-size:20px;
  837. font-family:dawning of a new day;
  838. line-height:30px;
  839. -webkit-transition: all .7s ease;
  840. -moz-transition: all .7s ease;
  841. -o-transition: all .7s ease;
  842. transition: all .7s ease;
  843. }
  844.  
  845. #link6:hover{
  846. border:1px solid white;
  847. background:{color:border2};
  848. }
  849.  
  850. #updates{
  851. position:fixed !important;
  852. width:120px;
  853. height:30px;
  854. margin-top:14px;
  855. margin-left:260px;
  856. background:white;
  857. border-radius:100px;
  858. border:1px solid {color:border};
  859. font-size:20px;
  860. font-family:dawning of a new day;
  861. line-height:30px;
  862. -webkit-transition: all .7s ease;
  863. -moz-transition: all .7s ease;
  864. -o-transition: all .7s ease;
  865. transition: all .7s ease;
  866. }
  867.  
  868. #updates:hover{
  869. border:1px solid white;
  870. background:{color:border};
  871. }
  872.  
  873.  
  874. #quotebar{
  875. position:fixed !important;
  876. z-index:99;
  877. width:2500px;
  878. height:25px;
  879. background:{color:border2};
  880. margin-left:-400px;
  881. margin-top:-48px;
  882. border:3px double white;
  883. font-size:11px;
  884. color:white;
  885. text-transform:lowercase;
  886. }
  887.  
  888. #quote{
  889. position:fixed !important;
  890. width:2000px;
  891. text-align:center;
  892. line-height:25px;
  893. }
  894.  
  895. @font-face{font-family:dawning of a new day; src: url(http://static.tumblr.com/9wzbixa/caAmj3lsm/neverletgo.ttf);}
  896.  
  897. @font-face{font-family:dawning of a new day; src: url(http://slutpark-resources.webs.com/Hasteristico.ttf);}
  898.  
  899. /*CUSTOMIZE TITLE OF ENTRIES HERE*/
  900. .title{
  901. line-height: 20px;
  902. font-family:dawning of a new day;
  903. font-size:25px;
  904. color:{color:Title};
  905. font-weight: normal;
  906. }
  907.  
  908.  
  909. /*CUSTOMIZE PERMALINKS OF TEXT POSTS AND SUCH HERE*/
  910. .permalink{
  911. text-transform: normal;
  912. display: block;
  913. text-align: right;
  914. text-decoration: none;
  915. }
  916.  
  917.  
  918. /*I RECCOMMEND TO NOT TOUCH ANY OF THIS LOLz*/
  919. #infscr-loading{
  920. bottom: -70px;
  921. position: absolute;
  922. left: 50%;
  923. margin-left:-8px;
  924. width:16px;
  925. height:11px;
  926. overflow:hidden;
  927. margin-bottom: 50px;
  928. }
  929.  
  930. #postnotes{
  931. text-align: justify;}
  932.  
  933. #postnotes blockquote{
  934. border: 0px;}
  935.  
  936. blockquote{
  937. padding:0px 0px 2px 5px;
  938. margin:0px 0px 2px 10px;
  939. border-left: 1px dotted #555555;
  940. }
  941.  
  942. blockquote p, ul{
  943. margin:0px;
  944. padding:0px;
  945. }
  946.  
  947. a img{border: 0px;}
  948.  
  949.  
  950. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  951.  
  952. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  953. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:text};}
  954.  
  955. .notes img{width:10px; position:relative; top:3px;}
  956. <--ses-->
  957. small{font-size: 90%;}
  958.  
  959. {CustomCSS}
  960.  
  961. </style>
  962.  
  963. {block:IndexPage}
  964. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  965. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  966.  
  967. <script type="text/javascript">
  968. $(window).load(function(){
  969. var $wall = $('#posts');
  970. $wall.imagesLoaded(function(){
  971. $wall.masonry({
  972. itemSelector: '.entry, .entry_photo',
  973. isAnimated : false
  974. });
  975. });
  976.  
  977. $wall.infinitescroll({
  978. navSelector : '#pagination',
  979. nextSelector : '#pagination a',
  980. itemSelector : '.entry, .entry_photo',
  981. bufferPx : 2000,
  982. debug : false,
  983. errorCallback: function() {
  984. $('#infscr-loading').fadeOut('normal');
  985. }},
  986. function( newElements ) {
  987. var $newElems = $( newElements );
  988. $newElems.hide();
  989. $newElems.imagesLoaded(function(){
  990. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  991. });
  992. }); $('#posts').show(500);
  993. });
  994. </script>
  995.  
  996.  
  997. {/block:IndexPage}
  998. <script type="text/javascript" src="http://static.tumblr.com/kjq4nx5/2ezmru5eo/infinitescroll.txt"></script>
  999. <title>{title}</title>
  1000.  
  1001. <link rel="shortcut icon" href="{Favicon}" />
  1002. <meta name="viewport" content="width=820" />
  1003. </head>
  1004.  
  1005. <body>
  1006. <BODY onselectstart="return false;" ondragstart="return false;">
  1007. <div class="wrapper">
  1008. <div class="header">
  1009. </div>
  1010.  
  1011. <div id="cage">
  1012. <div id="center">
  1013.  
  1014. <div id="quotebar">
  1015. <div id="quote"><span id="wipe">{text:quote}</span></div>
  1016. </div>
  1017.  
  1018. <!--STUFF THAT GOES INTO THE SIDEBAR-->
  1019. <div id="sidebar">
  1020. <center>
  1021.  
  1022. <div id="blogtitle">{text:blogtitle}</div>
  1023.  
  1024. <div id="pic"><img src="{image:sidebar}"></div>
  1025.  
  1026. <div id="pp"><img src="{image:picture}"></div>
  1027. <div id="pp2"><img src="http://static.tumblr.com/f5cdfb73653c349b29ab62fa112a21c5/hz4a6kx/5cBmpyda4/tumblr_static_transparent_birds.png"></div>
  1028. <div id="hey">{text:name}.</div>
  1029. <div id="bye">{description}</div>
  1030. <div id="hov">hover.
  1031. <div id="stats">{text:stats}</div>
  1032. <div id="lol">
  1033. <div id="link1"><a href="{text:link 1}" title="{text:link 1 msg}">.1</a></div>
  1034. <div id="link2"><a href="{text:link 2}" title="{text:link 2 msg}">.2</a></div>
  1035. <div id="link3"><a href="{text:link 3}" title="{text:link 3 msg}">.3</a></div>
  1036. <div id="link4"><a href="{text:link 4}" title="{text:link 4 msg}">.4</a></div>
  1037. <div id="link5"><a href="{text:link 5}" title="{text:link 5 msg}">.5</a></div>
  1038. <div id="link6"><a href="http://mkbye.tumblr.com/" title="theme credit">.6</a></div>
  1039. <div id="updates"><a href="#?w=300" rel="02" class="poplight">updates</a></div>
  1040. </div>
  1041. </div>
  1042. </div>
  1043.  
  1044.  
  1045.  
  1046. </center>
  1047. </div>
  1048. <!------------------------------------->
  1049.  
  1050.  
  1051. <div class="left">
  1052. <div id="posts">
  1053. {block:Posts}
  1054. <div class="entry">
  1055.  
  1056. {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span><p align=right><span class="permalink"><a
  1057.  
  1058. href="{Permalink}"><a href="{Permalink}"><a href="{Permalink}">{notecountwithlabel}</a></a><br>{/block:HasTags}</span></align>
  1059. {/block:Text}
  1060.  
  1061. {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description} <p align=right><span
  1062.  
  1063. class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"></span></align>{block:Link}
  1064.  
  1065. {block:Answer}
  1066. <div style="float:left;
  1067. z-index:8;
  1068. margin-left: 6px;
  1069. margin-top: 5px;
  1070. padding: 2px;
  1071. padding-bottom: 2px;
  1072. background: {color:border};
  1073. width:35px;
  1074. height:35px;
  1075. border:1px solid {color:border2};
  1076. border-radius: 100px;
  1077. ">
  1078. <div id="askerpic"><img src="{AskerPortraitURL-30}"></div></div>
  1079.  
  1080. <div style="margin-top:2px;
  1081. margin-bottom:0px;
  1082. margin-left:60px;
  1083. min-height:41px;
  1084. min-width:170px;
  1085. padding: 10px;
  1086. padding-bottom: 10px;
  1087. background-color:#fff;
  1088. border:1px solid #eee;
  1089. text-transform:normal;
  1090. font-size:12px;
  1091. font-family: calibri;
  1092. border-radius:5px;
  1093. text-align:left;">
  1094. <askk>{asker}</askk>: {Question}</div>
  1095.  
  1096. <div style="padding: 5px;"></div>
  1097. <div style="float:right;
  1098. z-index:8;
  1099. margin-right: 3px;
  1100. margin-top: 6px;
  1101. padding:2px;
  1102. background: {color:border2};
  1103. width:35px;
  1104. height:35px;
  1105. border:1px solid {color:border};
  1106. border-radius: 100px;
  1107. ">
  1108. <div id="mypic"><img src="{PostAuthorPortraitURL-30}"></div></div>
  1109.  
  1110. <div style="margin-top:2px;
  1111. margin-right:48px;
  1112. margin-bottom:0px;
  1113. min-height:41px;
  1114. width:190px;
  1115. {block:permalinkpage}
  1116. width:375px;
  1117. {/block:permalinkpage}
  1118. padding: 10px;
  1119. padding-bottom: 10px;
  1120. background-color:#fff;
  1121. border:1px solid #eee;
  1122. text-transform:normal;
  1123. font-size:12px;
  1124. font-family: calibri;
  1125. border-radius:5px;
  1126. text-align:left;">
  1127. <askkk>{text:name}</askkk>: {Answer}</div>
  1128.  
  1129. <div style="padding: 10px;"></div>
  1130.  
  1131. <div style="text-align: right;">{timeago} & <a href="{Permalink}">{notecountwithlabel}</a></div>
  1132. <div style="padding: 5px;"></div>
  1133.  
  1134. {block:IndexPage}
  1135. <div class="permalinktext">
  1136. </div>
  1137. {/block:indexpage}
  1138. {/block:Answer}
  1139.  
  1140. {block:Photo}
  1141. {block:IndexPage}
  1142. <center>
  1143. <div class="perma">
  1144. <a href="{ReblogURL}" target="_blank">
  1145. <div style="margin-top:10px; margin-left:10px;">{ReblogButton color="white" size="30"}</div> </a> </div>
  1146.  
  1147. <div class="perma2">
  1148. <div style="margin-top:10px; margin-left:0px;">{LikeButton color="gray" size="30"}</div> </div>
  1149.  
  1150. <div class="perma3"><a href="{Permalink}" title="{notecountwithlabel}">
  1151. <img src="http://i.imgur.com/Taq0deT.png" style="width:30px; background:{color:border2};"></a>
  1152. </div>
  1153.  
  1154. <div class="perma4">{timeago}</div>
  1155.  
  1156. <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  1157. {/block:IndexPage}
  1158. {block:PermalinkPage}
  1159. {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  1160.  
  1161. {LinkCloseTag}
  1162. {/block:PermalinkPage}
  1163. {/block:Photo}
  1164.  
  1165. {block:Photoset}
  1166. {block:IndexPage}
  1167. <center>
  1168.  
  1169. <div class="perma">
  1170. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  1171.  
  1172. {Photoset-250}</center>
  1173. {/block:IndexPage}
  1174. {block:PermalinkPage}
  1175. <center>
  1176. {Photoset-500}</center>
  1177. {/block:PermalinkPage}
  1178. {/block:Photoset}
  1179.  
  1180. {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br><p align=right><span class="permalink"><a
  1181.  
  1182. href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </span>{/block:Quote}
  1183.  
  1184. {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}
  1185. <ul class="chat">
  1186. {block:Lines}
  1187. <li class="user_{UserNumber}">
  1188. {block:Label}
  1189. <span class="label">{Label}</span>
  1190. {/block:Label}
  1191.  
  1192. {Line}
  1193. </li>
  1194. {/block:Lines}
  1195. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}">
  1196. {/block:Chat}
  1197.  
  1198. {block:Audio}
  1199. <div style="width:200px; height:30px;">
  1200. {AudioPlayerBlack}
  1201. </div>
  1202. {block:IndexPage}<span class="permalink">
  1203. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </a>
  1204. </span>{/block:IndexPage}
  1205. {/block:Audio}
  1206.  
  1207. {block:Video}
  1208. {block:IndexPage}
  1209. <center>
  1210. <div class="perma">
  1211. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  1212. {Video-250}</center>
  1213. {/block:IndexPage}
  1214. {block:PermalinkPage}
  1215. <center>
  1216. {Video-400}</center>
  1217. {/block:PermalinkPage}
  1218. {block:Video}
  1219.  
  1220.  
  1221. {block:PostNotes}<div align="middle">{caption}</div>
  1222. <center>
  1223.  
  1224. {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
  1225.  
  1226. {block:HasTags}
  1227. tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
  1228. {block:RebloggedFrom}
  1229. reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  1230. posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
  1231.  
  1232. {/block:RebloggedFrom}
  1233. </center></span>
  1234. <br>
  1235. <div id="postnotes">{PostNotes}</div><br>
  1236.  
  1237. <center>{block:ContentSource}
  1238. <br><a href="{SourceURL}">
  1239. {lang:Source}:
  1240. {block:SourceLogo}
  1241. <img src="{BlackLogoURL}" width="{LogoWidth}"
  1242. height="{LogoHeight}" alt="{SourceTitle}" />
  1243. {/block:SourceLogo}
  1244. {block:NoSourceLogo}
  1245. {SourceLink}
  1246. {/block:NoSourceLogo}
  1247. </a>
  1248. {/block:ContentSource}</center>
  1249.  
  1250. {/block:PostNotes}
  1251. </div>
  1252. {/block:Posts}
  1253. </div></div>
  1254.  
  1255. {block:IndexPage}
  1256. {block:Pagination}
  1257. <div id="pagination">
  1258. {block:NextPage}
  1259. <a id="nextPage" href="{NextPage}"></a>
  1260. {/block:NextPage}
  1261. {block:PreviousPage}
  1262. <a href="{PreviousPage}"></a>
  1263. {/block:PreviousPage}
  1264. </div>
  1265. {/block:Pagination}
  1266. {/block:IndexPage}
  1267. </body>
  1268. <div style="position:fixed; bottom:5px; right:5px; background:white; border: 1px solid #eee; padding: 3px; padding-bottom:5px; padding-top: 5px; font-family: calibri; font-size: 15px; line-height: 10px;"><a href="http://mkbye.tumblr.com" title="theme made by mkbye!">©</a></div>
  1269. <div id="02" class="popup_block">
  1270. <div style="font-family:dawning of a new day; font-size: 40px; line-height: 20px;padding:20px; text-align:center; color:{color:title};">updates<br>
  1271.  
  1272. <div style="padding-top:10px; font-family:arial; font-size:11px; line-height:11px; color:{color:text}; text-align:left;">
  1273.  
  1274. write your updates here!
  1275. (go to the end of your html and find this text, replace it with the words you want!!)
  1276.  
  1277. </div></div></div></div></div></div></div></div></div></div></div></div></div></div>
  1278. </html>
Advertisement
Add Comment
Please, Sign In to add comment