Advertisement
Guest User

For Breanna

a guest
Oct 31st, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.95 KB | None | 0 0
  1. <!--
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.                        [ T H E M E  B Y ]
  9.  
  10.                               ○ ● ○
  11.          
  12.                        [ T O M K I R K ]
  13.                        
  14.                
  15.                
  16.                                        
  17.                                                                                                                   i find my zenith doth depend upon a most auspicious star, whose influence
  18. If now i court not but omit, my fortunes will ever after droop. - w. shakespeare         
  19. -->
  20. <html>
  21.  
  22. <title>obscure;</title>
  23. <link rel="shortcut icon" href="http://static.tumblr.com/aact7gw/QnUndbqxg/grandloves.png
  24. ">
  25.  
  26. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  27. <html xmlns="http://www.w3.org/1999/xhtml">
  28. <head>
  29. <!--Default Variables-->
  30. <!--Colors-->
  31. <meta name="color:Ask Background" content="#000000"/>
  32. <meta name="color:Ask Text" content="#ffffff"/>
  33. <meta name="color:Background" content="#ffffff"/>
  34. <meta name="color:Text" content="#000000"/>
  35. <meta name="color:Link" content="#000000"/>
  36. <meta name="color:Link Hover" content="#000000"/>
  37. <meta name="color:Link Background" content="#F347FC"/> 
  38. <meta name="color:Border" content="#000000"/> 
  39. <meta name="color:Perma" content="#000000"/>
  40. <meta name="color:Perma Text" content="#ffffff"/>
  41. <meta name="color:Tool Tip" content="#ffffff"/>
  42. <meta name="color:Tool Tip Text" content="#000000"/> 
  43.  
  44. <!--Images-->
  45. <meta name="image:Background" content=""/>   
  46.  
  47. <!--Options-->
  48. <meta name="if:White Paper" content="1"/>
  49. <meta name="if:250px" content="1"/>
  50. <meta name="if:Tiny Cursor" content=""/> 
  51. <meta name="if:Infinite Scrolling" content=""/>
  52. <meta name="if:Captions" content=""/>
  53. <meta name="if:Photo Zoom" content="1"/> 
  54. <meta name="if:Faded Images" content=""/>
  55. <meta name="if:Inverted Images" content=""/>
  56. <meta name="if:Lazy Load" content=""/> 
  57. <meta name="if:Animation" content="1"/> 
  58.  
  59. <!--Links-->
  60. <meta name="text:Link 1 URL" content="/"/>
  61. <meta name="text:Link 1 name" content=""/>
  62. <meta name="text:Link 2 URL" content="/"/>
  63. <meta name="text:Link 2 name" content=""/>
  64. <meta name="text:Link 3 URL" content="/"/>
  65. <meta name="text:Link 3 name" content=""/>
  66. <meta name="text:Link 4 URL" content="/"/>
  67. <meta name="text:Link 4 name" content=""/> 
  68. <meta name="text:Link 5 URL" content="/"/>
  69. <meta name="text:Link 5 name" content=""/> 
  70.  
  71. {block:Description}
  72. <meta name="description" content="{MetaDescription}" />{/block:Description}
  73. <title>
  74. {block:PostSummary}
  75. {PostSummary} - {/block:PostSummary}{Title}</title>
  76. </style>
  77.  
  78.  
  79. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script><script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script><script>(function($){$(document).ready(function(){$("a[title]").style_my_tooltips({tip_follows_cursor:true,tip_delay_time:40,tip_fade_speed:150,attribute:"title"});});})(jQuery);</script>
  80.  
  81. <script type="text/javascript"
  82. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  83.  
  84. <script>
  85.  
  86.  
  87.  
  88. $(document).ready(function() {
  89.  
  90. //
  91.  
  92.  
  93.  
  94. //When you click on a link with class of poplight and the href starts with a # 
  95.  
  96. $('a.poplight[href^=#]').click(function() {
  97.  
  98.     var popID = $(this).attr('rel'); //Get Popup Name
  99.  
  100.     var popURL = $(this).attr('href'); //Get Popup href to define size
  101.  
  102.  
  103.  
  104.     //Pull Query & Variables from href URL
  105.  
  106.     var query= popURL.split('?');
  107.  
  108.     var dim= query[1].split('&');
  109.  
  110.     var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  111.  
  112.  
  113.  
  114.     //Fade in the Popup and add close button
  115.  
  116.     $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close">');
  117.  
  118.  
  119.     //Define margin for center alignment (vertical   horizontal) - we add 80px to the height/width to accomodate for the padding  and border width defined in the css
  120.  
  121.     var popMargTop = ($('#' + popID).height() + 80) / 2;
  122.  
  123.     var popMargLeft = ($('#' + popID).width() + 80) / 2;
  124.  
  125.  
  126.  
  127.     //Apply Margin to Popup
  128.  
  129.     $('#' + popID).css({
  130.  
  131.         'margin-top' : -popMargTop,
  132.  
  133.         'margin-left' : -popMargLeft
  134.  
  135.     });
  136.  
  137.  
  138.  
  139.     //Fade in Background
  140.  
  141.     $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  142.  
  143.     $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies 
  144.  
  145.  
  146.  
  147.     return false;
  148.  
  149. });
  150.  
  151.  
  152.  
  153. //Close Popups and Fade Layer
  154.  
  155. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  156.  
  157.     $('#fade , .popup_block').fadeOut(function() {
  158.  
  159.         $('#fade, a.close').remove();  //fade them both out
  160.  
  161.     });
  162.  
  163.     return false;
  164.  
  165. });
  166.  
  167.  
  168.  
  169.  
  170.  
  171. });
  172.  
  173. </script>
  174.  
  175.  
  176.  
  177.  
  178. <script src="http://static.tumblr.com/6hsqxdt/vmwm2rb4g/infinitescrolling.js"></script><script src="http://static.tumblr.com/6hsqxdt/QBym35odk/jquery.masonry.js"></script>
  179.  
  180. <script>
  181. $(function(){
  182. var $container = $('#posts');
  183. $container.imagesLoaded(function(){
  184. $container.masonry({
  185. itemSelector: '.content',
  186. });
  187. });
  188. $container.infinitescroll({
  189. itemSelector : ".content",
  190. navSelector : "div.pagination",
  191. nextSelector : ".pagination a#next",
  192. loadingImg : "",
  193. loadingText : "<em></em>",
  194. bufferPx : 10000,
  195. extraScrollPx: 12000,
  196. },
  197. // trigger Masonry as a callback
  198. function( newElements ) {
  199.   var $newElems = $( newElements ).css({ opacity: 0 });
  200. // ensure that images load before adding to masonry layout
  201. $newElems.imagesLoaded(function(){
  202. $newElems.animate({ opacity: 1 });
  203. $container.masonry( 'appended', $newElems, true );
  204. });
  205. }
  206. );
  207. });
  208. </script>
  209.  
  210. <style type="text/css">
  211.  
  212. ::-webkit-scrollbar {
  213. width:7px;
  214. height:7px;
  215. background-color: #fff;
  216. }
  217. ::-webkit-scrollbar-track {
  218. background-color: #fff;
  219. }
  220. ::-webkit-scrollbar-thumb {
  221. background-color: #000;
  222. border: 1px solid #fff;
  223. }
  224.  
  225. {block:ifInvertedImages}img{
  226. opacity: 1;
  227. filter:alpha(opacity=10);
  228. -moz-opacity: 0.1;
  229. -moz-transition: all .9s ease;
  230. -o-transition: all .9s ease;
  231. transition: all .9s ease;
  232. -webkit-transition: all .9s ease;}
  233. {/block:ifInvertedImages}
  234.  
  235.  
  236. {block:ifInvertedImages} img:hover{
  237. opacity: .8;
  238. filter:alpha(opacity=100);
  239. -moz-opacity: 1;
  240. -moz-transition: all .9s ease;
  241. -o-transition: all .9s ease;
  242. transition: all .9s ease;
  243. -webkit-transition: all .9s ease;}
  244. {/block:ifInvertedImages}
  245.  
  246. {block:ifFadedImages}img{
  247. opacity: .8;
  248. filter:alpha(opacity=10);
  249. -moz-opacity: 0.1;
  250. -moz-transition: all .9s ease;
  251. -o-transition: all .9s ease;
  252. transition: all .9s ease;
  253. -webkit-transition: all .9s ease;}
  254. {/block:ifFadedImages}
  255.  
  256.  
  257. {block:ifFadedImages} img:hover{
  258. opacity: 1;
  259. filter:alpha(opacity=100);
  260. -moz-opacity: 1;
  261. -moz-transition: all .9s ease;
  262. -o-transition: all .9s ease;
  263. transition: all .9s ease;
  264. -webkit-transition: all .9s ease;}
  265. {/block:ifFadedImages}
  266.  
  267. {block:ifInvertedImages}.photo {
  268. opacity: 1;
  269. filter:alpha(opacity=10);
  270. -moz-opacity: 0.1;
  271. -moz-transition: all .9s ease;
  272. -o-transition: all .9s ease;
  273. transition: all .9s ease;
  274. -webkit-transition: all .9s ease;}
  275. {/block:ifInvertedImages}
  276.  
  277.  
  278. {block:ifInvertedImages}.photo:hover{
  279. opacity: .8;
  280. filter:alpha(opacity=100);
  281. -moz-opacity: 1;
  282. -moz-transition: all .9s ease;
  283. -o-transition: all .9s ease;
  284. transition: all .9s ease;
  285. -webkit-transition: all .9s ease;}
  286. {/block:ifInvertedImages}
  287.  
  288. {block:ifFadedImages}.photo {
  289. opacity: .8;
  290. filter:alpha(opacity=10);
  291. -moz-opacity: 0.1;
  292. -moz-transition: all .9s ease;
  293. -o-transition: all .9s ease;
  294. transition: all .9s ease;
  295. -webkit-transition: all .9s ease;}
  296. {/block:ifFadedImages}
  297.  
  298.  
  299. {block:ifFadedImages}.photo:hover{
  300. opacity: 1;
  301. filter:alpha(opacity=100);
  302. -moz-opacity: 1;
  303. -moz-transition: all .9s ease;
  304. -o-transition: all .9s ease;
  305. transition: all .9s ease;
  306. -webkit-transition: all .9s ease;}
  307. {/block:ifFadedImages}
  308.  
  309. iframe#tumblr_controls {-webkit-filter:invert(100%);-moz-filter:invert(100%);-filter:invert(100%);right:3px;-webkit-transition: all 0.4s linear;-moz-transition: all 0.4s linear;transition: all 0.4s linear;}
  310.  
  311. iframe#tumblr_controls:hover{opacity:1;} 
  312.  
  313. html, body, a, a:link {
  314.     {block:ifTinyCursor}
  315.     cursor:url(https://31.media.tumblr.com/bdff266e410c6a626f3d7ba461afff73/tumblr_inline_nb3e1jKNMm1rh7826.png),auto;
  316.     {/block:IfTinyCursor}
  317. }
  318.  
  319. body{background:{color:Background};background-image:url('{image:Background}');background-attachment:fixed;background-repeat:repeat;background-position:center;font-family:arial;font-size:10px;line-height:10px;color:{color:Text};}
  320.  
  321. a {
  322. -webkit-transition: all 0.5s ease-in-out;
  323. -moz-transition: all 0.5s ease-in-out;
  324. -o-transition: all 0.5s ease-in-out;
  325. -ms-transition: all 0.5s ease-in-out;
  326. }
  327.  
  328. a:link, a:active, a:visited{color:{color:Link};text-decoration:none; -webkit-transition: all 0.3s linear;-moz-transition: all 0.3s linear;transition: all 0.3s linear; }
  329.  
  330. a:hover{text-decoration:none;color:{color:Link Hover};{block:ifTinyCursor}cursor:url(https://31.media.tumblr.com/769de35144cf314ac2a3c6cc0f5f369a/tumblr_inline_nb3e1oTcM51rh7826.png),auto;{/block:IfTinyCursor}background:transparent; opacity: .5;} 
  331.  
  332. #s-m-t-tooltip {
  333. font-size:9px;
  334. letter-spacing:0px;
  335. max-width:140px;
  336. line-height:8px;
  337. padding:5px;
  338. margin:15px 10px 10px 15px;
  339. z-index:10;
  340. font-weight: bold;
  341. font-family: ms mincho;
  342. background: #000;
  343. color: #fff;
  344. text-transform:uppercase;
  345. border:4px double #fff;
  346. -webkit-transition: all 0.2s ease-out;
  347. -moz-transition: all 0.2s ease-out;
  348. transition: all 0.2s ease-out;
  349. z-index:999999999999999999;
  350. }
  351.  
  352. #container { 
  353.         position: absolute;
  354.         right: 200px;
  355.         {block:IndexPage}
  356.         {block:if250px}width:250px;{/block:if250px}
  357.         {block:ifNot250px}width:400px;{/block:ifNot250px}
  358.         {/block:IndexPage}
  359.         {block:PermalinkPage}width:250px;{/block:PermalinkPage}
  360. }
  361.  
  362. #content{ 
  363.         {block:if250px}width:250px;{/block:if250px}
  364.         {block:ifNot250px}width:400px;{/block:ifNot250px}
  365.         {block:PermalinkPage}width:250px;{/block:PermalinkPage}
  366. }
  367.  
  368.     small {
  369.         font-size: 10px;
  370.     }
  371.  
  372.     #entry{ 
  373.         margin:0 0 100px 40px;
  374.         text-align: justify;
  375.         {block:if250px}width:250px;{/block:if250px}
  376.         {block:ifNot250px}width:400px;{/block:ifNot250px}
  377.         {block:PermalinkPage}width:250px;{/block:PermalinkPage}
  378.         z-index:1; 
  379.         padding:15px 10px 10px 10px;
  380.         {block:ifWhitePaper}
  381.         {/block:ifWhitePaper}
  382.         {block:ifNotWhitePaper}
  383.         background:url(https://31.media.tumblr.com/ef58e337751a7b3e09dd1ffa7cc7d88a/tumblr_inline_nc6czp1fT51rh7826.png);
  384.         {/block:ifNotWhitePaper}
  385.         border:1px solid rgba(0,0,0,0.3);
  386.         box-shadow:rgba(0,0,0,0.07)7px 7px;
  387.         -webkit-border-bottom-right-radius: 6px;
  388.         -webkit-border-bottom-left-radius: 6px;
  389.         -moz-border-radius-bottomright: 6px;
  390.         -moz-border-radius-bottomleft: 6px;
  391.         border-bottom-right-radius: 6px;
  392.         border-bottom-left-radius: 6px;
  393.         border-top-left-radius: 6px;
  394.         border-top-right-radius: 6px;
  395.         {block:ifAnimation}
  396.         -webkit-animation:ent 5s;  
  397.         animation:ent 5s; 
  398.         {/block:ifAnimation}  
  399.             
  400.     }
  401.     
  402.     @-webkit-keyframes ent {
  403.     0%   {opacity:0;}
  404.     25%  {opacity:1;}  
  405.     }
  406.     
  407.     
  408.         #entry .sp{
  409.             height:14px; 
  410.             {block:if250px}width:270px;{/block:if250px}
  411.             {block:ifNot250px}width:420px;{/block:ifNot250px}
  412.             {block:PermalinkPage}width:250px;{/block:PermalinkPage}
  413.             margin:-24px 0 0 -10px;
  414.             overflow:hidden;
  415.             position:absolute;
  416.         }
  417.  
  418.     #entry img{max-width:100%;} 
  419.  
  420.     #pic a{padding:0 0 0 0;}
  421.     
  422.     #entry #pic{
  423.         overflow:hidden;
  424.         position:relative;
  425.     }
  426.    
  427.     #entry #pic img{
  428.         display:block;
  429.         -webkit-transition: all 0.5s ease-out;
  430.         -moz-transition: all 0.5s ease-out;
  431.         transition: all 0.5s ease-out;
  432.     }
  433.    
  434.     #entry:hover #pic img{
  435.         {block:ifPhotoZoom}
  436.         -webkit-transform: scale(1.10);
  437.         -moz-transform: scale(1.10);
  438.         -o-transform: scale(1.10);
  439.         transform: scale(1.10);
  440.         {/block:ifPhotoZoom}
  441.     }
  442.      
  443.     #entry #pset{
  444.         overflow:hidden;
  445.         display:block;
  446.         -webkit-transition: all 0.5s ease-out;
  447.         -moz-transition: all 0.5s ease-out;
  448.         transition: all 0.5s ease-out;
  449.     filter: url("data:image/svg+xml;utf8,<svg xmlns=’http://www.w3.org/2000/svg’><filter id=’grayscale’><feColorMatrix type=’matrix’ values=’0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0’/></filter></svg>#grayscale");
  450. filter: gray; 
  451. -webkit-filter: grayscale(1);
  452. -webkit-transition: all 0.5s ease-in-out;
  453. -moz-transition: all 0.5s ease-in-out;
  454. -o-transition: all 0.5s ease-in-out;
  455. -ms-transition: all 0.5s ease-in-out;
  456. transition: all 0.5s ease-in-out;
  457. height: auto;
  458.     }
  459.  
  460.    
  461.     #entry:hover #pset{
  462.         {block:ifPhotoZoom}
  463.         -webkit-transform: scale(1.10);
  464.         -moz-transform: scale(1.10);
  465.         -o-transform: scale(1.10);
  466.         transform: scale(1.10);
  467.         {/block:ifPhotoZoom}
  468.     }
  469.  
  470.         #ask {
  471.             padding:10px;
  472.             background:{color:Ask Background};
  473.             color:{color:Ask Text};
  474.         }
  475.  
  476.         .asktri1{
  477.             margin:-6px 0 0 30px;
  478.             color:{color:Ask Background};
  479.             font-size:65px;
  480.             font-family:arial;
  481.         }
  482.  
  483.         .askername{
  484.             position:Absolute;
  485.             margin:-29px 0 0 39px;
  486.         }
  487.  
  488.         .askername a{
  489.             padding:0 0 0 0;
  490.             background:transparent;
  491.             color:{color:Ask Text};
  492.             border-bottom:2px solid {color:Ask Text};
  493.         } 
  494.  
  495.         .askerimg{
  496.             margin-bottom:8px;
  497.         }
  498.  
  499.         .askerimg img{
  500.             width:30px;
  501.             border-radius:30px;
  502.             -webkit-border-radius:30px;
  503.             -moz-border-radius:30px;
  504.         }
  505.  
  506.         #answer{
  507.             margin:10px 15px 20px 15px;
  508.         }
  509.  
  510.  
  511.         h1{
  512.             font-size:20px;
  513.             letter-spacing: -2px;
  514.             line-height:18px;
  515.             text-transform: lowercase;
  516.             margin:0 0 -5px 0;
  517.             font-family:ms mincho;
  518.         }
  519.         
  520.         h2{
  521.             font-size:20px;
  522.             line-height:18px;
  523.             letter-spacing: -2px;
  524.             margin:0 0 5px 0;
  525.             text-transform: lowercase;
  526.             font-family:ms mincho;
  527.         }
  528.         
  529.         .bt{
  530.             margin:0 0 0 0;
  531.         }
  532.         
  533.         .bt a{
  534.             font-size:20px; 
  535.             line-height:25px;
  536.             text-transform:lowercase;
  537.             letter-spacing:0px;
  538.             font-weight:bold;
  539.             font-family:ms mincho; 
  540.         } 
  541.         
  542.         img{
  543.     filter: url("data:image/svg+xml;utf8,<svg xmlns=’http://www.w3.org/2000/svg’><filter id=’grayscale’><feColorMatrix type=’matrix’ values=’0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0’/></filter></svg>#grayscale");
  544. filter: gray; 
  545. -webkit-filter: grayscale(1);
  546. -webkit-transition: all 0.5s ease-in-out;
  547. -moz-transition: all 0.5s ease-in-out;
  548. -o-transition: all 0.5s ease-in-out;
  549. -ms-transition: all 0.5s ease-in-out;
  550. transition: all 0.5s ease-in-out;
  551. height: auto;
  552. }
  553.         
  554.         
  555.         blockquote{
  556.             padding-left:10px;
  557.             margin:0 0 0 15px;
  558.             border-left:2px solid {color:Link};
  559.         }
  560.  
  561.         p {
  562.             margin:10px 0 10px 0;
  563.         }
  564.  
  565.         .ol, ul {
  566.             margin-left:30px;
  567.             padding:5px;
  568.         }
  569.  
  570.         .ul {
  571.             list-style-type:square;
  572.         }
  573.  
  574.         .chat .line{
  575.             padding: 2px;
  576.         }
  577.  
  578.         .chat .line .odd{
  579.             padding:2px;
  580.             color:{color:Ask Text};
  581.             background:{color:Ask Background};
  582.         }
  583.  
  584.         .label {
  585.             font-weight:bold;
  586.         }
  587.  
  588.         .audioplayer{
  589.             padding:10px;
  590.             background:black;
  591.             opacity:.8;
  592.         }
  593.         
  594.         .audioinfo{
  595.             border-top:1px solid rgba(255,255,255,.8);
  596.             padding:10px;
  597.             background:black;
  598.             color:white;
  599.             opacity:.8;
  600.         }
  601.  
  602.         #entry #permalink{ 
  603.             position:relative;
  604.             margin:10px 0 0 0; 
  605.             opacity:1;
  606.             line-height: 20px;
  607.             /*belldom is real*/
  608.             -webkit-transition: all 0.7s linear;
  609.             -moz-transition: all 0.7s linear;
  610.             transition: all 0.7s linear;
  611.             z-index:1;
  612.         } 
  613.         
  614.         .com:last-child{display:none;}
  615.  
  616.         .notes img{
  617.             width:10px;
  618.             position:left;
  619.             margin:3px 5px 0 0; 
  620.             -webkit-border-radius:10px;
  621.             -moz-border-radius:10px;
  622.             border-radius:10px;
  623.         }
  624.  
  625.         .notes {
  626.             line-height:25px;
  627.         }
  628.         
  629.         .notes a{
  630.             border-bottom:0px;
  631.             background:transparent;
  632.         }
  633.  
  634.         #side{
  635.             position:fixed; 
  636.             width:135px;
  637.             margin:0px 0 0 -160px;
  638.             {block:ifAnimation}
  639.             -webkit-animation:si 5s;  
  640.             animation:so 5s; 
  641.             {/block:ifAnimation}  
  642.             z-index:1; 
  643.     }
  644.     
  645.     @-webkit-keyframes si {
  646.     0%   {opacity:0;}
  647.     25%  {opacity:1;}  
  648.     }
  649.     
  650.         .nte{
  651.             margin:0 0 30px 0;
  652.             padding:10px;
  653.             {block:ifWhitePaper}
  654.             background:url(https://31.media.tumblr.com/905e072082d7e170a96e198cf24af6d9/tumblr_inline_nc4ltqDhD21rh7826.png);
  655.             {/block:ifWhitePaper}
  656.             {block:ifNotWhitePaper}
  657.             background:url(https://31.media.tumblr.com/ef58e337751a7b3e09dd1ffa7cc7d88a/tumblr_inline_nc6czp1fT51rh7826.png);
  658.             {/block:ifNotWhitePaper}
  659.             border:1px solid rgba(0,0,0,0.3);
  660.             box-shadow:rgba(0,0,0,0.07)7px 7px;
  661.             -webkit-border-bottom-right-radius: 6px;
  662.             -webkit-border-bottom-left-radius: 6px;
  663.             -moz-border-radius-bottomright: 6px;
  664.             -moz-border-radius-bottomleft: 6px;
  665.             border-bottom-right-radius: 6px;
  666.             border-bottom-left-radius: 6px;
  667.         }
  668.     
  669.         .nte .spi{
  670.             height:14px;
  671.             width:134px;
  672.             margin:-19px 0 0 -10px;
  673.             overflow:hidden;
  674.             position:absolute;
  675.             background:url(https://31.media.tumblr.com/89d0a73dbfd39d6e6dfcd157efacf73a/tumblr_inline_nc4ltugMJI1rh7826.png);
  676.         }
  677.         
  678.         .nav{
  679.             line-height:20px;
  680.         }
  681.  
  682. #pgs{    
  683.     
  684. }
  685.  
  686. #pgs a{  
  687.     margin:0 1px 0 1px;
  688. }
  689.  
  690.  
  691. #music{
  692. top: 5px;
  693. left: 5px;
  694. overflow: hidden;
  695. position: fixed;
  696. height: 20px;
  697. width: 24px;
  698. z-index: 999;
  699.  
  700. #aboutmarci {
  701.     position: fixed;
  702.     bottom: 200px;
  703.     font-size:27px;
  704.     letter-spacing: -2px;
  705.     font-family:ms mincho;
  706.     z-index: 1;
  707.     line-height: 23px;
  708.     width: 150px;
  709.     right: 750px;
  710.     font-weight: bold;
  711.     text-transform: lowercase;
  712. }
  713.  
  714. #desc {
  715.     position: fixed;
  716.     bottom: 185px;
  717.     font-family: ms mincho;
  718.     font-size:12px;
  719.     line-height:10px;
  720.     right: 756px;
  721. }    
  722.  
  723.  
  724. #marci {
  725.     position: fixed;
  726.     bottom: 0px;
  727.     right: 420px;
  728.     z-index: -1;
  729. }
  730.  
  731. #marci img {
  732.     width: 450px;
  733. }
  734.  
  735. #hand {
  736.     position: fixed;
  737.     bottom: 175px;
  738.     right: 712px;
  739.     z-index: 2;
  740. }
  741.  
  742. #hand img {
  743.     width: 65px;
  744. }
  745.  
  746.  
  747. #ultraviolence {
  748.     position: fixed;
  749.     bottom: 125px;
  750.     font-family: arial;
  751.     font-size:10px;
  752.     line-height:11px;
  753.     right: 721px;
  754.     height: auto;
  755.     width: 150px;
  756.     border-left: 4px #000 double;
  757.     padding-left: 8px;
  758.     font-size: 9px;
  759.  
  760.  
  761. #circlel {
  762.     right: 898px;
  763.     bottom: 170px;
  764.     position: fixed;
  765. }
  766.  
  767. #linkx1{
  768.     margin-top: -8px;
  769.     width:8px;
  770.     height:8px;
  771.     background-color: #191919;
  772.     border-radius: 100px;
  773.     position:absolute;
  774. }
  775.  
  776. #linkx1 a{
  777.     width:8px;
  778.     height:8px;
  779.     background-color: #191919;
  780.     border-radius: 100px;
  781.     position:absolute;
  782.     -webkit-transition: 2s ease;
  783.     -moz-transition: 2s ease;
  784.     transition: 2s ease;
  785. }
  786.  
  787. #linkx2{
  788.     margin-top: 3px;
  789.     width:8px;
  790.     height:8px;
  791.     background-color: #191919;
  792.     border-radius: 100px;
  793.     position:absolute;
  794. }
  795.  
  796. #linkx2 a{
  797.     width:8px;
  798.     height:8px;
  799.     background-color: #191919;
  800.     border-radius: 100px;
  801.     position:absolute;
  802.     -webkit-transition: 2s ease;
  803.     -moz-transition: 2s ease;
  804.     transition: 2s ease;
  805. }
  806.  
  807. #linkx3{
  808.     margin-top: 14px;
  809.     width:8px;
  810.     height:8px;
  811.     background-color: #191919;
  812.     border-radius: 100px;
  813.     position:absolute;
  814. }
  815.  
  816. #linkx3 a{
  817.     width:8px;
  818.     height:8px;
  819.     background-color: #191919;
  820.     border-radius: 100px;
  821.     position:absolute;
  822.     -webkit-transition: 2s ease;
  823.     -moz-transition: 2s ease;
  824.     transition: 2s ease;
  825. }
  826.  
  827. #linkx4{
  828.     margin-top: 25px;
  829.     width:8px;
  830.     height:8px;
  831.     background-color: #191919;
  832.     border-radius: 100px;
  833.     position:absolute;
  834. }
  835.  
  836. #linkx4 a{
  837.     width:8px;
  838.     height:8px;
  839.     background-color: #191919;
  840.     border-radius: 100px;
  841.     position:absolute;
  842.     -webkit-transition: 2s ease;
  843.     -moz-transition: 2s ease;
  844.     transition: 2s ease;
  845. }
  846.  
  847. #linkx5{
  848.     margin-top: 36px;
  849.     width:8px;
  850.     height:8px;
  851.     background-color: #191919;
  852.     border-radius: 100px;
  853.     position:absolute;
  854. }
  855.  
  856. #linkx5 a{
  857.     width:8px;
  858.     height:8px;
  859.     background-color: #191919;
  860.     border-radius: 100px;
  861.     position:absolute;
  862.     -webkit-transition: 2s ease;
  863.     -moz-transition: 2s ease;
  864.     transition: 2s ease;
  865. }
  866.  
  867. #linkx6{
  868.     margin-left: 180px;
  869.     margin-top: 67px;
  870.     width:10px;
  871.     height:10px;
  872.     background-color: #191919;
  873.     border-radius: 100px;
  874.     position:absolute;
  875. }
  876.  
  877. #linkx6 a{
  878.     width:13px;
  879.     height:13px;
  880.     background-color: #191919;
  881.     border-radius: 100px;
  882.     position:absolute;
  883.     -webkit-transition: 2s ease;
  884.     -moz-transition: 2s ease;
  885.     transition: 2s ease;
  886. }
  887.  
  888. #fade { /*--Transparent background layer--*/
  889. display: none; /*--hidden by default--*/
  890. position: fixed; left: 0; top: 0px;
  891. width: 100%; height: 100%;
  892. }
  893.  
  894. .popup_block{
  895. z-index: 999;
  896. display: none; /*--hidden by default--*/
  897. background-color: #fff;
  898. padding: 10px;
  899. width: 800px;
  900. height: 105px;
  901. overflow-y:auto;
  902. overflow-x:hidden;
  903. float: left;
  904. border-left: 4px #000 double;
  905. color: #000;
  906. font-family: arial;
  907. font-size:9px;
  908. line-height: 8px;
  909. letter-spacing:0px;
  910. position: fixed; 
  911. bottom: 50px; 
  912. right: 728px;
  913. transition: all 0.4s ease-in;
  914. -o-transition-transition: all 0.4s ease-in;
  915. -webkit-transition: all 0.4s ease-in; 
  916. -moz-transition: all 0.4s ease-in;
  917. /*--CSS3 Box Shadows--*/
  918. -webkit-box-shadow: 0px 0px 0px #f3eff0;
  919. -moz-box-shadow: 0px 0px 0px #f3eff0;
  920. box-shadow: 0px 0px 0px #f3eff0;
  921. /*--CSS3 Rounded Corners--*/
  922. }
  923.  
  924.  
  925. .popup_block a{
  926. color: #000;
  927. -webkit-transition: all .7s ease;
  928. -moz-transition: all .7s ease;
  929. -o-transition: all .7s ease;
  930. transition: all .7s ease;
  931. text-decoration: none;
  932.  
  933. }
  934.  
  935. .popup_block a:hover{
  936.     opacity: .5;
  937. }
  938.  
  939. .popup_block i{
  940. color: #000;
  941. }
  942.  
  943. img.btn_close {
  944. float: right;
  945. margin: -20 -20px 0 0;
  946. }
  947. /*--Making IE6 Understand Fixed Positioning--*/
  948. *html #fade {
  949. position: absolute;
  950. }
  951. *html .popup_block {
  952. position: absolute;
  953. }
  954.  
  955.  
  956. .popup_block:hover{
  957. opacity:1;
  958. -webkit-transition: all .7s ease;
  959. -moz-transition: all .7s ease;
  960. -o-transition: all .7s ease;
  961. transition: all .7s ease;
  962. }
  963.  
  964.  
  965. .popup_block2{
  966. z-index: 999;
  967. display: none; /*--hidden by default--*/
  968. background-color: transparent;
  969. padding: 10px;
  970. width: 800px;
  971. height: 100px;
  972. overflow-y:auto;
  973. overflow-x:hidden;
  974. float: left;
  975. color: #000;
  976. font-family: arial;
  977. font-size:9px;
  978. line-height: 9px;
  979. letter-spacing:0px;
  980. position: fixed; 
  981. bottom: 140px; 
  982. left: 990px;
  983. transition: all 0.4s ease-in;
  984. -o-transition-transition: all 0.4s ease-in;
  985. -webkit-transition: all 0.4s ease-in; 
  986. -moz-transition: all 0.4s ease-in;
  987. /*--CSS3 Box Shadows--*/
  988. -webkit-box-shadow: 0px 0px 0px #f3eff0;
  989. -moz-box-shadow: 0px 0px 0px #f3eff0;
  990. box-shadow: 0px 0px 0px #f3eff0;
  991. /*--CSS3 Rounded Corners--*/
  992. }
  993.  
  994.  
  995. {CustomCSS}
  996. </style>
  997.  
  998. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" /><meta name="viewport" content="width=820" />
  999. {block:ifLazyLoad}
  1000. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/8mXm7q8vn/jquery.js"></script>
  1001. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/ogWm7q8w1/lazyload.js"></script>
  1002. <script type="text/javascript" charset="utf-8">
  1003. var $j = jQuery.noConflict();
  1004. $j(function() {
  1005. if (navigator.platform == "iPad" || navigator.platform == "iPhone") return;
  1006. $j("img").lazyload({
  1007. placeholder : "http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif",
  1008. effect: "fadeIn",
  1009. });
  1010. });
  1011. </script>
  1012. {/block:ifLazyLoad}
  1013.  
  1014. </head>
  1015. <body>
  1016. <div id="container">
  1017.  
  1018. <br><br><br><br><br><br>
  1019. <div id="container">
  1020. {block:ifNotInfiniteScrolling}
  1021. {block:IndexPage}
  1022. <div class="nte">
  1023. <div class="spi"></div>
  1024. <div id="pgs">
  1025. {block:Pagination}
  1026. {block:PreviousPage} <a href="{PreviousPage}">«</a>{/block:PreviousPage}
  1027. {CurrentPage} / {TotalPages}
  1028. {/block:JumpPagination}
  1029. {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}
  1030. {/block:Pagination}
  1031. </div>
  1032. </div>
  1033. {/block:IndexPage}
  1034. {/block:ifNotInfiniteScrolling}
  1035. </div>
  1036.  
  1037.  
  1038. <div id="content">
  1039.  
  1040. {block:Posts}
  1041. <div id="entry">
  1042. <div class="sp"></div>
  1043.  
  1044. {block:Answer}
  1045. <div id="ask">
  1046. <div class="askerimg"><img src="{AskerPortraitURL-128}"></div>
  1047. <span class="askername"> {Asker} asked:</span>
  1048. <span style="padding-left:3px;padding-right:3px;">{Question}</span>
  1049. </div>
  1050. <div class="asktri1">▾</div> 
  1051. <div id="answer">{Answer}</div>
  1052. {/block:Answer}
  1053.  
  1054. {block:Text}
  1055. {block:Title}
  1056. <h1>{Title}</h1>
  1057. {/block:Title}
  1058. {Body}
  1059. {/block:Text}
  1060.  
  1061. {block:Link}
  1062. <h1><a href="{URL}">{Name} »</a></h1>
  1063. {block:Description}{Description}{/block:Description}
  1064. {/block:Link}
  1065.  
  1066. {block:Photo} 
  1067. <div id="pic"> 
  1068. <a href="{permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"></a>
  1069. </div>  
  1070. {block:ifCaptions}
  1071. {block:Caption}{Caption}{/block:Caption}
  1072. {/block:ifCaptions}
  1073. {block:ifNotCaptions}
  1074. {block:PermalinkPage}
  1075. {block:Caption}{Caption}{/block:Caption}
  1076. {/block:PermalinkPage}
  1077. {/block:ifNotCaptions}
  1078. {block:ContentSource}
  1079. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  1080. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  1081. {/block:SourceLogo}
  1082. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  1083. {/block:ContentSource}
  1084. {block:ReblogParentURL}
  1085. <!-- {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  1086. {/block:ReblogParentURL}
  1087. {/block:Photo}
  1088.  
  1089. {block:Photoset}
  1090. <div class="photo">
  1091. <center>
  1092. <div id="pic">
  1093. {block:IndexPage}  
  1094. {block:if250px}<div id="pset">{Photoset-250}</div>{/block:if250px}
  1095. {block:ifNot250px}<div id="pset">{Photoset-400}</div>{/block:ifNot250px}
  1096. {/block:IndexPage}
  1097. {block:PermalinkPage}
  1098. <div id="pset">{Photoset-250}</div>
  1099. {/block:PermalinkPage}
  1100. </div>
  1101. </center>
  1102. </div>
  1103. {block:ifCaptions}
  1104. {block:Caption}{Caption}{/block:Caption}
  1105. {/block:ifCaptions}
  1106. {block:ifNotCaptions}
  1107. {block:PermalinkPage}
  1108. {block:Caption}{Caption}{/block:Caption}
  1109. {/block:PermalinkPage}
  1110. {/block:ifNotCaptions}
  1111. {/block:Photoset}
  1112.  
  1113. {block:Quote}
  1114. <h2>"{Quote}"</h2>
  1115. {block:Source}
  1116. <i> - {Source}</i>
  1117. {/block:Source}
  1118. {/block:Quote}
  1119.  
  1120. {block:Chat}
  1121. {block:Title}
  1122. <div class="posttitle">
  1123. {Title}
  1124. </div>
  1125. {/block:Title}
  1126. <div class="chat">
  1127. {block:Lines}
  1128. <div class="chat">
  1129. <div class="line {Alt}">
  1130. <div class="{Alt} user_{UserNumber}">
  1131. {block:Label}
  1132. <b>{Label} </b>
  1133. {/block:Label}
  1134. {Line}
  1135. </div>
  1136. </div>
  1137. </div>
  1138. {/block:Lines}
  1139. </div>
  1140. {/block:Chat}
  1141.  
  1142. {block:Audio} 
  1143. {block:AlbumArt}
  1144. <img src="{AlbumArtURL}">
  1145. {/block:AlbumArt}
  1146. {block:AudioPlayer} 
  1147. <div class="audioplayer">
  1148. {AudioPlayerBlack}
  1149. </div> 
  1150. {/block:AudioPlayer}
  1151. {block:TrackName}
  1152. <div class="audioinfo">
  1153. Song : {TrackName}
  1154. </div>
  1155. {/block:TrackName}
  1156. {block:Artist}
  1157. <div class="audioinfo">
  1158. Artist : {Artist}
  1159. </div>
  1160. {/block:Artist}
  1161. {block:Album}
  1162. <div class="audioinfo">
  1163. Album : {Album}
  1164. </div>
  1165. {/block:Album}
  1166. {block:Caption}{Caption}{/block:Caption}
  1167. {/block:Audio}
  1168.  
  1169. {block:Video}
  1170. <div class="photo">
  1171. <center>
  1172. {block:IndexPage}
  1173. {block:if250px}{Video-250}{/block:if250px}
  1174. {block:ifNot250px}{Video-400}{/block:ifNot250px}
  1175. {/block:IndexPage}
  1176. {block:PermalinkPage}
  1177. {Video-250}
  1178. {/block:PermalinkPage}
  1179. </center>
  1180. </div>
  1181. {block:ifCaptions}
  1182. {block:Caption}{Caption}{/block:Caption}
  1183. {/block:ifCaptions}
  1184. {block:ifNotCaptions}
  1185. {block:PermalinkPage}
  1186. {block:Caption}{Caption}{/block:Caption}
  1187. {/block:PermalinkPage}
  1188. {/block:ifNotCaptions}
  1189. {/block:Video}
  1190.  
  1191. {block:IndexPage}
  1192. <div id="permalink" style= "font-family: ms mincho; font-weight: bold;">
  1193. <a title="{TimeAgo}"href="{Permalink}">{NoteCount} NOTES</a> {block:HasTags} ∙ <a title= "Tags: {block:Tags} #{Tag} {/block:Tags}">TAGS</a>
  1194. <span style="float:right;"><a href="{ReblogURL}" target="_blank" class="details">↻ R</a></span>  
  1195. {block:HasTags}
  1196. <br>
  1197. </span>
  1198.  
  1199. </div>
  1200. {/block:IndexPage}
  1201.  
  1202. {block:PermalinkPage}
  1203. {block:Date}
  1204. <div id="permalinkpg"> 
  1205. <div id="permalink">
  1206. <b>Posted:</b> {TimeAgo} on
  1207. {ShortMonth} {DayofMonth},{Year} at
  1208. {12Hour}:{Minutes} {CapitalAmPm}
  1209. {block:NoteCount}<br>
  1210. <b>Notes:</b>
  1211. {NoteCount}
  1212. {/block:NoteCount}
  1213. {block:HasTags}
  1214. <br>
  1215. <b>Tags:</b>
  1216. {block:Tags}<a href="{TagURL}">#{Tag}</a>&nbsp;
  1217. {/block:Tags}
  1218. {/block:HasTags}
  1219. <br>{block:RebloggedFrom}
  1220. <b>Via:</b> <a href="{ReblogParentURL}" target="_blank">{ReblogParentName}</a><br> <b>Src:</b> <a href="{ReblogRootURL}" target="_blank">{ReblogRootName}</a>  {/block:RebloggedFrom}
  1221. </div>
  1222. {block:PostNotes}
  1223. {PostNotes}
  1224. {/block:PostNotes}
  1225. </div> 
  1226. {/block:Date}
  1227. {/block:PermalinkPage}
  1228.  
  1229. </div>
  1230. {/block:Posts}
  1231.  
  1232. </div> 
  1233.  
  1234.  
  1235. {block:ifInfiniteScrolling}
  1236. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  1237. {/block:ifInfiniteScrolling}
  1238.  
  1239.  
  1240.  
  1241. <div id= "music"><object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" width="200" height="20">
  1242.     <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" />
  1243.     <param name="bgcolor" value="#ffffff"/>
  1244.     <param name="FlashVars" value="mp3=https://a.tumblr.com/tumblr_myj81cP9E71skw2d6o1.mp3#_=_
  1245. &amp;loop=1&amp;autoplay=1&amp;showslider=0&amp;loadingcolor=0d0d0d&amp;bgcolor=ffffff&amp;bgcolor1=ffffff&amp;bgcolor2=ffffff&amp;slidercolor1=000000&amp;slidercolor2=000000&amp;sliderovercolor=ffffff&amp;buttoncolor=000000&amp;buttonovercolor=000000&amp;textcolor=000000" /></object></div>
  1246. <div id= "hand"><img src= "http://static.tumblr.com/aact7gw/lLdndbz1z/handddd.gif"></div>
  1247. <div id= "aboutmarci">my name is marcelline</div>
  1248. <div id= "desc">and i'm a fortuneteller.<br>
  1249. </div>
  1250.  
  1251. <div id= "marci"><img src= "http://static.tumblr.com/aact7gw/FQwndbq6x/marcey.png"></div>
  1252. <div id="ultraviolence">
  1253. i find my zenith doth depend<br>upon a most auspicious star, whose influence if now i court not but omit, my fortunes will ever after droop.<br>
  1254. - W. Shakespeare
  1255. </div> 
  1256.  
  1257. <div id= "circlel">
  1258. <a href= "/about" title= "about"><div id= "linkx1"></div></a>
  1259. <a href= "/ask" title= "enquire"><div id= "linkx2"></div></a>
  1260. <a href= "/submit" title= "submit"><div id= "linkx3"></div></a>  
  1261. <a href= "/read" title= "read"><div id= "linkx4"></div></a>  
  1262. <a href= "/" title= "index"><div id= "linkx5"></div></a> 
  1263. </div>
  1264.  
  1265.  
  1266. <div style="position:fixed;bottom:0;right:0;padding-right:20px;padding-bottom:10px; font-family: ms mincho; font-weight: bold;"><script language="JavaScript"> 
  1267. var ref = (''+document.referrer+'');
  1268. var w_h = window.screen.width + " x " + window.screen.height;
  1269. document.write('<script src="http://freehostedscripts.net/ocounter.php?site=ID4468075&e1=&e2=&r=' + ref + '&wh=' + w_h + '"><\/script>'); 
  1270. </script> <a title="theme by tomkirk" style="background:transparent;"href="http://tomkirk.tumblr.com/">▲</a> <script language="JavaScript" src="http://freehostedscripts.net/ocount.php?site=ID2721003&name="></script>
  1271. </div>
  1272. </body>
  1273. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement