Advertisement
fn-themes

THEME-58 *--------*

Apr 30th, 2013
824
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 32.89 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  2. "http://www.w3.org/TR/html4/loose.dtd">
  3. <html lang="en">
  4. <head>
  5. <!---------------------------------------fonts------------>
  6. <link href='http://fonts.googleapis.com/css?family=Annie+Use+Your+Telescope' rel='stylesheet' type='text/css'>
  7. <link href='http://fonts.googleapis.com/css?family=Advent+Pro' rel='stylesheet' type='text/css'>
  8. <link href='http://fonts.googleapis.com/css?family=Average+Sans' rel='stylesheet' type='text/css'>        
  9. <link href='http://fonts.googleapis.com/css?family=Qwigley' rel='stylesheet' type='text/css'>        
  10. <link href='http://fonts.googleapis.com/css?family=ABeeZee|Kameron|Muli|Almendra' rel='stylesheet' type='text/css'>
  11. <link href='http://fonts.googleapis.com/css?family=Give+You+Glory' rel='stylesheet' type='text/css'>
  12. <link href='http://fonts.googleapis.com/css?family=Swanky+and+Moo+Moo' rel='stylesheet' type='text/css'>
  13.  <link href='http://fonts.googleapis.com/css?family=Lovers+Quarrel' rel='stylesheet' type='text/css'>
  14. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  15. <link href='http://fonts.googleapis.com/css?family=Oregano' rel='stylesheet' type='text/css'>
  16.  <link href='http://fonts.googleapis.com/css?family=Quantico' rel='stylesheet' type='text/css'>
  17.  <link href='http://fonts.googleapis.com/css?family=Tangerine:400,700' rel='stylesheet' type='text/css'>
  18.  <link href='http://fonts.googleapis.com/css?family=Average+Sans' rel='stylesheet' type='text/css'>
  19.  <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  20.  
  21. <!------------------------- SCRIPTS ---------------------------->
  22. <script type="text/javascript"
  23. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  24.  
  25. <script>
  26.  
  27.  
  28.  
  29. $(document).ready(function() {
  30.  
  31.     //
  32.  
  33.  
  34.  
  35. //When you click on a link with class of poplight and the href starts with a #
  36.  
  37. $('a.poplight[href^=#]').click(function() {
  38.  
  39.     var popID = $(this).attr('rel'); //Get Popup Name
  40.  
  41.     var popURL = $(this).attr('href'); //Get Popup href to define size
  42.  
  43.  
  44.  
  45.     //Pull Query & Variables from href URL
  46.  
  47.   var query= popURL.split('?');
  48.  
  49.     var dim= query[1].split('&');
  50.  
  51.     var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  52.  
  53.  
  54.  
  55.     //Fade in the Popup and add close button
  56.  
  57.     $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="Close Window" alt="Close" /></a>');
  58.  
  59.  
  60.     //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
  61.  
  62.     var popMargTop = ($('#' + popID).height() + 80) / 2;
  63.  
  64.     var popMargLeft = ($('#' + popID).width() + 80) / 2;
  65.  
  66.  
  67.  
  68.     //Apply Margin to Popup
  69.  
  70.     $('#' + popID).css({
  71.  
  72.         'margin-top' : -popMargTop,
  73.  
  74.         'margin-left' : -popMargLeft
  75.  
  76.     });
  77.  
  78.  
  79.  
  80.     //Fade in Background
  81.  
  82.     $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  83.  
  84.     $('#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
  85.  
  86.  
  87.  
  88.     return false;
  89.  
  90. });
  91.  
  92.  
  93.  
  94. //Close Popups and Fade Layer
  95.  
  96. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  97.  
  98.     $('#fade , .popup_block').fadeOut(function() {
  99.  
  100.         $('#fade, a.close').remove();  //fade them both out
  101.  
  102.     });
  103.  
  104.     return false;
  105.  
  106. });
  107.  
  108. });
  109.  
  110. </script>
  111. <script>
  112. function click() {
  113. if (event.button==2||event.button==3) {
  114. oncontextmenu='return false';
  115. }
  116. }
  117. document.onmousedown=click
  118. document.oncontextmenu = new Function("return false;")
  119. </script>
  120. <script type="text/javascript" language="Javascript">
  121. <!-- Begin
  122. document.oncontextmenu = function(){return false}
  123. // End -->
  124. </script>
  125.  
  126. <script type="text/javascript">
  127. function disableSelection(target){
  128. if (typeof target.onselectstart!="undefined") //IE route
  129. target.onselectstart=function(){return false}
  130. else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
  131. target.style.MozUserSelect="none"
  132. else //All other route (ie: Opera)
  133. target.onmousedown=function(){return false}
  134. target.style.cursor = "default"
  135. }
  136. </script>
  137.  
  138. <script type="text/javascript">
  139.  
  140. jQuery(document).ready(function() {
  141.  
  142. jQuery(".content").hide();
  143.  
  144. //toggle the componenet with class msg_body
  145.  
  146. jQuery(".heading").click(function()
  147.  
  148. {
  149.  
  150. jQuery(this).next(".content").slideToggle(500);
  151.  
  152. });});
  153.  
  154. </script>
  155.  
  156. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  157. <!--[if IE]>
  158.       <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  159.   <![endif]-->
  160.  
  161.     <link rel="stylesheet" type="text/css" href="http://static.tumblr.com/fxpo5zq/XZum5p9k0/standard.css">
  162.    
  163.  
  164. <!-- aparencia -->
  165. <meta name="color:text" content="#777" />
  166. <meta name="color:descr" content="#777" />
  167. <meta name="color:link" content="#696969"/>
  168. <meta name="color:links" content="#696969"/>
  169. <meta name="color:border" content="#bebebe"/>
  170. <meta name="color:background" content="#ffffff"/>
  171. <meta name="color:scrollbar" content="#000000"/>
  172. <meta name="color:hover" content="#ffb000">
  173. <meta name="if:ScrollInfinito" content="1">
  174.  
  175. <meta name="image:background" content=""/>
  176. <meta name="image:sidebarimagem1" content="http://static.tumblr.com/c56e7e920f2558ff3f11b00994ac100b/yhfuno6/6cemm346u/tumblr_static_tumblr_mc7n0lsben1qhbwvyo1_500.jpg"/>
  177.  
  178. <meta name="text:link 1 nome" content="link 1" />
  179. <meta name="text:link 1" content="/" />
  180. <meta name="text:link 2 nome" content="link 2" />
  181. <meta name="text:link 2" content="/" />
  182. <meta name="text:link 3 nome" content="link 3" />
  183. <meta name="text:link 3" content="/" />
  184. <meta name="text:link 4 nome" content="link 4" />
  185. <meta name="text:link 4" content="/" />
  186. <meta name="text:link 5 nome" content="link 5" />
  187. <meta name="text:link 5" content="/" />
  188. <meta name="text:frase" content="MELANCOLIC" />
  189.  
  190. <!-- fim da aparencia -->
  191.  
  192. <title>{Title}</title>
  193. <link rel="shortcut icon" href="{Favicon}">
  194. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  195.  
  196. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  197.  
  198. <style type="text/css">
  199. body {background:{color:background} url({image:background}); background-repeat: repeat; background-attachment: fixed; line-height:130%;
  200. font-family:calibri; font-size:11px; color:{color:text};}
  201.  
  202. a:link, a:active, a:visited { color:{color:Links}; text-decoration: none;}
  203.  
  204. a:hover {; text-decoration: none;}
  205.  
  206.  
  207. #content { margin-left:400px;padding:0px;width:911px;margin-top:0px;}
  208.  
  209. #contain {height:100%; padding-left:10px; padding-right:10px; width: 1100px; margin: 0px auto; position: absolute;}
  210.  
  211. #fuckme { height:100%; padding-left:10px; padding-right:10px; width: 1100px; margin: 0px auto; position: relative;}
  212.        
  213. #vocemefaztaobem {width: 250px; position: fixed; margin-top: 140px;  background:{color:background}; padding: 3px;}
  214.  
  215.  
  216.  
  217. #sidebar { width: 220px; position: fixed; margin-top: 140px; ; padding: 2px;}
  218.  
  219.  
  220.  /************ QUOTES ***************/
  221. .xquote { text-align: justify;; font-size: 11px; font-family: 'muli'; line-height: 15px; padding: px;margin-left: 2px;margin-bottom:0px;padding-top:5px;}
  222. .xquote:first-letter{font-family: 'annie use your telescope'; font-size: 20px;line-height:12px;}
  223. .xqsource {text-align: left;; text-transform: none; font-size: 11px; font-family:Average Sans; margin-right:px;}
  224. .xqsource a, a:hover{text-transform: none;}
  225.  
  226.  
  227. .image {text-align: center; border: 0px;}
  228. .image img {max-width: 250px;opacity:1; border-radius:2px;}
  229.  
  230.  
  231. .entry {float: left;
  232. {block:indexpage}
  233. width: 250px;
  234. margin: 5px;
  235. {/block:indexpage}
  236. display: block; padding: 2px;
  237. position: relative;}
  238.  
  239. .entry img {; opacity:1}
  240.  
  241. .permalinkhehe {opacity: 0.0; filter: alpha(opacity = 0); position:absolute; z-index:9999991; bottom: 0px; right: 7px;}
  242.  
  243. .entry:hover .permalinkhehe {-webkit-transition: opacity 0.4s linear; opacity: 1; -moz-transition: all 0.4s linear; transition: all 0.4s linear; filter: alpha(opacity = 100);}
  244.  
  245.  
  246. /*********************** LIKE, REBLOG E NOTES*/
  247. .likeyoubaby {width: 21px; height: 20px; overflow: hidden; z-index: 9999999; display: inline-block; }
  248. .likeyoubaby a {background-image: url("http://static.tumblr.com/uiqhh9x/BPnlzww8v/like.png"); background-position: 0px 0px; display: block;
  249. z-index: 9999999; webkit-transition: all 0s linear; -webkit-transition: all 0s linear; -moz-transition: all 0s linear; transition: all 0s linear;}
  250. .likeyoubaby img {width: 21px;height: 20px; webkit-transition: all 0.2s linear; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; transition: all 0.2s linear;}
  251. .likeyoubaby a:hover {background-position: 0px 0px;}
  252.  
  253. .reblog {width: 24px; height: 20px; overflow: hidden; z-index: 9999999; display: inline-block;}    
  254. .reblog img{ width: 24px; height: 20px; line-height: 30px; display: inline;}
  255.  
  256. .notas { display: inline-block; background: url("http://static.tumblr.com/uiqhh9x/X6Ym17xp2/middle.png"); height: 20px; font-size: 11px;
  257. line-height: 20px; color: #fff; padding-left: 4px; padding-right: 4px; -moz-border-radius: 2px; border-radius:  2px; bottom: 6px; position: relative; letter-spacing:0px;}
  258. .notas:hover , .reblog:hover, .likeyoubaby:hover {opacity: 1!important; filter: alpha(opacity = 100)!important;}
  259. .notas a{color: #fff; font-family: helvetica;}
  260.  .entry:hover .notas, .entry:hover .reblog, .entry:hover .likeyoubaby {opacity: 0.8;filter: alpha(opacity = 80);}
  261.  
  262.  
  263. /****************** PAGINA, CHAT, CONTROLES E NOTES OCULTO*/
  264. #pagination {display:none;}
  265.  
  266. ul.chat, .chat ol, .chat li {list-style:none; margin:0px; padding:2px; }
  267.  
  268. ol.notes { padding: 0px; margin: 25px 0px; list-style-type:decimal; border-bottom: solid 1px #ccc; }
  269.  
  270. ol.notes li.note { border-top: solid 1px #ccc; padding: 2px;}
  271.  
  272. ol.notes li.note img.avatar {margin-right: 10px; width:0px; height: 0px;}
  273.  
  274. iframe input, iframe submit, iframe textarea, iframe div, iframe table {background-color:transparent!important;}
  275.  
  276. iframe#tumblr_controls {
  277.     right:3px !important;
  278.     position: fixed !important;
  279.     -webkit-transition: opacity 0.7s linear;
  280.     opacity: 0.5;
  281.     -webkit-transition: all 0.8s ease-out;
  282.     -moz-transition: all 0.8s ease-out;
  283.     transition: all 0.8s ease-out;}
  284.  
  285. iframe#tumblr_controls:hover {
  286.     -webkit-transition: opacity 0.7s linear;
  287.     opacity: 1;
  288.     -webkit-transition: all 0.4s ease-out;
  289.     -moz-transition: all 0.4s ease-out;
  290.     transition: all 0.4s ease-out;}
  291.  
  292.  @font-face {
  293.     font-family: 'nymeria';
  294.     src: url('http://static.tumblr.com/yhfuno6/KRomm37xe/nymeria.ttf');
  295.     }
  296. /**************************** FRASE POR PR-INCESO ***********/
  297. .blogtitle { font-family:'nymeria';position:fixed;margin-top:133px;font-size:24px;text-align:center;padding:3px; margin-left:132px; padding-bottom:4px; letter-spacing:0px; text-transform:NONE; width:230px;text-shadow:0px 0px 1px {color:descr}; ; color:{color:descr};}
  298.  
  299.  
  300.  
  301. /* IMAGEM DA SIDE POR PR-INCESO */
  302. #imagevi1{float: left; margin-top: 20px; margin-left: 120px; padding: 0px; width: 220px; height:340px; position: fixed; -webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;z-index:0;}
  303. #imagevi1 a {background-attachment: absolute;}
  304.  
  305.  
  306. #imagevi2 {margin-top: 0px; margin-left: 0px; position: fixed;-webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out;}
  307. #imagevi2 img{width: 220px; z-index:999999999999999;height:310px;position: absolute; opacity:1; border:2px solid {color:border};-webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out;padding:5px;-webkit-filter: brightness(1);}
  308. #imagevi1:hover #imagevi2{-webkit-filter: blur(3px);-webkit-filter: brightness(0.5);;-webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out;}
  309. #imagevi1:hover #imagevi2{-webkit-filter: blur(3px);;-webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out;}
  310.  
  311.  
  312.  
  313.  
  314.  
  315. #imagevi1:hover .menu{opacity:1;-webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;}
  316.  
  317. #imagevi1:hover #pagina{margin-top:230px; margin-left:176px; opacity:1; -webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;}
  318.  
  319. #imagevi1:hover #crd{margin-top:8px; margin-left:100px; opacity:1; -webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;}
  320.  
  321. /**** menu andoirdd ***/
  322.  
  323. .menu{text-align:center;width:40px;margin-top:250px;position:absolute;z-index:999999999999999999999999999999;left:0px;-webkit-transition: all 2s ease-out; -moz-transition: all .2s ease-out;opacity:0;}
  324. .menu img{top:100px;-webkit-transition: all 20s ease-out; -moz-transition: all 20s ease-out;border:3px solid {color:border};margin-left:10px;background-color: rgba(255,255,255,.2);box-shadow: 0px 0px 5px {color:border}}
  325. .menu img:hover{opacity:0;z-index:0;-webkit-transition: all 0.1s ease-out; -moz-transition: all .1s ease-out;}
  326.  
  327.  
  328. .menu:hover #links{left:10px;opacity:1;-webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out;}
  329.  
  330. /************** DESCRIÇÃO POR PR-INCESO ********************/
  331.  .teamomoh {text-align: center; line-height:4px; height: auto; font-size: 10px; font-family: muli; position: fixed; margin-left:6px; line-height: 12px; width:176px; ;padding:3px;margin-top: opx; background-attachment: fixed;z-index:9999999999999;color: {color:descr};}
  332.  
  333.  /****************** LINKS POR PR-INCESO ******************/
  334. #links {width: 218px; top: -50px;line-height:4px; text-align: center;; position: relative; left:210px;z-index:1500; -webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;-webkit-filter: blur(0px);background-color: rgba(255,255,255,0.5); box-shadow: inset 0px 0px 8px  #000;opacity:1;border-radius: 3px;z-index:99999999999;opacity:0;}
  335. #links img{width:25px; height:25px;opacity:1;border:0px solid {color:border};background-color: rgba(255,255,255,0);box-shadow: 0px 0px 0px {color:border}}
  336. #links img:hover{left:40px;opacity:1;}
  337.  
  338. #links:hover .menu{left:10px;-webkit-transition: all .2s ease-out; -moz-transition: all .2s ease-out;}
  339.  
  340.  
  341. /***** CREDITOS *******************/
  342. #crd {width: 194px; height:auto;padding:0px; margin-top:283px; margin-left:0px; position: fixed;z-index: 3;-webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;opacity:0;}
  343. #crd a {font-family:"calibri"; font-size:8px; text-align: center; color:{color:links};-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out;text-transform:uppercase;background-color: rgba(255,255,255,0.3);padding:2px;}
  344. #crd a:hover {opacity: 1;text-shadow: 0px 0px 3px {color:hover};;}
  345.  
  346.  
  347.  
  348. /****************** POSTING, REBLOGS E SCROLL*/
  349. .posting {padding: 5px;}
  350.  
  351. li.drawer a {margin: 0px 5px;}
  352.    
  353. .label {text-transform:normal;color:{color:hover}}
  354.    
  355. .elavaivoltar {position:relative;text-align: right; line-height:10%; opacity: 0.0; filter: alpha(opacity = 0); font-family:muli;font-size: 7px; line-height: 9px; text-transform: uppercase;-webkit-transition: all 0.6s linear; -moz-transition: all 0.6s linear; -o-transition: all 0.6s linear; transition: all 0.6s linear;top:3px;}
  356. .elavaivoltar a{ text-transform: uppercase;-webkit-transition: all 0.6s linear; -moz-transition: all 0.6s linear; -o-transition: all 0.6s linear; transition: all 0.6s linear;}
  357. .elavaivoltar a:hover{color:{color:hover};}
  358.    
  359. .entry:hover .elavaivoltar { opacity: 1; filter: alpha(opacity = 50);-webkit-transition: all 0.3s linear; -moz-transition: all 0.3s linear; -o-transition: all 0.3s linear; transition: all 0.3s linear;}
  360.  
  361. div.panel { width: 260px; padding: 15px 20px;  color: #333; text-align: center; line-height: 22px; display: none; filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#0d000000',GradientType=0 );}
  362.  
  363. div.panel p { margin: 10px 0; }
  364.  
  365. div.panel p a, div.textPost p a, div.audioPost p a { color: #333; text-decoration: none; border-bottom: 1px dotted; font-style: italic; font-weight: bold;}
  366.  
  367. ::-webkit-scrollbar-thumb:vertical { background-color:{color:scrollbar}; height:auto;-webkit-border-radius:20px;}
  368.  
  369. ::-webkit-scrollbar-thumb:horizontal { background-color:{color:scrollbar};
  370. height:6px !important;-webkit-border-radius:20px;}
  371.  
  372. ::-webkit-scrollbar { height:6px; width:6px; background-color:{color:Background}; -webkit-border-radius:20px;}
  373.  
  374. /************** MENU POP *****************/
  375.  
  376.  
  377. #fade { /*--Transparent background layer--*/
  378.     display: none; /*--hidden by default--*/
  379.     background: #000;
  380.     position: fixed; left: 0; top: 0;
  381.     width: 100%; height: 100%;
  382.         opacity: .80;
  383.         z-index: 999999;
  384. }
  385. .popup_block{
  386.         display: none; /*--hidden by default--*/
  387.         background: #fff;
  388.         padding: 20px;
  389.         border: 10px double #bebebe;
  390.         float: left;
  391.         font-size: 12px;
  392.         position: fixed;
  393.         top: 50%; left: 50%;
  394.         z-index: 9999999999999999999999999999999999;
  395.     color:#000;
  396.     text-align:left;
  397.     font-family:calibri;
  398.         /*--CSS3 Box Shadows--*/
  399.         -webkit-box-shadow: 0px 0px 20px #000;
  400.         -moz-box-shadow: 0px 0px 20px #000;
  401.         box-shadow: 0px 0px 20px #000 inset;
  402.         /*--CSS3 Rounded Corners--*/
  403.         -webkit-border-radius: 10px;
  404.         -moz-border-radius: 10px;
  405.         border-radius: 10px;
  406. }
  407. .popup_block a{color:#000;}
  408. img.btn_close {
  409.         float: right;
  410.         margin: -55px -55px 0 0;
  411. }
  412. /*--Making IE6 Understand Fixed Positioning--*/
  413. *html #fade {
  414.         position: absolute;
  415. }
  416. *html .popup_block {
  417.         position: absolute;
  418. }
  419. .tchutchuca {display : block; font-family: calibri; font-size: 12px; line-height: 15px; margin-bottom : 1px;  vertical-align : middle; text-indent : 0px; padding: 2px 2px 2px 6px;  background: #eee; border-left: 3px double #bebebe; border-right: 3px double #bebebe; color: #666; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; text-align: left; }
  420.  
  421. .tchutchuca1 a{color: #57768e;}
  422. /*-----------------------------------------------------------------------*/
  423.  
  424. #pagina{ margin-top: 294px; margin-left: 100px; width: 53px;; color:{color:links};position: fixed; height: auto; -webkit-border-radius: 0px 0px 0px 0px; z-index:830; background-color: rgba(255,255,255,0.3);text-align:center;opacity:0;}
  425.  
  426.  
  427. #paginacaoml {font-size: 8px;text-align:center;font-family:calibri; line-height: 14px;text-transform:uppercase;color{color:text};}
  428. #paginacaoml a {font-size: 12px; font-family:calibri; {background: ;  background-image:url('');color:{color:links}; text-decoration: none;}
  429. </style>
  430.  
  431. <script type="text/javascript">
  432. $(window).load(function(){
  433. $("p").remove(":contains('Source:')");
  434. $("p").remove(":contains('via ')");
  435. });
  436. </script>
  437. </head>
  438. <body>
  439.  
  440. <div class="blogtitle">{text:frase}</div>
  441. <!-- INICIO MENU  -->
  442.  
  443. <div id="contain">
  444. <div id="sidebar">
  445.  
  446. <!-- HEADER IMAGEM -->
  447. <center>
  448.  
  449. <div id="imagevi1">
  450.  
  451.  
  452.  
  453.  
  454.  
  455. <div class="menu"><img style="width:40px;height:40px;" src="http://static.tumblr.com/yhfuno6/1A2mm33gu/menu.png">
  456.    
  457.   <div id="links">
  458.  
  459.  
  460.  
  461.  <a href="{text:link 1}" title="{text:link 1 nome}"><img src="http://static.tumblr.com/yhfuno6/j8Cmlx63g/home.png"></a>
  462.  
  463.  <a href="{text:link 2}"title="{text:link 2 nome}"><img src="http://static.tumblr.com/yhfuno6/llfmm323c/msg.png"></a>
  464.  
  465.  
  466.  <a href="{text:link 3}"title="{text:link 3 nome}"><img src="http://static.tumblr.com/yhfuno6/zS9mm324p/tags.png"></a>
  467.  
  468.  
  469.  <a href="{text:link 4}"title="{text:link 4 nome}"><img src="http://static.tumblr.com/yhfuno6/Njcmm3254/themes.png"></a>
  470.  
  471. <a href="{text:link 5}"title="{text:link 5 nome}"><img src="http://static.tumblr.com/yhfuno6/2aImm325j/core.png"></a>  
  472.    
  473.    
  474. </div>
  475.  </div>  
  476.  
  477. <div id="imagevi2">
  478.  <img src="{image:sidebarimagem1}">
  479.  
  480.  
  481.  </div>  <div id="crd"><a href='#?w=500' rel='theme' class='poplight' title="clica pra ver os creditos.">@theme</a></div>    <div id="pagina"><div id="paginacaoml"> {block:Pagination}{block:PreviousPage}{/block:PreviousPage}{/block:Pagination}
  482. Page <b>{CurrentPage}</b> of <b>{TotalPages}</b>{block:Pagination}{block:NextPage}{/block:NextPage}{/block:Pagination}</div></div>                      
  483. </div></div>        
  484.  
  485.  
  486. <!-- TITULO  -->
  487.  
  488.  
  489.  
  490.  
  491.  
  492. <!-- DESCRIÇÃO -->
  493. <div class="teamomoh"></div>
  494.  
  495.  
  496. <!-- LINKS -->
  497.  
  498.  
  499. </div>
  500.  
  501. <!-- INICIO DOS POSTS  -->
  502. <div id="content">
  503. {block:Posts}
  504. <div class="entry">
  505.  
  506. <!-- textos -->
  507. {block:Text}
  508. <div class="posting">
  509. {block:Title}
  510. <div style="font-family:{text:font}; font-size:14px; padding:2px; background-color:{color:background}; color:{color:Links hover};">
  511. {Title}</div>{/block:Title}
  512. <div align="justify">{Body}</div>
  513. {block:indexpage}
  514. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  515.  
  516. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  517.  
  518. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  519.  
  520. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  521.  
  522. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  523. {/block:indexpage}
  524. </div>
  525. {/block:Text}
  526. <!-- fim textos -->
  527.  
  528. <!-- fotos -->
  529. {block:Photo}
  530. {block:IndexPage}
  531. <div class="permalinkhehe">
  532. <div class="likeyoubaby">
  533. <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div>
  534. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  535. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>  
  536. {/block:IndexPage}
  537. {block:indexpage}
  538. {LinkOpenTag}<div class="image"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></div>{LinkCloseTag}{block:Caption}{caption}{/block:Caption}
  539. {/block:indexpage}
  540. {block:permalinkpage}
  541. {LinkOpenTag}<div class="image"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="99%"/></div>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}
  542. {/block:permalinkpage}
  543. {/block:Photo}
  544. <!-- fim fotos -->
  545.  
  546.  
  547. <!-- quotes -->
  548. {block:Quote}
  549.  
  550. <div class="xquote">“{Quote}"</div>
  551. {block:Source}<div class="xqsource"><strong>{Source}</div>{/block:Source}</strong>
  552. {block:indexpage}
  553. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  554.  
  555. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  556.  
  557. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  558.  
  559. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  560.  
  561. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  562. {/block:indexpage}
  563.  
  564. {/block:Quote}
  565. <!-- fim quotes -->
  566.  
  567.  
  568. <!-- perguntas -->
  569. {block:Answer}
  570. <div class="posting">
  571. <div align="justify"><big></big>
  572. <span style="text-transform:uppercase; color:{color:Link}">{Asker}:</span> {Question}</div> <br>
  573. <div align="justify">{Answer}</div>
  574. {block:indexpage}
  575. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  576.  
  577. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  578.  
  579. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  580.  
  581. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  582.  
  583. {block:ReblogRootURL}<a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  584. {/block:indexpage}
  585. </div>
  586. {/block:Answer}
  587. <!-- fim perguntas -->
  588.  
  589. <!-- audio -->
  590. {block:Audio}
  591. <div class="posting">
  592. <center>{AudioPlayerGrey}
  593. {PlayCountWithLabel}
  594. {block:Caption}
  595. {Caption}
  596. {/block:Caption}
  597. {block:indexpage}
  598. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  599.  
  600. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  601.  
  602. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  603.  
  604. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  605.  
  606. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  607. {/block:indexpage}
  608. {Video-500}
  609. {/block:permalinkpage}
  610. </div>{/block:Audio}
  611. <!-- fim audio -->
  612.  
  613. <!-- photosets  -->
  614. {block:Photoset}
  615. {block:IndexPage}
  616. <br><center>
  617. {Photoset-250}
  618. </center>{/block:IndexPage}
  619. {block:indexpage}
  620. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  621.  
  622. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  623.  
  624. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  625.  
  626. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  627.  
  628. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  629. {/block:indexpage}
  630. {block:permalinkpage}
  631. <div class="image">{Photoset-250}</div>
  632. {/block:permalinkpage}
  633. {/block:Photoset}
  634. <!-- fim photosets -->
  635.  
  636. <!-- chat -->
  637. {block:chat}
  638. <div class="posting">
  639. {block:title}
  640. <center><div style="font-family:{text:font}; font-size:14px; padding:2px; background-color:{color:background}; color:{color:Links hover};">{title}
  641. </div>{/block:title}</center>
  642. <ul class="chat">
  643. {block:Lines}
  644. <li class="{Alt} user_{UserNumber}"> {block:Label}
  645. <span class="label">{Label}</span> {/block:Label}
  646. {Line} </li>
  647. {/block:Lines} </ul>    
  648. {block:indexpage}
  649. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  650.  
  651. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  652.  
  653. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  654.  
  655. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  656.  
  657. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  658. {/block:indexpage}
  659. </div>
  660. {/block:Chat}
  661. <!-- fim chat -->
  662.  
  663. <!-- links -->
  664. {block:Link}
  665. <div class="posting">
  666. <center><a href="{URL}" target="_blank"><div style="font-family:{text:font}; font-size:14px; padding:2px;  background-color:{color:background}; color:{color:Links hover};">{Name}</a></div></center>
  667. {block:description}
  668. {description}
  669. {/block:description}
  670. {block:indexpage}
  671. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  672.  
  673. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  674.  
  675. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  676.  
  677. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  678.  
  679. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  680. {/block:indexpage}
  681. </div>
  682. {/block:Link}
  683. <!-- fim links -->
  684.  
  685. <!-- videos -->
  686. {block:Video}
  687. {block:IndexPage}{Video-250}{/block:IndexPage}
  688. {block:indexpage}
  689. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  690.  
  691. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  692.  
  693. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  694.  
  695. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  696.  
  697. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  698. {/block:indexpage}
  699. {Video-250}
  700. {/block:permalinkpage}
  701. {/block:Video}
  702. <!-- fim videos -->
  703.  
  704. {block:PermalinkPage}
  705. <div style="width:400px;margin-left:5px;">
  706. <center>
  707. {block:Date}
  708.  
  709. <div style="font-weight:bold;font-size:12px;border-bottom:1px solid {color:bordering};margin-bottom:3px;">
  710.  
  711. {DayOfWeek}, {DayOfMonth} de {Month} de {Year} às ({24HourWithZero}:{Minutes}), com <small><small></small></small> {NoteCount}</div>
  712. {/block:Date}
  713.  
  714. <br>
  715.  
  716. {block:HasTags}
  717. — Tags:&nbsp;
  718. {block:Tags}
  719. <a href="{TagURL}" style="margin-right:5px; font-family:{text:font};color:{color:Links hover};">#&nbsp;{Tag}</a>{/block:Tags}
  720. {/block:HasTags}<br>
  721.  
  722. {block:RebloggedFrom}
  723.  
  724. — Reblog via <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  725.  
  726. — Original <a href="{ReblogRootURL}">{ReblogRootName}</a>
  727. {/block:RebloggedFrom}<br>
  728. </div>
  729.  
  730. <center><br><br>{block:ContentSource}
  731. <br><a href="{SourceURL}">
  732. {lang:Source}:
  733. {block:SourceLogo}
  734. <img src="{BlackLogoURL}" width="{LogoWidth}"
  735. height="{LogoHeight}" alt="{SourceTitle}" />
  736. {/block:SourceLogo}
  737. {block:NoSourceLogo}
  738. {SourceLink}
  739. {/block:NoSourceLogo}
  740. </a>
  741. {/block:ContentSource}</center><br>
  742.  
  743. <div style="float:left;width:250px;margin-left:50px;">
  744. <div style="float:left"></div><div style="float:right"></div><div>{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  745. </div></center>
  746. {/block:PermalinkPage}
  747. <!-- fim dos notes -->
  748.  
  749. </div>
  750. {/block:Posts}
  751. </div>
  752. </div>
  753. <!-- FIM DOS POSTS -->
  754.  
  755. {block:IfScrollInfinito}
  756. <!-- PAGINAÇÃO -->
  757. {block:Pagination}
  758. <ul id="pagination">
  759. {block:PreviousPage}
  760. <li><a href="{PreviousPage}"></a></li>
  761. {/block:PreviousPage}
  762. {block:JumpPagination length="5"}
  763. {block:CurrentPage}
  764. <li><span class="current_page numbersNav"><strong>{PageNumber}</strong></span></li>
  765. {/block:CurrentPage}
  766. {block:JumpPage}
  767. <li><a class="jump_page numbersNav" href="{URL}">{PageNumber}</a></li>
  768. {/block:JumpPage}
  769. {/block:JumpPagination}
  770. {block:NextPage}
  771. <li><a id="nextPage" href="{NextPage}"></a></li>
  772. {/block:NextPage}
  773. </ul>
  774. {/block:Pagination}
  775. <!-- FIM DA PAGINAÇÃO -->
  776. {/block:IfScrollInfinito}
  777.  
  778. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  779. <script src="http://static.tumblr.com/fxpo5zq/HCHm5q8gs/infinitescroll.js"></script>
  780. {block:IndexPage}
  781. <script type="text/javascript">
  782. $(window).load(function () {
  783. $('#content').masonry(),
  784. $('.masonryWrap').infinitescroll({
  785. navSelector    : '#pagination',  
  786. nextSelector   : '#pagination a#nextPage',
  787. itemSelector : ".entry",
  788. bufferPx : 100,
  789. loadingText : "<em></em>",
  790. },
  791. function() { $('#content').masonry({ appendedContent: $(this) }); }
  792. );
  793. });
  794. </script>
  795. {/block:IndexPage}
  796.  
  797. <script type="text/javascript">
  798.  
  799.                         $('.show').click(function(e){
  800.                                 e.preventDefault();
  801.                                 $('.panel').stop(true,true);
  802.                                 var target = $(this).attr('href');
  803.                                 if($('.panel').is(':visible')){
  804.                                         if($(target).is(':visible')){
  805.                                                 $(target).slideUp();
  806.                                                 return false;
  807.                                         }else{
  808.                                                 $('.panel:visible').slideUp(400, function(){
  809.                                                         $(target).slideDown();
  810.                                                 });            
  811.                                         }
  812.                                 }else {
  813.                                         $(target).slideDown();
  814.                                 }
  815.                         });
  816.    
  817. </script>
  818. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/aK8m1cpdr/like2.js"></script>
  819. <iframe id="likeiframe" style="width: 1px; height: 1px;"></iframe>
  820. </body>
  821. <!-----------------------------THEMES-------------------------------->
  822. <div id='theme' class='popup_block' style="background-image: url('http://static.tumblr.com/yhfuno6/o3gmeher5/14.png') ;">
  823.  
  824. <center><div style="color:#fff; font-family:Qwigley; font-size:39px;">Creditos.</div></center>
  825.  
  826. <div class="tchutchuca"style="opacity:.8;background-color:transparent;color:#fff;">all theme por vasculhos.</li><br></div>
  827.  
  828. <div class="tchutchuca"style="opacity:.8;background-color:transparent;color:#fff;">se pegar base, por favor, credite. hoje em dia não fazem muito isso, então faça a diferença ;)</li><br></div>
  829.  
  830.  
  831. <div class="tchutchuca"style="opacity:.8;background-color:transparent;color:#fff;">clique <a href="http://vasculhos-themes.tumblr.com" title="clica"><u><font color="#fff">aqui</font></u></a> para ver todos os themes.</li><br></center></div>
  832. </div></div>
  833.  
  834.  
  835. </body>
  836. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement