Advertisement
Guest User

THEME (EDIT)

a guest
Jul 22nd, 2014
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 53.12 KB | None | 0 0
  1. <!doctype html>
  2.  
  3. <!--
  4. Theme #05 by Josh 2013 | themes-by-josh
  5. Please don't remove this credit
  6. -->
  7.  
  8. <html lang="en">
  9. <head>
  10. <script language=JavaScript>
  11. <!--
  12.  
  13. //Disable right mouse click Script
  14. //By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
  15. //For full source code, visit http://www.dynamicdrive.com
  16.  
  17. var message="oops sorry :p";
  18.  
  19. ///////////////////////////////////
  20. function clickIE4(){
  21. if (event.button==2){
  22. alert(message);
  23. return false;
  24. }
  25. }
  26.  
  27. function clickNS4(e){
  28. if (document.layers||document.getElementById&&!document.all){
  29. if (e.which==2||e.which==3){
  30. alert(message);
  31. return false;
  32. }
  33. }
  34. }
  35.  
  36. if (document.layers){
  37. document.captureEvents(Event.MOUSEDOWN);
  38. document.onmousedown=clickNS4;
  39. }
  40. else if (document.all&&!document.getElementById){
  41. document.onmousedown=clickIE4;
  42. }
  43.  
  44. document.oncontextmenu=new Function("alert(message);return false")
  45.  
  46. // -->
  47. </script>
  48.  
  49.  
  50. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  51. <script type="text/javascript">//** jQuery Scroll to Top Control script- (c) I made this script myself (Kyle Monk) and it is hosted on my personal site so would appreciate if you followed my blog at kylemonk.tumblr.com if you use it or for details on how to change the location.
  52. //** Graphic originally from tumbler dashboard, for details on how to change graphic colour, contact me at kylemonk.tumblr.com
  53. //** v1.1 (April 7th, 10'):
  54. //** 1) Adds ability to scroll to an absolute position (from top of page) or specific element on the page instead.
  55. //** 2) Fixes scroll animation not working in Opera.
  56.  
  57.  
  58. var scrolltotop={
  59.     //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
  60.     //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).
  61.     setting: {startline:30, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
  62.     controlHTML: '<img src="http://media.tumblr.com/8073fb727b74c749a2dfb7049972efc6/tumblr_inline_mj3yo2Mkgf1qz4rgp.png" style="filter:alpha(opacity=70); -moz-opacity:0.7;" width="45"/>', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"
  63.     controlattrs: {offsetx:35, offsety:60}, //offset of control relative to right/ bottom of window corner
  64.     anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
  65.  
  66.     state: {isvisible:false, shouldvisible:false},
  67.  
  68.     scrollup:function(){
  69.         if (!this.cssfixedsupport) //if control is positioned using JavaScript
  70.             this.$control.css({opacity:0}) //hide control immediately after clicking it
  71.         var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
  72.         if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
  73.             dest=jQuery('#'+dest).offset().top
  74.         else
  75.             dest=0
  76.         this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
  77.     },
  78.  
  79.     keepfixed:function(){
  80.         var $window=jQuery(window)
  81.         var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
  82.         var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
  83.         this.$control.css({left:controlx+'px', top:controly+'px'})
  84.     },
  85.  
  86.     togglecontrol:function(){
  87.         var scrolltop=jQuery(window).scrollTop()
  88.         if (!this.cssfixedsupport)
  89.             this.keepfixed()
  90.         this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
  91.         if (this.state.shouldvisible && !this.state.isvisible){
  92.             this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
  93.             this.state.isvisible=true
  94.         }
  95.         else if (this.state.shouldvisible==false && this.state.isvisible){
  96.             this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
  97.             this.state.isvisible=false
  98.         }
  99.     },
  100.    
  101.     init:function(){
  102.         jQuery(document).ready(function($){
  103.             var mainobj=scrolltotop
  104.             var iebrws=document.all
  105.             mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
  106.             mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
  107.             mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
  108.                 .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
  109.                 .attr({title:'back to top'})
  110.                 .click(function(){mainobj.scrollup(); return false})
  111.                 .appendTo('body')
  112.             if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
  113.                 mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
  114.             mainobj.togglecontrol()
  115.             $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
  116.                 mainobj.scrollup()
  117.                 return false
  118.             })
  119.             $(window).bind('scroll resize', function(e){
  120.                 mainobj.togglecontrol()
  121.             })
  122.         })
  123.     }
  124. }
  125.  
  126. scrolltotop.init()</script>
  127.  
  128.  
  129.  
  130.  
  131. <script language=”javascript” type=”text/javascript”>
  132. <!–
  133. var message=””;
  134.  
  135. function clickIE()
  136. {if (document.all)
  137. {(message);return false;}}
  138.  
  139. function clickNS(e) {
  140. if
  141. (document.layers||(document.getElementById&&!document.all))
  142. {
  143. if (e.which==2||e.which==3) {(message);return false;}}}
  144.  
  145. if (document.layers)
  146. {document.captureEvents(Event.MOUSEDOWN);document. onmousedown=clickNS;}
  147. else
  148. {document.onmouseup=clickNS;document.oncontextmenu =clickIE;}
  149.  
  150. document.oncontextmenu=new Function(“return false”)
  151. –>
  152. </script>
  153.  
  154.  
  155. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  156.  
  157. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  158.  
  159. <script>
  160.  
  161. (function($){
  162.  
  163. $(document).ready(function(){
  164.  
  165. $("a[title]").style_my_tooltips({
  166.  
  167. tip_follows_cursor:true,
  168.  
  169. tip_delay_time:90,
  170.  
  171. tip_fade_speed:600,
  172.  
  173. attribute:"title"
  174.  
  175. });
  176.  
  177. });
  178.  
  179. })(jQuery);
  180.  
  181. </script>
  182. <!--basic tooltip from tutorial-baby! Enjoy-->
  183.  
  184. <style>
  185. .tooltip{
  186.     display: inline;
  187.     position: relative;
  188. }
  189. #s-m-t-tooltip {
  190. max-width:300px; /*how big the tooltip can be at most*/
  191. border-radius: 2px; /*change your border radius*/
  192. padding:3px; /*padding inside tooltip*/
  193. margin:15px; /*distance from word*/
  194. background-color:white; /*background color*/
  195.   border:1px solid #ddd; /*border info*/
  196.   font-family:consolas; /*tooltip font*/
  197. font-size:9px; /*tooltip font size*/
  198. letter-spacing:2px; /*tooltip letter spacing*/
  199. text-transform:uppercase; /*makes the tooltip title uppercase*/
  200. color:#bd66ff; /*tooltip font color*/
  201. z-index:9999999999999999999999999999999999999;
  202. }
  203. </style>
  204.  
  205.  
  206.  
  207. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  208.  
  209. <meta charset="utf-8" />
  210.  
  211. <meta name="color:Background" content="#ddd"/>
  212. <meta name="color:PostsBackground" content="#fff"/>
  213. <meta name="color:PostsText" content="#000"/>
  214. <meta name="color:PostsLinks" content="#000"/>
  215. <meta name="color:PostsHover" content="#bd66ff"/>
  216. <meta name="color:PostsOutline" content="#fff"/>
  217. <meta name="color:PermalinksHover" content="#bd66ff"/>
  218. <meta name="color:SidebarBackground" content="#000"/>
  219. <meta name="color:SidebarText" content="#fff"/>
  220. <meta name="color:SidebarLinks" content="#fff"/>
  221. <meta name="color:SidebarHover" content="#fff"/>
  222. <meta name="color:SidebarOutline" content="#000"/>
  223. <meta name="color:Scrollbar" content="#fff"/>
  224. <meta name="color:Selection" content="#3A4B5F"/>
  225.  
  226. <meta name="image:Background" content="" />
  227. <meta name="image:Portrait" content="" />
  228. <meta name="image:SidebarBackground" content="" />
  229.  
  230. <meta name="color:Blogtitle" content="#130C11"/>
  231.  
  232. <meta name="text:AskLink" content="ask" />
  233. <meta name="text:HomeLink" content="home" />
  234. <meta name="text:LinkSeparator" content="//" />
  235. <meta name="text:OnlineUsersScript" content="" />
  236. <meta name="text:SidebarDepth" content="80" />
  237. <meta name="text:PermalinkOpacity" content="0.4" />
  238. <meta name="text:SidebarOpacity" content="0.64" />
  239. <meta name="text:ShadowOpacity" content="0.2" />
  240. <meta name="text:ShadowSpread" content="10" />
  241.  
  242. <meta name="if:1Column" content="0"/>
  243. <meta name="if:2Columns" content="1"/>
  244. <meta name="if:3Columns" content="0"/>
  245.  
  246. <meta name="if:PostWidth250px" content="1"/>
  247. <meta name="if:PostWidth320px" content="0"/>
  248. <meta name="if:PostWidth400px" content="0"/>
  249. <meta name="if:PostWidth500px" content="0"/>
  250.  
  251. <meta name="if:SwitchSidebar" content="0"/>
  252. <meta name="if:FullHeightSidebar" content="1"/>
  253. <meta name="if:NoSidebarOutline" content="0"/>
  254.  
  255. <meta name="if:BasicPermalinks" content="0"/>
  256. <meta name="if:BasicPermalinkBorder" content="0"/>
  257. <meta name="if:ColourfulPermalinks" content="0"/>
  258. <meta name="if:PermalinkSwitch" content="0"/>
  259. <meta name="if:PermalinkMovement" content="0"/>
  260.  
  261. <meta name="if:LinkToAsk" content="1"/>
  262. <meta name="if:LinksAfterDescription" content="0"/>
  263. <meta name="if:ShowCaptions" content="0"/>
  264. <meta name="if:ShowVia" content="1"/>
  265.  
  266. <meta name="if:BoxShadow" content="0"/>
  267. <meta name="if:FixedControls" content="1"/>
  268. <meta name="if:InfiniteScroll" content="1"/>
  269. <meta name="if:UnderlineLinks" content="1"/>
  270. <meta name="if:WebkitScrollbar" content="1"/>
  271.  
  272. <meta name="if:Online" content="1" />
  273. <meta name="if:Offline" content="0" />
  274. <meta name="if:Postlimit" content="1" />
  275. <meta name="if:Queue" content="0" />
  276. <meta name="if:Top Button" content="1"/>
  277.    
  278.  
  279. <meta name="text:home link title" content="home" />
  280. <meta name="text:ask link title" content="message" />
  281. <meta name="text:Custom Link One" content="" />
  282. <meta name="text:Custom Link One Title" content="" />
  283. <meta name="text:Custom Link Two" content="" />
  284. <meta name="text:Custom Link Two Title" content="" />
  285. <meta name="text:Custom Link Three" content="" />
  286. <meta name="text:Custom Link Three Title" content="" />
  287. <meta name="text:Custom Link Four" content="" />
  288. <meta name="text:Custom Link Four Title" content="" />
  289. <meta name="text:Custom Link Five" content="" />
  290. <meta name="text:Custom Link Five Title" content="" />
  291.  
  292. <link href='http://fonts.googleapis.com/css?family=Allura' rel='stylesheet' type='text/css'>
  293. <link href='http://fonts.googleapis.com/css?family=Nothing+You+Could+Do' rel='stylesheet' type='text/css'>
  294.  
  295.  
  296.  
  297. <title>{Title}</title>
  298. <link rel="shortcut icon" href="http://i12.photobucket.com/albums/a213/superkate_2468/favicon-2ico.gif">
  299. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  300. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  301.  
  302. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  303. <style type="text/css">
  304.  
  305.  
  306. div.navigate a{
  307. background: #fff; color: #000; letter-spacing: 0px; display:block; padding:0px 0; padding-bottom:1px; border: 0px solid #000000; width: 250px; margin-top:1px; position:relative; z-index:1;
  308. }
  309.  
  310. div.navigate a:hover{
  311. background: #ffffff; color: #bd66ff; letter-spacing: 3px; font-weight: bold;
  312. }
  313.  
  314. /*** start of the bubble tab ***/
  315. #tabs{
  316. border-bottom-right-radius: 15px;
  317. color: #000;
  318. background: #fff;
  319. position:fixed;
  320. left:0px;
  321. text-align: center;
  322. top:0px;
  323. padding: 7px;
  324. bottom: 0px;
  325. height:12px;
  326. width: 180px;
  327. overflow:hidden;
  328. -webkit-transition: opacity 1.0s linear;
  329. -webkit-transition: all 1.0s ease-in-out;
  330. -moz-transition: all 1.0s ease-in-out;
  331. -o-transition: all 1.0s ease-in-out;
  332. z-index:99999999;
  333. }
  334.  
  335. #tabs:hover{
  336. text-align: center;
  337. border-bottom-left-radius: 15px;
  338. border-bottom-right-radius: 15px;
  339. -webkit-transition: opacity 1.0s linear;
  340. -webkit-transition: all 1.0s ease-in-out;
  341. -moz-transition: all 1.0s ease-in-out;
  342. -o-transition: all 1.0s ease-in-out;
  343. padding:5px;
  344. height:100%;
  345. width:250px;
  346. z-index:999999999;
  347. opacity: 1;
  348. background:#fff;
  349. }
  350.  
  351. .ttitle {
  352. background: #E3E4FA;
  353. padding: 5px;
  354. font-size: 12px;
  355. }
  356.  
  357.  
  358. /*-----box coding start-----*/
  359. #boxiebox {
  360.     opacity:0.8;
  361.     font-size:14px; /*font size for all tabs*/
  362.     background-color:#fff; /*background colour of box*/
  363.     color:#808080; /*text colour for all tabs*/
  364.     position:fixed;
  365.     border:1px solid #fff; /*border width and colour*/
  366.     right:30px; /*distance from the right*/
  367.     padding:3px; /*padding around the box*/
  368.     height:auto;
  369. font-family: consolas; /*font family*/
  370.     width:120px; /*width*/
  371.     top:105px; /*distance from the top*/
  372.     z-index:4;}
  373. /*-----box coding end-----*/
  374.  
  375. /*-----tab 1 coding start-----*/
  376. #moodie{
  377. height:13px;
  378. color:#808080;
  379. text-align:center;
  380. overflow:hidden;
  381. border-bottom:1px solid #efefef;
  382. border-radius:3px;
  383. text-transform:uppercase;
  384. background-color:#fff;
  385. letter-spacing:1px;
  386. font-size:8px;
  387. line-height:13px;
  388. z-index:999999999999999999999;
  389. -webkit-transition: all 0.4s ease-in-out;
  390. -moz-transition: all 0.4s ease-in-out;
  391. -o-transition: all 0.4s ease-in-out;
  392. }
  393.    
  394. #moodie:hover{
  395. height:50px; /*height of tab after hovering*/ }
  396.  
  397. #music{
  398. height:13px;
  399. color:#808080;
  400. text-align:center;
  401. overflow:hidden;
  402. border-bottom:1px solid #efefef;
  403. border-radius:3px;
  404. text-transform:uppercase;
  405. background-color:#fff;
  406. letter-spacing:1px;
  407. font-size:8px;
  408. line-height:13px;
  409. z-index:999999999999999999999;
  410. -webkit-transition: all 0.4s ease-in-out;
  411. -moz-transition: all 0.4s ease-in-out;
  412. -o-transition: all 0.4s ease-in-out;
  413. }
  414.  
  415.  
  416. #music:hover{
  417. height:83px; /*height of tab after hovering*/ }
  418.  
  419. #socialie{
  420. height:13px;
  421. color:#808080;
  422. text-align:center;
  423. overflow:hidden;
  424. border-top:1px solid #efefef;
  425. border-radius:3px;
  426. text-transform:uppercase;
  427. background-color:#fff;
  428. letter-spacing:1px;
  429. font-size:8px;
  430. line-height:13px;
  431. z-index:999999999999999999999;
  432. -webkit-transition: all 0.4s ease-in-out;
  433. -moz-transition: all 0.4s ease-in-out;
  434. -o-transition: all 0.4s ease-in-out;
  435. }
  436.  
  437.    
  438. #socialie:hover{
  439. height:55px; /*height of tab after hovering*/ }
  440.  
  441.  
  442. #netty{
  443. height:12px;
  444. color:#808080;
  445. text-align:left;
  446. overflow:hidden;
  447. border-bottom:1px solid #efefef;
  448. border-radius:3px;
  449. text-transform:uppercase;
  450. background-color:#fff;
  451. letter-spacing:1px;
  452. font-size:8px;
  453. line-height:13px;
  454. z-index:999999999999999999999;
  455. -webkit-transition: all 0.4s ease-in-out;
  456. -moz-transition: all 0.4s ease-in-out;
  457. -o-transition: all 0.4s ease-in-out;
  458. }
  459.  
  460. #netty:hover{
  461. height:110px; /*height of tab after hovering*/ }
  462.  
  463. #statie{
  464. height:12px;
  465. color:#808080;
  466. text-align:center;
  467. overflow:hidden;
  468. border-radius:3px;
  469. text-transform:uppercase;
  470. background-color:#fff;
  471. letter-spacing:1px;
  472. font-size:8px;
  473. line-height:13px;
  474. z-index:999999999999999999999;
  475. -webkit-transition: all 0.4s ease-in-out;
  476. -moz-transition: all 0.4s ease-in-out;
  477. -o-transition: all 0.4s ease-in-out;
  478. }
  479.  
  480.    
  481. #statie:hover{
  482. height:99px; /*height of tab after hovering*/ }
  483.  
  484. #botm{
  485. height:13px;
  486. color:#808080;
  487. text-align:center;
  488. overflow:hidden;
  489. border-top:1px solid #efefef;
  490. border-radius:3px;
  491. text-transform:uppercase;
  492. background-color:#fff;
  493. letter-spacing:1px;
  494. font-size:8px;
  495. line-height:13px;
  496. z-index:999999999999999999999;
  497. -webkit-transition: all 0.4s ease-in-out;
  498. -moz-transition: all 0.4s ease-in-out;
  499. -o-transition: all 0.4s ease-in-out;
  500. }
  501.  
  502.    
  503. #botm:hover{
  504. height:90px; /*height of tab after hovering*/ }
  505.  
  506. /**boxiebox code ends**/
  507.  
  508.  
  509. #judy {
  510. background: #fff;
  511. display: inline-block;
  512. line-height: 15px;
  513. height: 15px;
  514. width: 73px;
  515. font-family: consolas;
  516. font-size: 10px;
  517. text-transform: uppercase;
  518. border-radius:5px;
  519. text-align: center;
  520. margin-top:0px;
  521. border: 1px solid #DDD;
  522. letter-spacing:2px;
  523. padding-top:1px;
  524. -webkit-transition-duration: .75s;
  525. -moz-box-shadow: 0 0 1.5px #888;
  526. -webkit-box-shadow: 0 0 1.5px #888;
  527. box-shadow: 0 0 1.5px #888;
  528. }
  529.  
  530. #judy:hover {
  531.     background:#fafafa;
  532.     border:1px solid:#c7c5c5;}
  533.    
  534.  
  535. #drop {
  536. background: #fff;
  537. display: inline-block;
  538. line-height: 15px;
  539. height: 15px;
  540. border-radius:5px;
  541. width: 73px;
  542. text-align: center;
  543. margin-left: 3px;
  544. font-family: consolas;
  545. font-size: 10px;
  546. text-transform: uppercase;
  547. transition: all 0.3s ease;
  548. -o-transition-transition: all 0.3s ease;
  549. -webkit-transition: all 0.3s ease;
  550. -moz-transition: all 0.3s ease;
  551. margin-bottom:0px;
  552. letter-spacing:2px;
  553. padding-top:1px;
  554. border: 1px solid #DDD;
  555. -webkit-transition-duration: .75s;
  556. -moz-box-shadow: 0 0 1.5px #888;
  557. -webkit-box-shadow: 0 0 1.5px #888;
  558. box-shadow: 0 0 1.5px #888;
  559. }
  560.  
  561. #drop:hover {
  562.     background:#fafafa;
  563.     border:1px solid:#c7c5c5;}
  564.  
  565. #drop:hover #down{
  566. opacity:1;
  567. margin-top:2px;
  568. overflow:hidden;
  569. height: 25px;
  570. line-height: 20px;
  571. background-color:transparent;
  572. z-index:1000;
  573. height:auto;
  574. font-family: consolas;
  575. font-size: 10px;
  576. text-transform: uppercase;
  577. -o-transition-transition: all 0.3s ease;
  578. -webkit-transition: all 0.3s ease;
  579. -moz-transition: all 0.3s ease;
  580. margin-bottom:1px;
  581. letter-spacing:2px;
  582. }
  583.  
  584.  
  585. #down {
  586. position:absolute;
  587. margin-top:-20px;
  588. opacity:0;
  589. width: 73px;
  590. font-family: consolas;
  591. font-size: 10px;
  592. text-transform: uppercase;
  593. overflow:hidden;
  594. transition: all 0.3s ease;
  595. -o-transition-transition: all 0.3s ease;
  596. -webkit-transition: all 0.3s ease;
  597. -moz-transition: all 0.3s ease;
  598. letter-spacing:2px;
  599. }
  600.  
  601. #down a{
  602. margin-top:4px;
  603. border-radius:5px;
  604. background: #fff;
  605. text-align:center;
  606. display:block;
  607. line-height:15px;
  608. font-family: consolas;
  609. font-size: 10px;
  610. text-transform: uppercase;
  611. transition: all 0.3s ease;
  612. -o-transition-transition: all 0.3s ease;
  613. -webkit-transition: all 0.3s ease;
  614. -moz-transition: all 0.3s ease;
  615. letter-spacing:1px;
  616. border: 1px solid #DDD;
  617. }
  618.  
  619.  
  620.  
  621.  
  622. .loyal{font-family:Nothing You Could Do; font-size:14px; bold;letter-spacing:1px; color:#000; padding-bottom:5px;}
  623.  
  624.  
  625.  
  626.  
  627. /** Scrollbar, Tumblr Controls, Credit **/
  628.  
  629. {block:IfWebkitScrollbar}
  630. ::-webkit-scrollbar-thumb {-webkit-border-radius: 2px;border-radius: 2px;background:{color:Scrollbar};box-shadow: 0 0 3px 0 rgba(0,0,0,0.1) inset;}
  631. ::-webkit-scrollbar-track-piece {background:none;box-shadow: 0 0 6px 0 rgba(0,0,0,0.4) inset;}  
  632. ::-webkit-scrollbar {background:{color:Background};width:5px;height:5px;}
  633. {/block:IfWebkitScrollbar}
  634. {block:IfFixedControls}
  635. iframe#tumblr_controls {top:2px !important;right:2px !important;position: fixed !important;opacity: 0.5;-webkit-transition: all 0.2s linear;-moz-transition: all 0.2s linear;transition: all 0.2s linear;}
  636. iframe#tumblr_controls:hover {opacity: 1;-webkit-transition: all 0.1s linear;-moz-transition: all 0.1s linear;transition: all 0.1s linear;}
  637. {/block:IfFixedControls}
  638.  
  639.  
  640. /** Basic Styles **/
  641.  
  642. body {
  643.   cursor: url(http://img69.imageshack.us/img69/7673/cursorw.png), auto;
  644.     font-size: 11px;
  645.     font-family: consolas,
  646.     line-height:13px;
  647.     color:{color:PostsText};
  648.     background:{color:Background} url('{image:Background}') repeat fixed center top;
  649.     margin:0px;
  650. }
  651. a {
  652.     color:{color:PostsLinks};
  653.     text-decoration:none;
  654.     -webkit-transition: all 0.1s linear;
  655.     -moz-transition: all 0.1s linear;
  656.     transition: all 0.1s linear;
  657. }
  658. a:hover {    
  659.     cursor: url(http://media.tumblr.com/tumblr_lqs4olZDSF1qfoi4t.png), progress;
  660.     color:#bd66ff;
  661.     {block:IfUnderlineLinks}
  662.     text-decoration:underline;
  663.     {/block:IfUnderlineLinks}
  664.     -webkit-transition: all 0.1s linear;
  665.     -moz-transition: all 0.1s linear;
  666.     transition: all 0.1s linear;
  667. }
  668. a:active {
  669.     outline:none;
  670. }
  671. a:focus {
  672.     -moz-outline-style: none;
  673. }
  674. :-moz-any-link:focus {
  675.     outline: none;
  676. }
  677. h1 {
  678.     margin: 10px 0;
  679.     font-family:consolas;
  680.     font-size:16px;
  681.     line-height:16px;
  682.     font-weight:normal;
  683. }
  684. p {
  685.     margin: 10px 0;
  686. }
  687. ol, ul{
  688.     margin: 10px 0;
  689.     padding-left:25px;
  690. }
  691. blockquote {
  692.     margin: 10px 0;
  693.     padding-left:10px;
  694.     border-left:rgba(0,0,0,0.2) 4px solid;
  695. }
  696. img {
  697.     vertical-align: bottom;
  698. }
  699. hr {
  700.     color:rgba(0,0,0,0.2);
  701.     background-color:rgba(0,0,0,0.2);
  702.     height:1px;
  703.     border:0;
  704. }
  705. .transition{
  706.     -webkit-transition: all 0.2s linear;
  707.     moz-transition: all 0.2s linear;
  708.     transition: all 0.2s linear;
  709. }
  710. ::selection{
  711.     color:#fff;
  712.     background:{color:Selection};
  713. }
  714.  
  715. /** Centre-ing **/
  716.  
  717. #bigbox{
  718.     position:absolute;
  719.     {block:IfNotSwitchSidebar}
  720.     left:46%;
  721.     margin-left:
  722. {block:If1Column}
  723. {block:IfPostWidth500px}-400px{/block:IfPostWidth500px}
  724. {block:IfPostWidth400px}-350px{/block:IfPostWidth400px}
  725. {block:IfPostWidth320px}-310px{/block:IfPostWidth320px}
  726. {block:IfPostWidth250px}-275px{/block:IfPostWidth250px}
  727. {/block:If1Column}
  728. {block:If2Columns}
  729. {block:IfPostWidth500px}-665px{/block:IfPostWidth500px}
  730. {block:IfPostWidth400px}-565px{/block:IfPostWidth400px}
  731. {block:IfPostWidth320px}-485px{/block:IfPostWidth320px}
  732. {block:IfPostWidth250px}-415px{/block:IfPostWidth250px}
  733. {/block:If2Columns}
  734. {block:If3Columns}
  735. {block:IfPostWidth500px}-930px{/block:IfPostWidth500px}
  736. {block:IfPostWidth400px}-780px{/block:IfPostWidth400px}
  737. {block:IfPostWidth320px}-660px{/block:IfPostWidth320px}
  738. {block:IfPostWidth250px}-555px{/block:IfPostWidth250px}
  739. {/block:If3Columns};
  740.     {/block:IfNotSwitchSidebar}
  741.     {block:IfSwitchSidebar}
  742.     right:50%;
  743.     margin-right:  
  744. {block:If1Column}
  745. {block:IfPostWidth500px}-130px{/block:IfPostWidth500px}
  746. {block:IfPostWidth400px}-80px{/block:IfPostWidth400px}
  747. {block:IfPostWidth320px}-40px{/block:IfPostWidth320px}
  748. {block:IfPostWidth250px}-5px{/block:IfPostWidth250px}
  749. {/block:If1Column}
  750. {block:If2Columns}
  751. {block:IfPostWidth500px}-395px{/block:IfPostWidth500px}
  752. {block:IfPostWidth400px}-295px{/block:IfPostWidth400px}
  753. {block:IfPostWidth320px}-215px{/block:IfPostWidth320px}
  754. {block:IfPostWidth250px}-145px{/block:IfPostWidth250px}
  755. {/block:If2Columns}
  756. {block:If3Columns}
  757. {block:IfPostWidth500px}-660px{/block:IfPostWidth500px}
  758. {block:IfPostWidth400px}-510px{/block:IfPostWidth400px}
  759. {block:IfPostWidth320px}-390px{/block:IfPostWidth320px}
  760. {block:IfPostWidth250px}-285px{/block:IfPostWidth250px}
  761. {/block:If3Columns};
  762.     {/block:IfSwitchSidebar}
  763. }
  764.  
  765. /** Sidebar **/
  766.  
  767. .sidebar{
  768.     position:fixed;
  769.     height: auto;
  770.     margin-left: -10px;
  771.     width: 250px;
  772.     top:50px;
  773.     text-align: right;
  774.     padding-top: 3px;
  775.     padding-left: 3px;
  776.     padding-right: 3px;
  777.     margin-top: 0px;
  778.     background-color: {color:sidebar};
  779.     font-family:consolas;
  780.     font-size: 9px;
  781.     line-height:105%;
  782.     letter-spacing: 0px;
  783.     z-index: 1;
  784.     color: {color:text};
  785.     border-top: 10px solid white;
  786.     border-left: 10px solid white;
  787.     border-right: 10px solid white;
  788.     border-bottom: 15px solid white;
  789.     -moz-box-shadow: 0 0 8px rgba(0,0,0,.4);
  790.     -webkit-box-shadow: 0 0 8px rgba(0,0,0,.4);
  791.     box-shadow: 0 0 8px rgba(0,0,0,.4);
  792. }
  793.  
  794.  
  795. .sidebar .description {
  796.     font-size:11px;
  797.     height: 0px;
  798.     overflow: hidden;
  799.     -webkit-transition: all 0.3s linear;
  800.     -webkit-transition: all 0.3s linear;
  801.     -moz-transition: all 0.3s linear;
  802.     transition: all 0.3s linear;
  803.     }
  804.    
  805. .sidebar:hover .description {
  806.     height: 130px;
  807.     -webkit-transition: all 0.3s linear;
  808.     -webkit-transition: all 0.3s linear;
  809.     -moz-transition: all 0.3s linear;
  810.     transition: all 0.3s linear;
  811.     }
  812.    
  813. #blogtitle{
  814.     position: relative;
  815.     text-align: center;
  816.     font-size: 40px;
  817.     width: 250px;
  818.     padding-bottom: 15px;
  819.     padding-top: 10px;
  820.     font-family:Allura;
  821.     color: {color:blogtitle};
  822.     z-index: 2;
  823.     }
  824.    
  825. #blogtitle  a {
  826.     color: {color:blogtitle};
  827.     }
  828.    
  829. /** Posts **/
  830.  
  831. #container{
  832.     width:
  833. {block:If1Column}
  834. {block:IfPostWidth500px}530px{/block:IfPostWidth500px}
  835. {block:IfPostWidth400px}430px{/block:IfPostWidth400px}
  836. {block:IfPostWidth320px}350px{/block:IfPostWidth320px}
  837. {block:IfPostWidth250px}280px{/block:IfPostWidth250px}
  838. {/block:If1Column}
  839. {block:If2Columns}
  840. {block:IfPostWidth500px}1060px{/block:IfPostWidth500px}
  841. {block:IfPostWidth400px}860px{/block:IfPostWidth400px}
  842. {block:IfPostWidth320px}700px{/block:IfPostWidth320px}
  843. {block:IfPostWidth250px}560px{/block:IfPostWidth250px}
  844. {/block:If2Columns}
  845. {block:If3Columns}
  846. {block:IfPostWidth500px}1590px{/block:IfPostWidth500px}
  847. {block:IfPostWidth400px}1290px{/block:IfPostWidth400px}
  848. {block:IfPostWidth320px}1050px{/block:IfPostWidth320px}
  849. {block:IfPostWidth250px}840px{/block:IfPostWidth250px}
  850. {/block:If3Columns};
  851.     {block:IfNot1Column}
  852.     {block:PermalinkPage}
  853.     width:530px;
  854.     {/block:PermalinkPage}
  855.     {/block:IfNot1Column}
  856.     padding:5px;
  857.     margin-left:270px;
  858.     {block:IfSwitchSidebar}
  859.     margin-left:0;
  860.     {/block:IfSwitchSidebar}
  861.     {block:IfNotInfiniteScroll}
  862.     {block:PreviousPage}{/block:PreviousPage}
  863.     {block:TagPage}{/block:TagPage}
  864.     {/block:IfNotInfiniteScroll}
  865. }
  866. #relativity {
  867.     position:relative;
  868.     width:100%;height:100%;
  869. }
  870. .entry {
  871.     overflow:hidden;
  872.     background:{color:PostsBackground};
  873.     margin:5px;
  874.     width:
  875. {block:IfPostWidth500px}500px{/block:IfPostWidth500px}
  876. {block:IfPostWidth400px}400px{/block:IfPostWidth400px}
  877. {block:IfPostWidth320px}320px{/block:IfPostWidth320px}
  878. {block:IfPostWidth250px}250px{/block:IfPostWidth250px};
  879.     {block:IfNot1Column}
  880. {block:PermalinkPage}width:500px;{/block:PermalinkPage}
  881.     {/block:IfNot1Column}
  882.     padding:9px 9px 4px 9px;
  883.     float:left;
  884.     position:relative;
  885.     border:1px solid {color:PostsOutline};
  886.     {block:IfBoxShadow}
  887.     box-shadow: 0 0 {text:ShadowSpread}px rgba(0,0,0,{text:ShadowOpacity});
  888.     -moz-box-shadow: 0 0 {text:ShadowSpread}px rgba(0,0,0,{text:ShadowOpacity});
  889.     -webkit-box-shadow: 0 0 {text:ShadowSpread}px rgba(0,0,0,{text:ShadowOpacity});
  890.     {/block:IfBoxShadow}
  891. }
  892. .textbox {
  893.     margin:-10px 0px -5px;
  894.     {block:IfBasicPermalinkBorder}
  895.     margin:-10px 0px -1px;
  896.     {block:IfBasicPermalinkBorder}
  897. }
  898. .notebox {
  899.     margin:-10px 0px -5px;
  900. }
  901. .textbox img {
  902.     max-width:100%;
  903.     height:auto;
  904. }
  905. .entry .question{
  906.  
  907.     padding: 10px;
  908.     border: 1px solid rgba(0,0,0,0.2);
  909.     border-bottom:0;
  910. }
  911. .entry .nipple{
  912.     background: url('http://media.tumblr.com/tumblr_mbr0ub239n1qk7o6d.png') top left;
  913.     height:6px;
  914.     opacity:0.2;
  915. }
  916. .entry .questioner{
  917.     margin:5px 0 0 14px;
  918.     padding-bottom:10px;
  919. }
  920.  
  921. .entry .questioner div{
  922.     margin:0 0 0 5px;
  923.     padding:3px 0;
  924.     height:14px;
  925.     display:inline-block;
  926. }
  927.  
  928. .entry ul.chat{
  929.     list-style:none;
  930.     padding-left:0;
  931. }
  932. .entry ul.chat li{
  933.     padding:5px;
  934.     border-top:1px solid rgba(0,0,0,0.2);
  935. }
  936. .entry ul.chat li:first-child{
  937.     border:0;
  938.     padding-top:0px;
  939. }
  940. .entry ul.chat li:last-child{
  941.     padding-bottom:0px;
  942. }
  943. .entry a.read_more{
  944.     text-transform:lowercase;
  945. }
  946. .entry a.read_more:after{
  947.     text-decoration:none;
  948.     font-family:consolas;
  949.     font-size:10px;
  950.     content: " →";
  951. }
  952. .arrows{
  953.     font-family:consolas;
  954.     font-size:10px;
  955. }
  956.    
  957. #albumart {
  958.     width:100px;
  959.     height:100px;
  960.     margin-bottom:-1px;
  961. }  
  962. #audioplayer {
  963.     width:27px;
  964.     height:27px;
  965.     overflow:hidden;
  966.     position:absolute;
  967.     top:36px;
  968.     left:36px;
  969.     opacity:0.8;
  970. }
  971. #audiodetails {
  972.     position:absolute;
  973.     display:block;
  974.     top:0px;
  975.     left:110px;
  976.     width:100%;
  977. }
  978. #audiodetails ul{
  979.     list-style-type:none;
  980.     padding:0;
  981.     margin:0;
  982. }
  983. #audiodetails li{
  984.     padding:2px 0px;
  985. }
  986. ol.notes {
  987.     width: 100%;
  988.     padding: 0;
  989.     list-style-type: none;
  990. }
  991. ol.notes li.note {
  992.     margin: 0;
  993.     padding:0 0 8px 0;
  994. }
  995. ol.notes li.note:last-child{
  996.     padding:0 0 2px 0;
  997. }
  998. ol.notes li.note img {
  999.     margin: 0 2px -2px 0px;
  1000. }
  1001. ol.notes blockquote{
  1002.     margin:5px 0 0px 23px;
  1003.     padding-left:5px;
  1004. }  
  1005. #infscr-loading{
  1006.     position: absolute;
  1007.     bottom: 0px;   
  1008.     left: 50%;
  1009.     width:56px;
  1010.     height:21px;
  1011.     margin: 0 0 15px -28px;
  1012.     overflow:hidden;
  1013.     opacity:0.8;
  1014.     text-align:center;
  1015. }
  1016.  
  1017. /** Post Hovers **/
  1018.  
  1019. .details-r, .details-l{
  1020.     padding-top:4px;
  1021.     font-family:consolas;
  1022.     font-weight:bold;
  1023.     font-size:10px;
  1024.     text-transform:lowercase;
  1025.     line-height:13px;
  1026.     color:rgba(0,0,0,0.5);
  1027. }
  1028. .details-r{
  1029.     text-align:right;
  1030.     {block:IfBasicPermalinkBorder}
  1031.     border-top: 1px solid rgba(0,0,0,0.2);
  1032.     {/block:IfBasicPermalinkBorder}
  1033. }
  1034. .details-l{
  1035.     position:absolute;
  1036.     left:0px;
  1037.     bottom:0px;
  1038.     text-align:left;
  1039. }
  1040.  
  1041.  
  1042. #permapage{
  1043.   font-family:consolas;
  1044.   font-size: 11px;
  1045.   text-align: center;
  1046.   padding-bottom: 5px;
  1047.   z-index:9999;
  1048.    
  1049. }
  1050.  
  1051.  
  1052. .details-r a, .details-l a, .details-t a{
  1053.     color:rgba(0,0,0,0.5);
  1054. }
  1055.  
  1056. {block:IfColourfulPermalinks}
  1057. .details-r a:hover, .details-l a:hover{
  1058.     color:#bd66ff;
  1059. }
  1060. {/block:IfColourfulPermalinks}
  1061.  
  1062.  
  1063. .gradient{
  1064.     position:absolute;
  1065.     left:0;
  1066.     height:14px;
  1067.     width:100%;
  1068.     text-align:center;
  1069.     opacity:0;
  1070.     {block:IfNotPermalinkSwitch}
  1071.     bottom:0;
  1072.     padding:16px 0 10px 0;
  1073.     {block:IfPermalinkMovement}
  1074.     padding:16px 0 0px 0;
  1075.     {/block:IfPermalinkMovement}
  1076.     background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,{text:PermalinkOpacity}) 100%);
  1077.     background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,{text:PermalinkOpacity})));
  1078.     background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,{text:PermalinkOpacity}) 100%);
  1079.     background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,{text:PermalinkOpacity}) 100%);
  1080.     background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,{text:PermalinkOpacity}) 100%);
  1081.     background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,{text:PermalinkOpacity}) 100%);
  1082.     {/block:IfNotPermalinkSwitch}  
  1083.     {block:IfPermalinkSwitch}
  1084.     top:0;
  1085.     padding:10px 0 16px 0;
  1086.     {block:IfPermalinkMovement}
  1087.     padding:0px 0 16px 0;
  1088.     {/block:IfPermalinkMovement}
  1089.     background: -moz-linear-gradient(bottom,  rgba(0,0,0,0) 0%, rgba(0,0,0,{text:PermalinkOpacity}) 100%);
  1090.     background: -webkit-gradient(linear, left bottom, left top, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,{text:PermalinkOpacity})));
  1091.     background: -webkit-linear-gradient(bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,{text:PermalinkOpacity}) 100%);
  1092.     background: -o-linear-gradient(bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,{text:PermalinkOpacity}) 100%);
  1093.     background: -ms-linear-gradient(bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,{text:PermalinkOpacity}) 100%);
  1094.     background: linear-gradient(to top,  rgba(0,0,0,0) 0%,rgba(0,0,0,{text:PermalinkOpacity}) 100%);
  1095.     {/block:IfPermalinkSwitch}
  1096.    
  1097.    
  1098. }
  1099. .entry:hover .gradient{
  1100.     opacity:0.99;
  1101.     padding:16px 0 10px 0;
  1102.     {block:IfPermalinkSwitch}
  1103.     padding:10px 0 16px 0;
  1104.     {/block:IfPermalinkSwitch}
  1105. }
  1106. .gradient a:hover{
  1107.     text-decoration:none;
  1108. }
  1109. .reblogspan{
  1110.     color:transparent;
  1111.     width:13px;
  1112.     height:13px;
  1113.     background:url('http://media.tumblr.com/tumblr_mboy88Mmjo1qk7o6d.png');
  1114.     display:inline-block;
  1115. }
  1116. .reblogspan-2{
  1117.     color:transparent;
  1118.     width:13px;
  1119.     height:13px;
  1120.     font-size:12px;
  1121.     margin:0 1px;
  1122.     background:url('http://static.tumblr.com/beiywxc/cKKmcczrv/reblog_small_black.png');
  1123.     display:inline-block;
  1124.     opacity:0.5;
  1125.    
  1126. }
  1127. .notespan{
  1128.     padding: 0 5px;
  1129.     color:#fff;
  1130.     font-family:consolas;
  1131.     font-weight:bold;
  1132.     font-size:12px;
  1133.     line-height:14px;
  1134.     letter-spacing:1px;
  1135. }
  1136. .my-like {
  1137.  
  1138.     color:transparent;
  1139.     width:13px;
  1140.     height:13px;
  1141.     background:url('http://media.tumblr.com/tumblr_mbp2zdKVHR1qk7o6d.png');
  1142.     display:inline-block;
  1143. }
  1144. .my-basic-like {
  1145.     color:transparent;
  1146.     width:13px;
  1147.     height:13px;
  1148.     font-size:12px;
  1149.     margin:0 0 0 1px;
  1150.     background:url('http://static.tumblr.com/beiywxc/qK6mcczsr/black_heart_final.png');
  1151.     display:inline-block;
  1152.     opacity:0.5;
  1153. }
  1154. .my-liked {
  1155.     color:transparent;
  1156.     width:13px;
  1157.     height:13px;
  1158.     background:url('http://media.tumblr.com/tumblr_mbp2zu4pim1qk7o6d.png');
  1159.     display:inline-block;
  1160. }
  1161. .my-basic-liked {
  1162.     color:transparent;
  1163.     width:13px;
  1164.     height:13px;
  1165.     font-size:12px;
  1166.     margin:0 0 0 1px;
  1167.     background:url('http://media.tumblr.com/tumblr_mbp2zu4pim1qk7o6d.png');
  1168.     display:inline-block;
  1169. }
  1170.  
  1171. #over{
  1172.     height:108%;
  1173.     position:absolute;
  1174.     top:0px;
  1175.     left:0px;
  1176.     width: 100%;
  1177.     z-index:-99999999;
  1178. }
  1179.  
  1180. /** Navigation **/
  1181.  
  1182. .pagenav{
  1183.     background:{color:PostsBackground};
  1184.     padding:10px;
  1185.     margin: -5px 5px 5px;
  1186.     color:rgba(0,0,0,0.5);
  1187.     font-size:11px;
  1188.     font-family:consolas;
  1189.     line-height:11px;
  1190.     font-weight:bold;
  1191.     text-align:center;
  1192.     {block:IfBoxShadow}
  1193.     box-shadow: 0 0 {text:ShadowSpread}px rgba(0,0,0,{text:ShadowOpacity});
  1194.     -moz-box-shadow: 0 0 {text:ShadowSpread}px rgba(0,0,0,{text:ShadowOpacity});
  1195.     -webkit-box-shadow: 0 0 {text:ShadowSpread}px rgba(0,0,0,{text:ShadowOpacity});
  1196.     {/block:IfBoxShadow}
  1197.     text-decoration:none;
  1198.     display:block;
  1199.     position:relative;
  1200.     text-transform:uppercase;
  1201. }
  1202. .pagenav .next{
  1203.     position:absolute;
  1204.     z-index:99999;
  1205.     right:10px;
  1206.     top:10px;
  1207.     font-family:consolas;
  1208.     font-size:11px;
  1209.     line-height:11px;
  1210.     letter-spacing:0px;
  1211.     font-weight:normal;
  1212.     color:rgba(0,0,0,0.5);
  1213.     text-transform:none;
  1214. }
  1215. .pagenav .prev{
  1216.     position:absolute;
  1217.     z-index:99999;
  1218.     left:10px;
  1219.     top:10px;
  1220. font-family:consolas;
  1221.     font-size:11px;
  1222.     line-height:11px;
  1223.     letter-spacing:0px;
  1224.     font-weight:normal;
  1225.     color:rgba(0,0,0,0.5);
  1226.     text-transform:none;
  1227. }
  1228. .nextpage{
  1229.     background:{color:PostsBackground};
  1230.     margin: 5px 5px -5px;
  1231.     padding:10px;
  1232.     height:11px;
  1233.     color:rgba(0,0,0,0.5);
  1234.     font-size:11px;
  1235. font-family:consolas;
  1236.     line-height:11px;
  1237.     font-weight:bold;
  1238.     text-align:center;
  1239.     {block:IfBoxShadow}
  1240.     box-shadow: 0 0 {text:ShadowSpread}px rgba(0,0,0,{text:ShadowOpacity});
  1241.     -moz-box-shadow: 0 0 {text:ShadowSpread}px rgba(0,0,0,{text:ShadowOpacity});
  1242.     -webkit-box-shadow: 0 0 {text:ShadowSpread}px rgba(0,0,0,{text:ShadowOpacity});
  1243.     {/block:IfBoxShadow}
  1244.     text-decoration:none;
  1245.     display:block;
  1246.     opacity:0;
  1247. }
  1248. .nextpage:hover{
  1249.     text-decoration:none;
  1250.     color:rgba(0,0,0,0.5);
  1251. }
  1252.  
  1253.  
  1254.  
  1255. {CustomCSS}
  1256.  
  1257. </style>
  1258. <script>
  1259. window.onload = function () {
  1260. document.body.insertAdjacentHTML( 'beforeEnd', '<iframe id="my-like-frame" style="display:none;"></iframe>' );
  1261. document.addEventListener( 'click', function ( event ) {
  1262.     var myLike = event.target;
  1263.     if( myLike.className.indexOf( 'my-like' ) > -1 ) {
  1264.         var frame = document.getElementById( 'my-like-frame' ),
  1265.             liked = ( myLike.className == 'my-liked' ),
  1266.             command = liked ? 'unlike' : 'like',
  1267.             reblog = myLike.getAttribute( 'data-reblog' ),
  1268.             id = myLike.getAttribute( 'data-id' ),
  1269.             oauth = reblog.slice( -8 );
  1270.         frame.src = 'http://www.tumblr.com/' + command + '/' + oauth + '?id=' + id;
  1271.         liked ? myLike.className = 'my-like' : myLike.className = 'my-liked';
  1272.     };
  1273. }, false );
  1274. document.addEventListener( 'click', function ( event ) {
  1275.     var myLike = event.target;
  1276.     if( myLike.className.indexOf( 'my-basic-like' ) > -1 ) {
  1277.         var frame = document.getElementById( 'my-like-frame' ),
  1278.             liked = ( myLike.className == 'my-basic-liked' ),
  1279.             command = liked ? 'unlike' : 'like',
  1280.             reblog = myLike.getAttribute( 'data-reblog' ),
  1281.             id = myLike.getAttribute( 'data-id' ),
  1282.             oauth = reblog.slice( -8 );
  1283.         frame.src = 'http://www.tumblr.com/' + command + '/' + oauth + '?id=' + id;
  1284.         liked ? myLike.className = 'my-basic-like' : myLike.className = 'my-basic-liked';
  1285.     };
  1286. }, false );
  1287. };
  1288. </script>
  1289.  
  1290. <!--------------- TYPING/MOVING TITLE ----------------------->
  1291.  
  1292. <script type="text/javascript">
  1293. var rev = "fwd";
  1294. function titlebar(val)
  1295. {
  1296. var msg = "you are loved ♥";
  1297. var res = " ";
  1298. var speed = 100;
  1299. var pos = val;
  1300. msg = "you are loved ♥";
  1301. var le = msg.length;
  1302. if(rev == "fwd"){
  1303. if(pos < le){
  1304. pos = pos+1;
  1305. scroll = msg.substr(0,pos);
  1306. document.title = scroll;
  1307. timer = window.setTimeout("titlebar("+pos+")",speed);}
  1308. else{
  1309. rev = "bwd";
  1310. timer = window.setTimeout("titlebar("+pos+")",speed);}}
  1311. else{
  1312. if(pos > 0){
  1313. pos = pos-1;
  1314. var ale = le-pos;
  1315. scrol = msg.substr(ale,le);
  1316. document.title = scrol;
  1317. timer = window.setTimeout("titlebar("+pos+")",speed);}
  1318. else{
  1319. rev = "fwd";
  1320. timer = window.setTimeout("titlebar("+pos+")",speed);
  1321. }}}
  1322. titlebar(0);
  1323. </script>
  1324.  
  1325.  
  1326. </head>
  1327. <body>
  1328.  
  1329. <!-- start bubble tab -->
  1330.     <div id="tabs">
  1331. <b><div style="font-size: 15px;">✖✖✖
  1332. </div></b><p>
  1333. <div style="background: #E3E4FA;padding: 5px;font-size: 12px;border-top:2px solid #E3E3E3;margin:7px;"><b>UPDATES</b></div><p>
  1334. <div style="text-align: left;margin: 7px;">
  1335.  
  1336. 27/3- created blog :)
  1337.    
  1338.    
  1339. </div>
  1340.    
  1341.     <div style="background: #E3E4FA;padding: 5px;font-size: 12px;border-top:2px solid #E3E3E3;margin:7px;"><b>EASY PROMO?</b></div>
  1342.    
  1343. <div style="text-align: left;margin: 7px;">
  1344. <p>
  1345. • promote your tumblr <a href="http://promoteyourtumblr.com" target="_blank" title="tumblrplug">here</a>.
  1346.  
  1347. <br>• follow my instagram or twitter and message me your username for a promo to thousands in my main.
  1348.  
  1349.  
  1350. </p></div>
  1351.  
  1352.     <div style="background: #E3E4FA; padding: 5px;font-size: 12px;border-top:2px solid #E3E3E3;margin:7px;"><b>CURRENTLY</b></div>
  1353.  
  1354. {block:ifOnline}[x]Online []Offline{/block:ifOnline} {block:ifOffline} []Online [x]Offline{/block:ifOffline} {block:ifPostlimit}[x]Post Limit {block:ifPostlimit} {block:ifQueue}[x]Queue {block:ifQueue}
  1355.  
  1356. </div>
  1357.  <!-- end bubble tab -->
  1358.  
  1359. {block:IfInfiniteScroll}{block:IndexPage}<div id ="over"></div>{/block:IndexPage}{/block:IfInfiniteScroll}
  1360.  
  1361.  
  1362. <div id="bigbox">
  1363.  
  1364. <div class="sidebar">
  1365. <div id="blogtitle"><a href="/">{title}</a></div>
  1366. {block:IfPortraitImage}
  1367. <div class="portrait"><a href="/">
  1368. <img src="{image:Portrait}" width="250px" height="auto" /></a>
  1369. </div>{/block:IfPortraitImage}
  1370. <div class="textbox">
  1371.  
  1372. <div class="sidebarlinks">
  1373.  
  1374. </span></p></div>
  1375. {block:IfNotLinksAfterDescription}
  1376. <div class="description"><p>{Description}</p>
  1377. {/block:IfNotLinksAfterDescription}
  1378.  
  1379.  
  1380. <div id="judy"><a title="Home" a href="http://urghban.tumblr.com/">Home</a></div>
  1381. <div id="judy"><a title="Ask + FAQ" a href="http://ugrhban.tumblr.com/ask">message</a></div>
  1382. <div id="drop"><a href="#">+ETC</a></a>
  1383. <div id="down">
  1384. {block:ifcustomlinkonetitle}<a href="{text:custom link one}" title="archive">{text:custom link one title}</a>{/block:ifcustomlinkonetitle}
  1385.  
  1386. {block:ifcustomlinktwotitle} <a href="{text:custom link two}" title="follow for promo">{text:custom link two title}</a>{/block:ifcustomlinktwotitle}
  1387.  
  1388. {block:ifcustomlinkthreetitle} <a href="{text:custom link three}"title="reblog and ily" >{text:custom link three title}</a>{/block:ifcustomlinkthreetitle}
  1389.  
  1390. {block:ifcustomlinkfourtitle} <a href="{text:custom link four}" title="follow">{text:custom link four title}</a>{/block:ifcustomlinkfourtitle}
  1391.  
  1392. {block:ifcustomlinkfivetitle} <a href="{text:custom link five}" title="random post">{text:custom link five title}</a>{/block:ifcustomlinkfivetitle}
  1393. </div></div></div></div></div>
  1394.  
  1395.  
  1396.  
  1397.  
  1398.  
  1399.  
  1400. <div id="container">
  1401.  
  1402.  
  1403. {block:IfNotInfiniteScroll}
  1404. {block:IndexPage}
  1405. <div class="pagenav" style="display:none;
  1406. {block:PreviousPage}display:block;{/block:PreviousPage}
  1407. {block:TagPage}display:block;{/block:TagPage}">
  1408. {block:TagPage}# {Tag} {text:LinkSeparator} {/block:TagPage}Page {CurrentPage}/{TotalPages}
  1409. {block:PreviousPage}
  1410. <a href="{PreviousPage}" class="prev">
  1411. <span class="arrows"></span> previous page
  1412. </a>
  1413. {/block:PreviousPage}
  1414. {block:NextPage}
  1415. <a href="{NextPage}" class="next">
  1416. next page <span class="arrows"></span>
  1417. </a>
  1418. {/block:NextPage}
  1419. </div>
  1420. {/block:IndexPage}
  1421. {/block:IfNotInfiniteScroll}
  1422.  
  1423. <div id="posts">
  1424.  
  1425. {block:Posts}
  1426. <div class="entry"
  1427. {block:IfNotBasicPermalinks}
  1428. {block:IndexPage}
  1429. {block:Photo}style="padding-bottom:9px"{/block:Photo}
  1430. {block:Photoset}style="padding-bottom:9px"{/block:Photoset}
  1431. {/block:IndexPage}
  1432. {block:IfNotBasicPermalinks}
  1433. >
  1434. <div id="relativity">
  1435.  
  1436. {block:Text}<div style="padding-top:10px; padding-bottom:0px; padding-left:10px; padding-right:10px; text-align:left;">
  1437. {block:Title}<a href="{permalink}"><center><span class="loyal">{Title}</span>{/block:Title}</a></center>
  1438. <span class="entrytext" style="line-height:12px;">{Body}</span>
  1439. <a href="{Permalink}"></a></div>
  1440. {block:indexpage}<hr size=".8" width="230">
  1441.  <div align="right" style="padding-right:10px; padding-top:5px; padding-bottom:10px;"><a href="{permalink}">{NoteCountWithLabel}</a> &middot; <a href="{ReblogURL}" target="_blank">reblog</a></div>{/block:indexpage}
  1442. {/block:Text}
  1443.  
  1444. {block:Photo}
  1445. {block:IndexPage}<a href="{Permalink}">
  1446. <img src="{PhotoURL-500}" alt="{PhotoAlt}" width="100%" />
  1447. </a>
  1448. {/block:IndexPage}
  1449. {block:PermalinkPage}
  1450. {LinkOpenTag}
  1451. <img src="{PhotoURL-500}" alt="{PhotoAlt}" width="100%" />
  1452. {LinkCloseTag}
  1453. {/block:PermalinkPage}
  1454. {/block:Photo}
  1455.  
  1456. {block:Photoset}
  1457. <div style="margin-bottom:-3px;text-align:center;">
  1458. {block:IndexPage}
  1459. {block:IfPostWidth500px}
  1460. {Photoset-500}
  1461. {/block:IfPostWidth500px}{block:IfPostWidth400px}
  1462. {Photoset-400}
  1463. {/block:IfPostWidth400px}
  1464. {block:IfPostWidth320px}
  1465. {Photoset-250}
  1466. {/block:IfPostWidth320px}
  1467. {block:IfPostWidth250px}
  1468. {Photoset-250}
  1469. {/block:IfPostWidth250px}
  1470. {/block:IndexPage}
  1471. {block:PermalinkPage}
  1472. {block:IfNot1Column}
  1473. {Photoset-500}
  1474. {/block:IfNot1Column}
  1475. {block:If1Column}
  1476. {block:IfPostWidth500px}
  1477. {Photoset-500}
  1478. {/block:IfPostWidth500px}
  1479. {block:IfPostWidth400px}
  1480. {Photoset-400}
  1481. {/block:IfPostWidth400px}
  1482. {block:IfPostWidth320px}
  1483. {Photoset-250}
  1484. {/block:IfPostWidth320px}
  1485. {block:IfPostWidth250px}
  1486. {Photoset-250}
  1487. {/block:IfPostWidth250px}
  1488. {/block:If1Column}
  1489. {/block:PermalinkPage}
  1490. </div>
  1491. {/block:Photoset}
  1492.  
  1493. {block:Quote}
  1494. <div class="textbox" style="text-align:center;">
  1495. <h1>"{Quote}"</h1>
  1496. {block:Source}
  1497. <p>{Source}</p>
  1498. {/block:Source}
  1499. </div>
  1500. {/block:Quote}
  1501.  
  1502. {block:Link}
  1503. <div class="textbox">
  1504. <h1> <a href="{URL}" class="link" {Target}>{Name}</a> </h1>
  1505. {block:Description}
  1506. <p>{Description}</p>
  1507. {/block:Description}
  1508. </div>
  1509. {/block:Link}
  1510.  
  1511. {block:Chat}
  1512. <div class="textbox">
  1513. {block:Title}
  1514. <a href="{Permalink}"><h1>{Title}</h1></a>
  1515. {/block:Title}
  1516. <ul class="chat">
  1517. {block:Lines}
  1518. <li class="{Alt} user_{UserNumber}">  
  1519. {block:Label}
  1520. <span class="label" style="font-weight:bold">{Label}</span>
  1521. {/block:Label}
  1522. {Line}
  1523. </li>
  1524. {/block:Lines}
  1525. </ul>
  1526. </div>
  1527. {/block:Chat}
  1528.  
  1529. {block:Audio}
  1530. {block:AudioPlayer}    
  1531. <div id="albumart" style="position:relative;">
  1532. <img src="http://static.tumblr.com/jn9hrij/20Ul2zzsr/albumart.jpg" width="100px" style="position:absolute;top:0;left:0;">
  1533. {block:AlbumArt}<img src="{AlbumArtURL}" width="100px" style="position:absolute;top:0;left:0;">{/block:AlbumArt}
  1534. <div id="audioplayer">{AudioPlayerBlack} </div>
  1535. </div>
  1536. <div id="audiodetails">
  1537. <ul>
  1538. <li>{block:Artist}
  1539. {Artist}
  1540. {/block:Artist}</li>
  1541. <li>{block:TrackName}
  1542. <b>{TrackName}</b>
  1543. {/block:TrackName}</li>
  1544. <li>{block:Album}
  1545. {Album}
  1546. {/block:Album}</li>
  1547. </ul>
  1548. </div>
  1549. {/block:AudioPlayer}
  1550. {block:AudioEmbed}
  1551. {block:IndexPage}
  1552. {block:IfPostWidth500px}
  1553. {AudioEmbed-500}
  1554. {/block:IfPostWidth500px}{block:IfPostWidth400px}
  1555. {AudioEmbed-400}
  1556. {/block:IfPostWidth400px}
  1557. {block:IfPostWidth320px}
  1558. {AudioEmbed-250}
  1559. {/block:IfPostWidth320px}
  1560. {block:IfPostWidth250px}
  1561. {AudioEmbed-250}
  1562. {/block:IfPostWidth250px}
  1563. {/block:IndexPage}
  1564. {block:PermalinkPage}
  1565. {block:IfNot1Column}
  1566. {AudioEmbed-500}
  1567. {/block:IfNot1Column}
  1568. {block:If1Column}
  1569. {block:IfPostWidth500px}
  1570. {AudioEmbed-500}
  1571. {/block:IfPostWidth500px}
  1572. {block:IfPostWidth400px}
  1573. {AudioEmbed-400}
  1574. {/block:IfPostWidth400px}
  1575. {block:IfPostWidth320px}
  1576. {AudioEmbed-250}
  1577. {/block:IfPostWidth320px}
  1578. {block:IfPostWidth250px}
  1579. {AudioEmbed-250}
  1580. {/block:IfPostWidth250px}
  1581. {/block:If1Column}
  1582. {/block:PermalinkPage}{/block:AudioEmbed}
  1583. {/block:Audio}
  1584.  
  1585. {block:Video}
  1586. <div style="text-align:center;margin-bottom:-3px;">
  1587. {block:IndexPage}
  1588. {block:IfPostWidth500px}
  1589. {Video-500}
  1590. {/block:IfPostWidth500px}
  1591. {block:IfPostWidth400px}
  1592. {Video-400}
  1593. {/block:IfPostWidth400px}
  1594. {block:IfPostWidth320px}
  1595. {Video-250}
  1596. {/block:IfPostWidth320px}
  1597. {block:IfPostWidth250px}
  1598. {Video-250}
  1599. {/block:IfPostWidth250px}
  1600. {/block:IndexPage}
  1601. {block:PermalinkPage}
  1602. {block:IfNot1Column}
  1603. {Video-500}
  1604. {/block:IfNot1Column}
  1605. {block:If1Column}
  1606. {block:IfPostWidth500px}
  1607. {Video-500}
  1608. {/block:IfPostWidth500px}
  1609. {block:IfPostWidth400px}
  1610. {Video-400}
  1611. {/block:IfPostWidth400px}
  1612. {block:IfPostWidth320px}
  1613. {Video-250}
  1614. {/block:IfPostWidth320px}
  1615. {block:IfPostWidth250px}
  1616. {Video-250}
  1617. {/block:IfPostWidth250px}
  1618. {/block:If1Column}
  1619. {/block:PermalinkPage}
  1620. </div>
  1621. {/block:Video}
  1622.  
  1623. {block:Answer}
  1624. <div style="border:2px solid #eee;padding: 8px"><div class="question">
  1625. {Question}
  1626. </div>
  1627. <div class="nipple"></div>
  1628. <div class="questioner"><img src="{AskerPortraitURL-128}" width="20" height="20"/><div>{Asker}</div></div>
  1629. <div class="textbox">{Answer}</div><hr size=".8" width="230"> {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}
  1630.  <div align="right" style="padding-right:10px; padding-top:5px; padding-bottom:10px;"><a href="{permalink}">{NoteCountWithLabel}</a> &middot; <a href="{ReblogURL}" target="_blank">reblog</a></div></div>
  1631. {/block:Answer}
  1632.  
  1633. {block:IndexPage}
  1634. {block:IfNotBasicPermalinks}
  1635. {block:Photo}
  1636. <div class="gradient transition">
  1637. <a href="{ReblogURL}" title="Reblog" target="_blank"><span class="reblogspan">o</span></a>
  1638. <a href="{Permalink}" title="Permalink"><span class="notespan">{NoteCount}</span></a>
  1639. <span class="my-like" data-reblog="{ReblogURL}" data-id="{PostID}" title="Like">o</span></div>
  1640. {/block:Photo}
  1641. {block:Photoset}
  1642. <div class="gradient transition">
  1643. <a href="{ReblogURL}" title="Reblog" target="_blank"><span class="reblogspan">o</span></a>
  1644. <a href="{Permalink}" title="Permalink"><span class="notespan">{NoteCount}</span></a>
  1645. <span class="my-like" data-reblog="{ReblogURL}" data-id="{PostID}" title="Like">o</span></div>
  1646. {/block:Photoset}
  1647. {/block:IfNotBasicPermalinks}
  1648. {/block:IndexPage}
  1649.  
  1650. {block:PermalinkPage}
  1651. <div id="permapage"><br>
  1652. {block:notecount}
  1653. {notecountwithlabel}
  1654. {/block:notecount}&nbsp;&nbsp;{block:Date}{ShortMonth} {DayofMonth}{DayofMonthSuffix}{/block:Date}&nbsp;&nbsp;{block:RebloggedFrom} Reblogged from
  1655. <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}&nbsp;&nbsp;<br>{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}{/block:HasTags}
  1656. <br>
  1657. <br>
  1658. <div align="left">
  1659. {block:Caption}
  1660. {Caption}
  1661. {/block:Caption}
  1662. <br>
  1663. {block:PostNotes}
  1664. {PostNotes}
  1665. {/block:PostNotes}
  1666. </div>
  1667. </div>
  1668. {/block:PermalinkPage}
  1669.  
  1670. </div>
  1671. </div>      
  1672.  
  1673.  
  1674. {/block:Posts}
  1675. </div>
  1676.  
  1677. {block:IfNotInfiniteScroll}
  1678. {block:IndexPage}
  1679. {block:NextPage}
  1680. <a href="{NextPage}" class="nextpage">
  1681. NEXT PAGE
  1682. </a>
  1683. {/block:NextPage}
  1684. {/block:IndexPage}
  1685. {/block:IfNotInfiniteScroll}
  1686.  
  1687. </div></div>
  1688.  
  1689. {block:Pagination}
  1690. <div id="pagination" style="display:none;">
  1691. {block:NextPage}
  1692. <a id="nextPage" href="{NextPage}"></a>
  1693. {/block:NextPage}
  1694. </div>
  1695. {/block:Pagination}
  1696.  
  1697. <script src="http://static.tumblr.com/beiywxc/xycmgznif/jquery.min.js"></script>
  1698. <script src="http://static.tumblr.com/beiywxc/H7tmgznfy/jquery.masonry.min.js"></script>
  1699. <script src="http://static.tumblr.com/beiywxc/sj8mgznh2/jquery.infinitescroll.min.js"></script>
  1700. <script>
  1701.   $(function(){
  1702.    
  1703.     var $container = $('#posts');
  1704.    
  1705.     $container.imagesLoaded(function(){
  1706.       $container.masonry({
  1707.         itemSelector: '.entry',
  1708.       });
  1709.     });
  1710.    
  1711.     {block:IfInfiniteScroll}
  1712.     $container.infinitescroll({
  1713.       navSelector  : 'div#pagination',    // selector for the paged navigation
  1714.       nextSelector : 'div#pagination a#nextPage',  // selector for the NEXT link (to page 2)
  1715.       itemSelector : '.entry',     // selector for all items you'll retrieve
  1716.       loading: {
  1717.           finishedMsg: 'Fini.',
  1718.           img: 'http://static.tumblr.com/beiywxc/VXem7gjgj/ajax-loader__7_.gif'
  1719.         }
  1720.       },
  1721.       // trigger Masonry as a callback
  1722.       function( newElements ) {
  1723.         // hide new items while they are loading
  1724.         var $newElems = $( newElements ).css({ opacity: 0 });
  1725.         // ensure that images load before adding to masonry layout
  1726.         $newElems.imagesLoaded(function(){
  1727.           // show elems now they're ready
  1728.           $newElems.animate({ opacity: 1 });
  1729.           $container.masonry( 'appended', $newElems, true );
  1730.         });
  1731.       }
  1732.     );
  1733.     {/block:IfInfiniteScroll}
  1734.    
  1735.   });
  1736. </script>
  1737. <script>
  1738. $(window).load(function(){
  1739.       // select element and animate its opacity
  1740.       $('a.nextpage').animate({
  1741.             opacity: 1 // 100%
  1742.       }, 100);
  1743. });
  1744. </script>
  1745.  
  1746. </body>
  1747.  
  1748. <div id="boxiebox">
  1749.  
  1750. <div id="moodie">
  1751. <div style="text-align:center;">MOOD</div>
  1752. tttm
  1753. </div>
  1754.  
  1755. <div id="netty"><div style="font-size:8px;text-align:center;">networks</div>
  1756.  
  1757. NONE.
  1758.  
  1759.  
  1760. </div>
  1761.  
  1762. <div id="music">
  1763. <div style="text-align:center;">MUsic</div>
  1764. kpop
  1765. <embed src="http://www.sheepproductions.com/billy/billy.swf?
  1766. autoplay=false&f0=https://dl.dropboxusercontent.com/s/w0mz8gd709g7tw4/02%201004%20%28Angel%29.mp3?dl=1&token_hash=AAHs9ra8AXpW_as3fzN3U1j_zBz8FvwOzA3azRVxnHzIGg
  1767. &t0=Angel (1004)&f1=https://dl.dropboxusercontent.com/s/zyiul3ol42r7frk/02%20%EC%83%81%EB%82%A8%EC%9E%90%20%28Boy%20In%20Luv%29.mp3?dl=1&token_hash=AAGf4BWMfovpNuEbrVvtTy_R_ZUlCgxVZyNkxgNFYcwaCQ
  1768. &t1=Boy in Luv&f2=https://dl.dropboxusercontent.com/s/eq6znfdrj9e0ony/Girls%20Girls%20Girls.mp3?dl=1&token_hash=AAFU34_sB7aHkdeZuyBuCTw1Kg9SZRlH4KC4rJ857mjcjg
  1769. &t2=Girls Girls Girls&f3=https://dl.dropboxusercontent.com/s/jwdcg5yrzo64xkz/Something.mp3?dl=1&token_hash=AAH0smrfQ_8TpYzXDpsiO1DwxsHym2kS1EIZ5FpT_Xes4w
  1770. &t3=Something&f4=https://dl.dropboxusercontent.com/s/j5ctos51xzg35b2/1-01%20%EB%B3%91%EC%9D%B4%EC%97%90%EC%9A%94%20%28Spotless%20Mind%29.mp3?dl=1&token_hash=AAFQoUJsbrhsqZUK0paAbe7th07PMnliABISuXMmBSUJVg
  1771. &t4=Spotless Mind&f5=https://dl.dropboxusercontent.com/s/bvozaa6mxu8jtb7/%EB%93%A4%EC%96%B4%EC%99%80%20%28Open%20The%20Door%29.mp3?dl=1&token_hash=AAF80P5AggmGrZFUJB7daN-mO11VaffvwrOalsOUaafEpg
  1772. &t5=Open The Door&f6=https://dl.dropboxusercontent.com/s/tfok1bsqao8h9bz/1-01%20%EC%9C%BC%EB%A5%B4%EB%A0%81%20Growl.mp3?dl=1&token_hash=AAH9fBZNJ-05pypOVYMAoNfYv_qHVvlJQ0e4kDXRtdASzg
  1773. &t6=Growl&f7=https://dl.dropboxusercontent.com/s/5t9narfw248czr9/02%20Flower.mp3?dl=1&token_hash=AAF_pdA1vU9voZSP1LVvJnBpC5eDxRL6PTrNAIAa21KFXw
  1774. &t7=Flower&f8=https://dl.dropboxusercontent.com/s/inre62tw1p7q92a/1-02%20%EB%8A%91%EB%8C%80%EC%99%80%20%EB%AF%B8%EB%85%80%20Wolf.mp3?dl=1&token_hash=AAGuD1L0nv35I5f2yobFbOVH5fMEEi6FKltnyFlqffdr6Q
  1775. &t8=Wolf&f9=https://dl.dropboxusercontent.com/s/kp0guyzom4kgq5r/08%20%EC%82%90%EB%94%B1%ED%95%98%EA%B2%8C%20%28Crooked%29%201.mp3?dl=1&token_hash=AAGzj3sz0KDnGA1CYcij5qEn3DGClUIIDohtQrqqQFAiHA
  1776. &t9=Crooked&f10=https://dl.dropboxusercontent.com/s/8hsik08hmyadeix/%EC%B4%8C%EC%8A%A4%EB%9F%BD%EA%B2%8C%20%EC%99%9C%20%EC%9D%B4%EB%9E%98%20%28You%20Don_t%20Know%20Love%29.mp3?dl=1&token_hash=AAFoOqJ8iHOhH-N2gCuo0bAn_gkyjwWBFOQxi_2LgPJkBw
  1777. &t10=You Dont Know Love&f11=https://dl.dropboxusercontent.com/s/v3y72ysd9o9unlc/%EB%A7%81%EA%B0%80%20%EB%A7%81%EA%B0%80%20%28RINGA%20LINGA%29.mp3?dl=1&token_hash=AAFf_vkVU4RoKdmsjC4hxPKsRKOEEoKyPQzUjBupVcWiXA
  1778. &t11=Ringa Linga&f12=https://dl.dropboxusercontent.com/s/85jqdkiqqzxxyfs/Dogg_s%20Out.mp3?dl=1&token_hash=AAHuJItstCafT4WVFSRS9DBt8emilkF6PTzwcicSoX4Z3g
  1779. &t12=Dogg Out&f13=https://dl.dropboxusercontent.com/s/2mebea1874m2yol/%EC%A0%80%EC%A3%BC%EC%9D%B8%ED%98%95%20%28Voodoo%20Doll%29.mp3?dl=1&token_hash=AAEZ3IpJfc8S2rc00MrEHQJj6qq0QSLQJXmM0BMIW9uNNA
  1780. &t13=Voodoo Doll&f14=https://dl.dropboxusercontent.com/s/h1i4pley4z013ls/%EB%84%88%EB%A7%8C%20%EC%97%86%EB%8B%A4%20%28Gone%29.mp3?dl=1&token_hash=AAHryuzMxyQmfZZCHqIfiU673sFOYMTrRzEKOrG8F_LmPw
  1781. &t14=Gone&total=15"
  1782. quality="high" wmode="transparent"
  1783. width="175" height="10" name="billy" align="middle"
  1784. type="application/x-shockwave-flash" />
  1785. <hr size="1" width="110">
  1786. english
  1787.  
  1788. <embed src="http://www.sheepproductions.com/billy/billy.swf?
  1789. autoplay=false&f0=https://dl.dropboxusercontent.com/s/inhtt7866j0s7xa/Sweater%20Weather.mp3?dl=1&token_hash=AAGMGDuL61gmuZ4wuAO1d1lg5ljLXZUOryPAT6XOxx1NRQ
  1790. &t0=Sweather Weather&f1=https://dl.dropboxusercontent.com/s/zn8np5121yikplu/Stay%20the%20Night%20%28feat.%20Hayley%20Williams%20of%20Paramore%29.mp3?dl=1&token_hash=AAHAJmlB5hCwNo17v50qXFrORw4ygN6Cc5uviIjyC4DUAQ
  1791. &t1=Stay the Night&f2=https://dl.dropboxusercontent.com/s/v2m0d70044aljv8/Team.mp3?dl=1&token_hash=AAGEPfQmHRI7lbm2zy5QQnOJZ8neLin-dQsEFLJVVBTd_w
  1792. &t2=Team&f3=https://dl.dropboxusercontent.com/s/cgdw63qxmsgzdyd/Clarity.mp3?dl=1&token_hash=AAH9d2NgET_daaXY-A1-w2awSdgv3v7C_IhhZ65ApceBuA
  1793. &t3=Clarity&f4=http://https://dl.dropboxusercontent.com/s/9giqz6bxjsze7yf/The%20Monster.mp3?dl=1&token_hash=AAHloXbu6aD5hEXCqVGMFQvNYhVoI6JwtNjIe6Aq2X7XVA
  1794. &t4=The Monster&f5=https://dl.dropboxusercontent.com/s/xn1j1nl9a04clfm/Wake%20Me%20Up.mp3?dl=1&token_hash=AAFwHdSuEuQYUeLN0kaum4j-O3GxZzEyoBzn3zg3sCrd5g
  1795. &t5=Wake Me Up&f6=http://https://dl.dropboxusercontent.com/s/alb2xulzkic9bs1/We%27ll%20Be%20Coming%20Back.mp3?dl=1&token_hash=AAEooSB9aB_SwazTCMrIiB9lHJxduJyFbFqnbLRV5y9nJg
  1796. &t6=We'll be Coming Back&f7=https://dl.dropboxusercontent.com/s/4mbaoi9spwpwgal/Story%20of%20My%20Life.mp3?dl=1&token_hash=AAF_8TNk1KihX2GCII923EGzSAUKtXLVnoxrQrCUrrhX1Q
  1797. &t7=Story of my Life&f8=https://dl.dropboxusercontent.com/s/52olqfv2xfcw1ys/Royals.mp3?dl=1&token_hash=AAE9exKtTyyuvgu8NIo-LD-PGz8kH0vbHRd5BmsDC5mq4Q
  1798. &t8=Royals&f9=https://dl.dropboxusercontent.com/s/qpalb50xlhchblt/01%20Radioactive.mp3?dl=1&token_hash=AAGeDB4WqH5dkKk6i09viYNe1Q63n_4huQhlhlVbrNQ8CQ
  1799. &t9=Radioactive&total=10"
  1800. quality="high" wmode="transparent"
  1801. width="176" height="10" name="billy" align="middle"
  1802. type="application/x-shockwave-flash" />
  1803.  
  1804.  
  1805.  
  1806. </div>
  1807.  
  1808. <div id="statie">
  1809. <div style="text-align:center;">Stats</div>
  1810. NONE
  1811.  
  1812.  
  1813. </div>
  1814.  
  1815. <div id="socialie">
  1816. <div style="text-align:center;"> Socials </div>
  1817. <a href="http://instagram.com/ashtergram98" target="_blank"><img src="http://i39.tinypic.com/2ef84nq.png" height=31 title="instagram"/></a>
  1818.  
  1819. <a href="http://twitter.com/ashleylpm" target="_blank"><img src="http://i40.tinypic.com/296g85w.png" height=31 title="twitter"/></a>
  1820.  
  1821. <a href="http://www.facebook.com/ashley.lai.735" target="_blank"><img src="http://i44.tinypic.com/1zo97bc.png" height=31 title="facebook"/></a>
  1822. </div>
  1823.  
  1824. <div id="botm">
  1825. <div style="text-align:center;">BOTM</div>
  1826.  
  1827. JAN botm is over. might be making another one soon. look forward to it
  1828. </div>
  1829. </div>
  1830.  
  1831.  
  1832.  
  1833. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement