Advertisement
awkwardpengu1n

Theme 32 by awkward-pengu1n

Jul 30th, 2013
3,541
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.13 KB | None | 0 0
  1. <!--
  2. Theme 32 by Julia (awkward-pengu1n.tumblr.com)
  3. Please keep the credit, if you don't I will find you, report you, and your blog may be deleted! Code stealing IS illegal (copyright infringement) and I can sue you by filling out a form on tumblr.
  4. You may edit this to your liking just remember to credit me :)
  5. -->
  6.  
  7. <html lang="en">
  8. <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  9. <html xmlns="http://www.w3.org/1999/xhtml">
  10. <head>
  11.  
  12. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  13. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  14. <script>
  15. (function($){
  16. $(document).ready(function(){
  17. $("a[title]").style_my_tooltips({
  18. tip_follows_cursor:true,
  19. tip_delay_time:90,
  20. tip_fade_speed:600,
  21. attribute:"title"
  22. });
  23. });
  24. })(jQuery);
  25. </script>
  26.  
  27. <script type="text/javascript">
  28. <!--
  29.  
  30. // Disable Right Click Script
  31.  
  32. function IE(e)
  33. {
  34. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
  35. {
  36. return false;
  37. }
  38. }
  39. function NS(e)
  40. {
  41. if (document.layers || (document.getElementById && !document.all))
  42. {
  43. if (e.which == "2" || e.which == "3")
  44. {
  45. return false;
  46. }
  47. }
  48. }
  49. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  50.  
  51. //-->
  52. </script>
  53.  
  54.  
  55. <script type="text/javascript"
  56. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  57.  
  58. <!--DEFAULT VARIABLES-->
  59. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  60. <meta name="color:background" content="#fff"/>
  61. <meta name="color:link" content="#777"/>
  62. <meta name="color:text" content="#777"/>
  63. <meta name="color:scrollbar" content="#ccc"/>
  64. <meta name="color:sidebar background" content="#f9f9f9"/>
  65. <meta name="color:sidebar image background" content="#f2f2f2"/>
  66. <meta name="color:post background" content="#f9f9f9"/>
  67. <meta name="color:post borders" content="#ddd"/>
  68. <meta name="color:sidebar border 1" content="#ccc"/>
  69. <meta name="color:sidebar border 2" content="#ddd"/>
  70. <meta name="color:title" content="#333"/>
  71. <meta name="color:top line" content="#ccc"/>
  72. <meta name="color:tooltip borders" content="#bbb"/>
  73. <meta name="color:hover" content="#fff"/>
  74. <meta name="color:blogtitle" content="#666"/>
  75. <meta name="image:sidebar" content="1"/>
  76. <meta name="image:background" content="1"/>
  77. <meta name="text:name" content="bob">
  78. <meta name="text:link one" content="link one"/>
  79. <meta name="text:link one hover" content="one"/>
  80. <meta name="text:link two" content="link two"/>
  81. <meta name="text:link two hover" content="two"/>
  82. <meta name="text:link three" content="link three"/>
  83. <meta name="text:link three hover" content="three"/>
  84. <meta name="text:link four" content="link four"/>
  85. <meta name="text:link four hover" content="four"/>
  86. <meta name="text:link five" content="link five"/>
  87. <meta name="text:link five hover" content="five"/>
  88. <meta name="text:link six" content="link six"/>
  89. <meta name="text:link six hover" content="six"/>
  90.  
  91.  
  92. <style type="text/css">
  93.  
  94. .animated{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;}.animated.hinge{-webkit-animation-duration:2s;-moz-animation-duration:2s;-ms-animation-duration:2s;-o-animation-duration:2s;animation-duration:2s;}@-webkit-keyframes fadeIn {
  95. 0% {opacity: 0;} 100% {opacity: 1;}
  96. }
  97.  
  98. @-moz-keyframes fadeIn {
  99. 0% {opacity: 0;}
  100. 100% {opacity: 1;}
  101. }
  102.  
  103. @-o-keyframes fadeIn {
  104. 0% {opacity: 0;}
  105. 100% {opacity: 1;}
  106. }
  107.  
  108. @keyframes fadeIn {
  109. 0% {opacity: 0;}
  110. 100% {opacity: 1;}
  111. }
  112.  
  113. .fadeIn {
  114. -webkit-animation-name: fadeIn;
  115. -moz-animation-name: fadeIn;
  116. -o-animation-name: fadeIn;
  117. animation-name: fadeIn;
  118. }
  119. @-webkit-keyframes fadeInDown {
  120. 0% {
  121. opacity: 0;
  122. -webkit-transform: translateY(-20px);
  123. }
  124.  
  125. 100% {
  126. opacity: 1;
  127. -webkit-transform: translateY(0);
  128. }
  129. }
  130.  
  131. @-moz-keyframes fadeInDown {
  132. 0% {
  133. opacity: 0;
  134. -moz-transform: translateY(-20px);
  135. }
  136.  
  137. 100% {
  138. opacity: 1;
  139. -moz-transform: translateY(0);
  140. }
  141. }
  142.  
  143. @-o-keyframes fadeInDown {
  144. 0% {
  145. opacity: 0;
  146. -o-transform: translateY(-20px);
  147. }
  148.  
  149. 100% {
  150. opacity: 1;
  151. -o-transform: translateY(0);
  152. }
  153. }
  154.  
  155. @keyframes fadeInDown {
  156. 0% {
  157. opacity: 0;
  158. transform: translateY(-20px);
  159. }
  160.  
  161. 100% {
  162. opacity: 1;
  163. transform: translateY(0);
  164. }
  165. }
  166.  
  167. .fadeInDown {
  168. -webkit-animation-name: fadeInDown;
  169. -moz-animation-name: fadeInDown;
  170. -o-animation-name: fadeInDown;
  171. animation-name: fadeInDown;
  172. }
  173. @-webkit-keyframes fadeInLeft {
  174. 0% {
  175. opacity: 0;
  176. -webkit-transform: translateX(-20px);
  177. }
  178.  
  179. 100% {
  180. opacity: 1;
  181. -webkit-transform: translateX(0);
  182. }
  183. }
  184.  
  185. @-moz-keyframes fadeInLeft {
  186. 0% {
  187. opacity: 0;
  188. -moz-transform: translateX(-20px);
  189. }
  190.  
  191. 100% {
  192. opacity: 1;
  193. -moz-transform: translateX(0);
  194. }
  195. }
  196.  
  197. @-o-keyframes fadeInLeft {
  198. 0% {
  199. opacity: 0;
  200. -o-transform: translateX(-20px);
  201. }
  202.  
  203. 100% {
  204. opacity: 1;
  205. -o-transform: translateX(0);
  206. }
  207. }
  208.  
  209. @keyframes fadeInLeft {
  210. 0% {
  211. opacity: 0;
  212. transform: translateX(-20px);
  213. }
  214.  
  215. 100% {
  216. opacity: 1;
  217. transform: translateX(0);
  218. }
  219. }
  220.  
  221. .fadeInLeft {
  222. -webkit-animation-name: fadeInLeft;
  223. -moz-animation-name: fadeInLeft;
  224. -o-animation-name: fadeInLeft;
  225. animation-name: fadeInLeft;
  226. }
  227.  
  228.  
  229. #s-m-t-tooltip {
  230. max-width:300px;
  231. padding:2px 3px 2px 3px;
  232. margin:20px 0px 0px 20px;
  233. background: #fff; /* change the background color */
  234. border:3px solid {color:tooltip borders}; /* change the border color */
  235. border-top:1px solid {Color:tooltip borders};
  236. border-bottom:1px solid {color:tooltip borders};
  237. font-family:consolas; /* change the font */
  238. font-style:italic;
  239. border-radius:10px;
  240. font-size:10px;
  241. line-height:11px;
  242. letter-spacing:0px; /* change the letter spacing */
  243. text-transform:none; /* can be uppercase, lowercase, none*/
  244. color:{color:text}; /* change the text color */
  245. z-index:999999999999999999999999999999999999;
  246. }
  247.  
  248.  
  249. iframe#tumblr_controls {right:2px !important; position: fixed !important;-webkit-transition: opacity 0.3s linear;opacity: 0.3;-webkit-transition: all 0.8s ease-out;-moz-
  250.  
  251. transition: all 0.8s ease-out;transition: all 0.8s ease-out;-webkit-filter: invert(100%);}
  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:10px;
  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. margin:auto;
  291. position:relative;
  292. width:1000px;
  293. margin-left:250px;
  294. background-color:;
  295. overflow:auto;
  296. overflow-y:hidden;
  297. }
  298.  
  299.  
  300. /*CUSTOMIZE ENTRY SETTINGS HERE*/
  301. .entry {
  302. float:left;
  303. display: block;
  304. margin:8px;
  305. padding:8px;
  306. padding-bottom:5px;
  307. border:1px solid {color:post borders};
  308. background:{color:post background};
  309. overflow:hidden;
  310. width:230px;
  311. {block:PermalinkPage}
  312. width:450px;
  313. text-align:left;
  314. line-height:12px;
  315. {/block:PermalinkPage}
  316. background-image:URL();
  317. }
  318.  
  319.  
  320. /*CUSTOMIZE THE APPEARANCE OF PERMALINKS*/
  321. .entry .perma{
  322. width:230px;
  323. height:30px;
  324. margin-left:0px;
  325. font-size:26px;
  326. font-family:aw;
  327. line-height:35px;
  328. border-top:4px double {color:post borders};
  329. position: absolute;
  330. overflow:hidden;
  331. z-index:9;
  332. text-align:center;
  333. bottom:-30px;
  334. background:{color:post background};
  335. word-spacing:2px;
  336. letter-spacing:1px;
  337. opacity: 0.0;
  338. -webkit-transition: all .7s ease;
  339. -moz-transition: all .7s ease;
  340. -o-transition: all .7s ease;
  341. transition: all .7s ease;
  342.  
  343. }
  344.  
  345. .entry:hover .perma{
  346. overflow:visible;
  347. opacity:1;
  348. bottom:0px;
  349. }
  350.  
  351.  
  352. /*CUSTOMIZE POST POSITIONING AND STUFFZ HERE*/
  353. #posts {
  354. width:820px;
  355. margin-top:40px;
  356. z-index:99;
  357. margin-left:180px;
  358. right:auto;
  359. background:transparent;
  360. margin-right:auto;
  361. position:relative;
  362. overflow-y: hidden;
  363. -webkit-animation:fadeInDown 2s;
  364. -moz-animation:fadeInDown 2s;
  365. -ms-animation:fadeInDown 2s;
  366. }
  367.  
  368.  
  369. /*CUSTOMIZE SIDEBAR HERE*/
  370. #sidebar{
  371. position:fixed !important;
  372. width:270px;
  373. background:{color:sidebar background};
  374. height:auto;
  375. padding:20px;
  376. padding-bottom:12px;
  377. box-shadow:10px 10px 0px {color:sidebar border 1},-10px -10px 0px {color:sidebar border 2}, 10px -10px 0px {color:sidebar border 1}, -10px 10px 0px {color:sidebar border 2};
  378. border:0px;
  379. margin-top:120px;
  380. margin-left:-200px;
  381. text-align:center;
  382. z-index:999;
  383. -webkit-animation:fadeInLeft 2s;
  384. -moz-animation:fadeInLeft 2s;
  385. -ms-animation:fadeInLeft 2s;
  386. }
  387.  
  388. #sidepic img{
  389. background:{color:sidebar image background};
  390. border:1px solid {color:sidebar image background};
  391. padding:6px;
  392. margin-top:-7px;
  393. margin-left:-7px;
  394. }
  395.  
  396. #desc{
  397. position:fixed;
  398. opacity:0;
  399. margin-top:-34px;
  400. width:280px;
  401. margin-left:-20px;
  402. background:{color:sidebar background};
  403. border:5px solid {color:sidebar image background};
  404. padding:10px;
  405. -webkit-transition: opacity .7s linear;
  406. -webkit-transition: all .7s ease-in-out;
  407. -moz-transition: all .7s ease-in-out;
  408. -o-transition: all .7s ease-in-out;
  409. }
  410.  
  411. #sidebar:hover #desc{
  412. margin-top:35px;
  413. opacity:1;
  414. }
  415.  
  416. #link1{
  417. position:fixed;
  418. width:15px;
  419. height:10px;
  420. padding:10px;
  421. padding-left:5px;
  422. font-family:consolas;
  423. font-size:20px;
  424. line-height:10px;
  425. margin-left:250px;
  426. border:5px solid {color:sidebar image background};
  427. background:{color:sidebar background};
  428. -webkit-transition: opacity .7s linear;
  429. -webkit-transition: all .7s ease-in-out;
  430. -moz-transition: all .7s ease-in-out;
  431. -o-transition: all .7s ease-in-out;
  432. }
  433.  
  434. #link1:hover{
  435. background:{color:sidebar border 1};
  436. border:5px solid {color:sidebar border 1};
  437. }
  438.  
  439. #link1:hover a{
  440. color:white;
  441. }
  442.  
  443. #link2{
  444. position:fixed;
  445. width:15px;
  446. height:10px;
  447. padding:10px;
  448. padding-left:5px;
  449. font-family:consolas;
  450. font-size:20px;
  451. line-height:10px;
  452. margin-left:250px;
  453. margin-top:60px;
  454. border:5px solid {color:sidebar image background};
  455. background:{color:sidebar background};
  456. -webkit-transition: opacity .7s linear;
  457. -webkit-transition: all .7s ease-in-out;
  458. -moz-transition: all .7s ease-in-out;
  459. -o-transition: all .7s ease-in-out;
  460. }
  461.  
  462. #link2:hover{
  463. background:{color:sidebar border 2};
  464. border:5px solid {color:sidebar border 2};
  465. }
  466.  
  467. #link2:hover a{
  468. color:white;
  469. }
  470.  
  471. #link3{
  472. position:fixed;
  473. width:15px;
  474. height:10px;
  475. padding:10px;
  476. padding-left:5px;
  477. font-family:consolas;
  478. font-size:20px;
  479. line-height:10px;
  480. margin-left:250px;
  481. margin-top:120px;
  482. border:5px solid {color:sidebar image background};
  483. background:{color:sidebar background};
  484. -webkit-transition: opacity .7s linear;
  485. -webkit-transition: all .7s ease-in-out;
  486. -moz-transition: all .7s ease-in-out;
  487. -o-transition: all .7s ease-in-out;
  488. }
  489.  
  490. #link3:hover{
  491. background:{color:sidebar border 1};
  492. border:5px solid {color:sidebar border 1};
  493. }
  494.  
  495. #link3:hover a{
  496. color:white;
  497. }
  498.  
  499. #link4{
  500. position:fixed;
  501. width:15px;
  502. height:10px;
  503. padding:10px;
  504. padding-left:5px;
  505. font-family:consolas;
  506. font-size:20px;
  507. line-height:10px;
  508. margin-left:250px;
  509. margin-top:180px;
  510. border:5px solid {color:sidebar image background};
  511. background:{color:sidebar background};
  512. -webkit-transition: opacity .7s linear;
  513. -webkit-transition: all .7s ease-in-out;
  514. -moz-transition: all .7s ease-in-out;
  515. -o-transition: all .7s ease-in-out;
  516. }
  517.  
  518. #link4:hover{
  519. background:{color:sidebar border 2};
  520. border:5px solid {color:sidebar border 2};
  521. }
  522.  
  523. #link4:hover a{
  524. color:white;
  525. }
  526.  
  527. #link5{
  528. position:fixed;
  529. width:15px;
  530. height:10px;
  531. padding:10px;
  532. padding-left:5px;
  533. font-family:consolas;
  534. font-size:20px;
  535. line-height:10px;
  536. margin-left:250px;
  537. margin-top:240px;
  538. border:5px solid {color:sidebar image background};
  539. background:{color:sidebar background};
  540. -webkit-transition: opacity .7s linear;
  541. -webkit-transition: all .7s ease-in-out;
  542. -moz-transition: all .7s ease-in-out;
  543. -o-transition: all .7s ease-in-out;
  544. }
  545.  
  546. #link5:hover{
  547. background:{color:sidebar border 1};
  548. border:5px solid {color:sidebar border 1};
  549. }
  550.  
  551. #link5:hover a{
  552. color:white;
  553. }
  554.  
  555. #link6{
  556. position:fixed;
  557. width:15px;
  558. height:10px;
  559. padding:10px;
  560. padding-left:5px;
  561. font-family:consolas;
  562. font-size:20px;
  563. line-height:10px;
  564. margin-left:250px;
  565. margin-top:300px;
  566. border:5px solid {color:sidebar image background};
  567. background:{color:sidebar background};
  568. -webkit-transition: opacity .7s linear;
  569. -webkit-transition: all .7s ease-in-out;
  570. -moz-transition: all .7s ease-in-out;
  571. -o-transition: all .7s ease-in-out;
  572. }
  573.  
  574. #link6:hover{
  575. background:{color:sidebar border 2};
  576. border:5px solid {color:sidebar border 2};
  577. }
  578.  
  579. #link6:hover a{
  580. color:white;
  581. }
  582.  
  583. #thing{
  584. position:fixed;
  585. width:60px;
  586. height:400px;
  587. background:transparent;;
  588. margin-left:300px;
  589. margin-top:-20px;
  590. }
  591.  
  592. #link1, #link2, #link3, #link4, #link5, #link6{
  593. opacity:0;
  594. }
  595. #sidebar:hover #link1, #sidebar:hover #link2, #sidebar:hover #link3, #sidebar:hover #link4, #sidebar:hover #link5, #sidebar:hover #link6{
  596. opacity:1;
  597. margin-left:310px;
  598. }
  599.  
  600. #blogtitle{
  601. position:fixed;
  602. margin-top:-80px;
  603. font-family:aw;
  604. font-size:92px;
  605. line-height:66px;
  606. margin-left:-20px;
  607. width:310px;
  608. text-align:center;
  609. padding:20px;
  610. padding-left:0px;
  611. padding-right:0px;
  612. z-index:9999999;
  613. color:{color:blogtitle};
  614. }
  615.  
  616. #lacee{
  617. position:fixed;
  618. z-index:999;
  619. top:0px;
  620. left:0px;
  621. width:100%;
  622. height:18px;
  623. opacity:0.9;
  624. border-top:20px solid white;
  625. background-image:url(http://static.tumblr.com/pbot8z9/fmKmqapgi/scallop.png);
  626. -webkit-animation:fadeInDown 2s;
  627. -moz-animation:fadeInDown 2s;
  628. -ms-animation:fadeInDown 2s;
  629. }
  630.  
  631. #linee{
  632. position:fixed;
  633. z-index:9999;
  634. width:100%;
  635. height:3px;
  636. left:0px;
  637. top:16px;
  638. background:{color:top line};
  639. -webkit-animation:fadeInDown 2s;
  640. -moz-animation:fadeInDown 2s;
  641. -ms-animation:fadeInDown 2s;
  642. }
  643.  
  644. #cred{
  645. border:1px solid #ccc;
  646. position:fixed;
  647. left:-130px;
  648. bottom:4px;
  649. font-size:10px;
  650. width:140px;
  651. height:14px;
  652. padding-top:1px;
  653. line-height:12px;
  654. text-align:right;
  655. padding-right:2px;
  656. font-family:consolas;
  657. background:#ffffff;
  658. z-index:999999;
  659. -webkit-transition: opacity .7s linear;
  660. -webkit-transition: all .7s ease-in-out;
  661. -moz-transition: all .7s ease-in-out;
  662. -o-transition: all .7s ease-in-out;
  663. -webkit-animation:fadeInLeft 2s;
  664. -moz-animation:fadeInLeft 2s;
  665. -ms-animation:fadeInLeft 2s;
  666. }
  667.  
  668. #cred a:hover{
  669. color:{color:link};
  670. }
  671.  
  672. #cred:hover{
  673. left:0px;
  674. }
  675.  
  676. askk{
  677. font-family: "aw";
  678. font-size: 22px;
  679. text-transform:normal;
  680. text-align:left;
  681. letter-spacing: 1px;
  682. line height:22px;
  683. color: {color:link};
  684. z-index: 1;
  685. }
  686.  
  687. @font-face { font-family: "dixel"; src: url('http://static.tumblr.com/jdjsstr/8ovm78cbb/pf_arma_five_1_.ttf'); }
  688. @font-face { font-family:"clementine"; src: url('http://static.tumblr.com/pbot8z9/WNamqpyow/clementine_20sketch_1_.ttf');}
  689. @font-face {font-family:"roboto"; src: url('http://static.tumblr.com/pbot8z9/8z9mqq0w0/roboto-thin_1_.ttf');}
  690. @font-face{font-family: aw; src: url(http://static.tumblr.com/5fd89aw/H0ilkmgoh/arsenale_white.ttf);}
  691. @font-face { font-family: "lubalin"; src: url('http://static.tumblr.com/gyoju49/nm1mo9g6c/meem19.ttf'); }
  692. @font-face { font-family: "good time"; src: url('http://static.tumblr.com/u37ad6e/bR1mb6f8o/kgalwaysagoodtime.ttf'); }
  693.  
  694. /*CUSTOMIZE TITLE OF ENTRIES HERE*/
  695. .title{
  696. line-height: 22px;
  697. margin-top:-5px;
  698. font-size:22px;
  699. font-family:lubalin;
  700. color:{color:Title};
  701. font-weight: normal;
  702. }
  703.  
  704.  
  705. /*CUSTOMIZE PERMALINKS OF TEXT POSTS AND SUCH HERE*/
  706. .permalink{
  707. text-transform: normal;
  708. display: block;
  709. text-align: right;
  710. text-transform:uppercase;
  711. font-size:7px;
  712. font-style:italic;
  713. text-decoration: none;
  714. margin-right:-50px;
  715. opacity:0;
  716. -webkit-transition: opacity .7s linear;
  717. -webkit-transition: all .7s ease-in-out;
  718. -moz-transition: all .7s ease-in-out;
  719. -o-transition: all .7s ease-in-out;
  720. }
  721.  
  722. .entry:hover .permalink{
  723. opacity:1;
  724. margin-right:0px;
  725. {block:permalinkpage}
  726. opacity:0;
  727. margin-right:-100px;
  728. {/block:permalinkpage}
  729. }
  730.  
  731.  
  732. /*I RECCOMMEND TO NOT TOUCH ANY OF THIS LOLz*/
  733. #infscr-loading{
  734. bottom: -70px;
  735. position: absolute;
  736. left: 50%;
  737. margin-left:-8px;
  738. width:16px;
  739. height:11px;
  740. overflow:hidden;
  741. margin-bottom: 50px;
  742. }
  743.  
  744. #postnotes{
  745. text-align: justify;}
  746.  
  747. #postnotes blockquote{
  748. border: 0px;}
  749.  
  750. blockquote{
  751. padding:0px 0px 2px 5px;
  752. margin:0px 0px 2px 10px;
  753. border-left: 1px dotted #555555;
  754. }
  755.  
  756. blockquote p, ul{
  757. margin:0px;
  758. padding:0px;
  759. }
  760.  
  761. a img{border: 0px;}
  762.  
  763. ::-webkit-scrollbar-thumb{
  764. background-color: {color:scrollbar};
  765. border: 2px solid #ffffff;
  766. height:5px;
  767. -moz-border-radius: 20px;
  768. border-radius: 20px;
  769. }
  770.  
  771. ::-webkit-scrollbar {
  772. height:5px;
  773. width:9px;
  774. background-color: #aaaaaa;
  775. border: 4px solid #fff;
  776. }
  777.  
  778.  
  779.  
  780. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  781.  
  782. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  783. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:text};}
  784.  
  785. .notes img{width:10px; position:relative; top:3px;}
  786. <--ses-->
  787. small{font-size: 90%;}
  788.  
  789. {CustomCSS}
  790.  
  791. </style>
  792.  
  793. {block:IndexPage}
  794. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  795. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  796. <script type='text/javascript' src='http://static.tumblr.com/pbot8z9/Sxjmqrhxq/infinitescroll.js'></script>
  797.  
  798. <script type="text/javascript">
  799. $(window).load(function(){
  800. var $wall = $('#posts');
  801. $wall.imagesLoaded(function(){
  802. $wall.masonry({
  803. itemSelector: '.entry, .entry_photo',
  804. isAnimated : false
  805. });
  806. });
  807.  
  808. $wall.infinitescroll({
  809. navSelector : '#pagination',
  810. nextSelector : '#pagination a',
  811. itemSelector : '.entry, .entry_photo',
  812. bufferPx : 2000,
  813. debug : false,
  814. errorCallback: function() {
  815. $('#infscr-loading').fadeOut('normal');
  816. }},
  817. function( newElements ) {
  818. var $newElems = $( newElements );
  819. $newElems.hide();
  820. $newElems.imagesLoaded(function(){
  821. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  822. });
  823. }); $('#posts').show(500);
  824. });
  825. </script>
  826.  
  827.  
  828. {/block:IndexPage}
  829.  
  830.  
  831. <title>{title}</title>
  832.  
  833. <link rel="shortcut icon" href="{Favicon}" />
  834. <meta name="viewport" content="width=820" />
  835. </head>
  836.  
  837. <body>
  838. <BODY onselectstart="return false;" ondragstart="return false;">
  839. <div class="wrapper">
  840. <div class="header">
  841. </div>
  842.  
  843. <div id="cage">
  844. <div id="center">
  845.  
  846. <!--STUFF THAT GOES INTO THE SIDEBAR-->
  847. <div id="sidebar">
  848. <div id="blogtitle">{title}</div>
  849. <div id="thing"></div>
  850. <center>
  851. <div id="link1"><a href="{text:link one}" title="{text:link one hover}">01</a></div>
  852. <div id="link2"><a href="{text:link two}" title="{text:link two hover}">02</a></div>
  853. <div id="link3"><a href="{text:link three}" title="{text:link three hover}">03</a></div>
  854. <div id="link4"><a href="{text:link four}" title="{text:link four hover}">04</a></div>
  855. <div id="link5"><a href="{text:link five}" title="{text:link five hover}">05</a></div>
  856. <div id="link6"><a href="{text:link six}" title="{text:link six hover}">06</a></div>
  857. <div id="sidepic"><a href="/"><img src="{image:sidebar}" width=100%></a></div>
  858. <div id="desc">{description}</div>
  859. </center>
  860. </div>
  861. <!------------------------------------->
  862.  
  863.  
  864. <div class="left">
  865. <div id="lacee"></div>
  866. <div id="linee"></div>
  867. <div id="posts">
  868. {block:Posts}
  869. <div class="entry">
  870.  
  871. {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<div style="padding:1px;"></div><span class="body">{Body}</span><p align=right><span class="permalink"><a
  872.  
  873. href="{Permalink}"><a href="{Permalink}"><a href="{Permalink}">{timeago} &middot {notecountwithlabel}</a></a><br>{/block:HasTags}</span></align>
  874. {/block:Text}
  875.  
  876. {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description} <p align=right><span
  877.  
  878. class="permalink"><a href="{Permalink}">{timeago} &middot {notecountwithlabel}</a> <a href="{Permalink}"></span></align>{block:Link}
  879.  
  880. {block:Photo}
  881. {block:IndexPage}
  882. <center>
  883. <div class="perma">
  884. <a href="{ReblogURL}" target="_blank"> reblog </a> with <a href="{Permalink}" title="posted {timeago}">{notecountwithlabel}</a></div>
  885.  
  886. <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  887. {/block:IndexPage}
  888. {block:PermalinkPage}
  889. {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  890.  
  891. {LinkCloseTag}
  892. {/block:PermalinkPage}
  893. {/block:Photo}
  894.  
  895. {block:Photoset}
  896. {block:IndexPage}
  897. <center>
  898.  
  899. <div class="perma">
  900. <a href="{ReblogURL}" target="_blank"> reblog </a> with <a href="{Permalink}" title="posted {timeago}">{notecountwithlabel}</a></div>
  901.  
  902. {Photoset-250}</center>
  903. {/block:IndexPage}
  904. {block:PermalinkPage}
  905. <center>
  906. {Photoset-500}</center>
  907. {/block:PermalinkPage}
  908. {/block:Photoset}
  909.  
  910. {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br><p align=right><span class="permalink"><a
  911.  
  912. href="{Permalink}">{timeago} &middot {notecountwithlabel}</a> <a href="{Permalink}"> </span>{/block:Quote}
  913.  
  914. {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}
  915. <ul class="chat">
  916. {block:Lines}
  917. <li class="user_{UserNumber}">
  918. {block:Label}
  919. <span class="label">{Label}</span>
  920. {/block:Label}
  921.  
  922. {Line}
  923. </li>
  924. {/block:Lines}
  925. <p align=right><div class="permalink"><span class="permalink"><a href="{Permalink}">{timeago} &middot {notecountwithlabel}</a> <a href="{Permalink}"></div>
  926. {/block:Chat}
  927.  
  928. {block:Audio}
  929. <div style="width:200px; height:30px;">
  930. {AudioPlayerWhite}
  931. </div>
  932. {block:IndexPage}<div class="permalink"><span class="permalink">
  933. <p align=right><span class="permalink"><a href="{Permalink}">{timeago} &middot {notecountwithlabel}</a> <a href="{Permalink}"> </a>
  934. </span></div>{/block:IndexPage}
  935. {/block:Audio}
  936.  
  937. {block:Video}
  938. {block:IndexPage}
  939. <center>
  940. <div class="perma">
  941. <a href="{ReblogURL}" target="_blank"> reblog </a> with <a href="{Permalink}" title="posted {timeago}">{notecountwithlabel}</a></div>
  942. {Video-250}</center>
  943. {/block:IndexPage}
  944. {block:PermalinkPage}
  945. <center>
  946. {Video-400}</center>
  947. {/block:PermalinkPage}
  948. {block:Video}
  949.  
  950. {block:Answer}
  951. <div style="margin: 2px 3px 2px 3px; min-height:30px;border: 1px solid #dbdbdb; padding: 4px; background-color: #eee;">
  952. <img src="{AskerPortraitURL-30}" width="30" align="left" style="margin-right:3px;"/>
  953. <askk>{Asker}</askk>: {Question}</div>
  954. <div style="padding: -1px 5px -1px 5px;background: transparent;"><center>{Answer}</center><askk><p align="right"><big>-{text:name}</big></p></askk></div>
  955. <span class="permalink"><a href="{Permalink}">{NoteCountWithLabel}&nbsp</a></span>
  956. {/block:Answer}
  957.  
  958.  
  959. {block:PostNotes}<div align="middle">{caption}</div>
  960. <center>
  961.  
  962. {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
  963.  
  964. {block:HasTags}
  965. tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
  966. {block:RebloggedFrom}
  967. reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  968. posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
  969.  
  970. {/block:RebloggedFrom}
  971. </center></span>
  972. <br>
  973. <div id="postnotes">{PostNotes}</div><br>
  974.  
  975. <center>{block:ContentSource}
  976. <br><a href="{SourceURL}">
  977. {lang:Source}:
  978. {block:SourceLogo}
  979. <img src="{BlackLogoURL}" width="{LogoWidth}"
  980. height="{LogoHeight}" alt="{SourceTitle}" />
  981. {/block:SourceLogo}
  982. {block:NoSourceLogo}
  983. {SourceLink}
  984. {/block:NoSourceLogo}
  985. </a>
  986. {/block:ContentSource}</center>
  987.  
  988. {/block:PostNotes}
  989. </div>
  990. {/block:Posts}
  991. </div></div>
  992.  
  993. {block:IndexPage}
  994. {block:Pagination}
  995. <div id="pagination">
  996. {block:NextPage}
  997. <a id="nextPage" href="{NextPage}"></a>
  998. {/block:NextPage}
  999. {block:PreviousPage}
  1000. <a href="{PreviousPage}"></a>
  1001. {/block:PreviousPage}
  1002. </div>
  1003. {/block:Pagination}
  1004. {/block:IndexPage}
  1005. </body>
  1006. </html>
  1007. <div id="cred"><a href="http://awkward-pengu1n.tumblr.com"><i>theme by awkward-pengu1n</i> ☯</a></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement