Advertisement
fn-themes

theme-55

Feb 24th, 2013
625
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 33.78 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="0">
  174.  
  175. <meta name="image:background" content=""/>
  176. <meta name="image:sidebarimagem1" content="http://24.media.tumblr.com/040dfd667456a990f934fdbf17cc6972/tumblr_mic9v15uAv1qiinqmo1_1280.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="I want to feel us collide" />
  189. <meta name="text:frase2" content="I'm tired of being on the outside" />
  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: 'Tangerine'; font-size: 17px;line-height:12px;letter-spacing:1px;}
  223. .xqsource {text-align: right;;letter-spacing:px; text-transform: none; font-size: 9px; font-family:muli; 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. /**************************** FRASE POR PR-INCESO ***********/
  293. .blogtitle { font-family:homenaje;position:fixed;margin-top:129px;font-size:17px;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};}
  294. .blogtitle1 { font-family:Swanky and Moo Moo;position:fixed;margin-top:143px;font-size:14px;text-align:center;padding:3px; margin-left:128px; padding-bottom:4px; letter-spacing:0px; text-transform:NONE; width:234px;text-shadow:0px 0px 1px {color:descr}; ; color:{color:descr};}
  295.  
  296. /* IMAGEM DA SIDE POR PR-INCESO */
  297. #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;}
  298. #imagevi1 a {background-attachment: absolute;}
  299. #imagevi2 {margin-top: 0px; margin-left: 0px; position: fixed;}
  300. #imagevi2 img{width: 220px; z-index:999999999999999;height:310px;position: absolute; opacity:1; border:2px solid {color:border};-webkit-transition: all 1.3s ease-out; -moz-transition: all 1.1s ease-out;padding:5px;}
  301.  
  302.  
  303. /************** DESCRIÇÃO POR PR-INCESO ********************/
  304.  .teamomoh {text-align: center; 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};}
  305.  
  306.  /****************** LINKS POR PR-INCESO ******************/
  307.  
  308. /*links1*****/
  309. #links {margin-top: 136px;;width: 53px;;  text-align:center;; position: fixed; margin-left:-51px;z-index:1400; -webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;}
  310. #links a {height:8px;display:block;text-transform:uppercase;font-family:"calibri"; font-size:0px; opacity:.9;z-index:9999900;;  -webkit-transition: all .8s ease-out; -moz-transition: all .8s ease-out; ;color:;margin-bottom:1px;background-color:{color:border};-webkit-border-radius: 80px;
  311. -webkit-border-top-right-radius: 1px;
  312. -webkit-border-bottom-right-radius: 1px;}
  313. #links a:hover {font-size:8px;;height:14px;;opacity:1;background-color:transparent;text-shadow:0px 0px 3px {color:links};}
  314. #links:hover{margin-top:133px;}
  315.  
  316.  
  317. /*links2*****/
  318. #links2 { margin-top: 146px; ;width: 90px;;  text-align: center;; position: fixed; margin-left:-88px;z-index:1300; -webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;}
  319. #links2 a {height:8px;display:block;text-transform:uppercase;font-family:"calibri"; font-size:0px; opacity:.7;z-index:9999900;;  -webkit-transition: all .8s ease-out; -moz-transition: all .8s ease-out; ;color:{color:link};margin-bottom:1px;background-color:{color:border};-webkit-border-radius: 80px;
  320. -webkit-border-top-right-radius: 1px;
  321. -webkit-border-bottom-right-radius: 1px;}
  322. #links2 a:hover {font-size:8px;;height:14px;;opacity:1;background-color:transparent;text-shadow:0px 0px 3px {color:links};}
  323. #links2:hover{margin-top:143px;}
  324.  
  325.  
  326.  
  327. /*links3*****/
  328. #links3 {margin-top: 156px;;width: 70px;;  text-align: center;; position: fixed; margin-left:-68px;z-index:1200; -webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;}
  329. #links3 a {height:8px;display:block;text-transform:uppercase;font-family:"calibri"; font-size:0px; opacity:.8;z-index:9999900;;  -webkit-transition: all .8s ease-out; -moz-transition: all .8s ease-out; ;color:{color:link};margin-bottom:1px;background-color:{color:border};-webkit-border-radius: 80px;
  330. -webkit-border-top-right-radius: 1px;
  331. -webkit-border-bottom-right-radius: 1px;}
  332. #links3 a:hover {font-size:8px;;height:14px;;opacity:1;background-color:transparent;text-shadow:0px 0px 3px {color:links};}
  333. #links3:hover{margin-top:153px;}
  334.  
  335.  
  336.  
  337. /*links4*****/
  338. #links4 { margin-top: 166px;;width: 60px;;  text-align: center;; position: fixed; margin-left:-58px;z-index:1100; -webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;}
  339. #links4 a {height:8px;display:block;text-transform:uppercase;font-family:"calibri"; font-size:0px; opacity:.6;z-index:9999900;;  -webkit-transition: all .8s ease-out; -moz-transition: all .8s ease-out; ;color:{color:link};margin-bottom:1px;background-color:{color:border};-webkit-border-radius: 80px;
  340. -webkit-border-top-right-radius: 1px;
  341. -webkit-border-bottom-right-radius: 1px;}
  342. #links4 a:hover {font-size:8px;;height:14px;;opacity:1;background-color:transparent;text-shadow:0px 0px 3px {color:links};}
  343. #links4:hover{margin-top:163px;}
  344.  
  345.  
  346.  
  347. /*links5*****/
  348. #links5 {margin-top: 176px;;width: 75px;;  text-align: center;; position: fixed; margin-left:-73px;z-index:1000; -webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;}
  349. #links5 a {height:8px;display:block;text-transform:uppercase;font-family:"calibri"; font-size:0px; opacity:.7;z-index:9999900;;  -webkit-transition: all .8s ease-out; -moz-transition: all .8s ease-out; ;color:{color:link};margin-bottom:1px;background-color:{color:border};-webkit-border-radius: 80px;
  350. -webkit-border-top-right-radius: 1px;
  351. -webkit-border-bottom-right-radius: 1px;}
  352. #links5 a:hover {font-size:8px;;height:14px;;opacity:1;background-color:transparent;text-shadow:0px 0px 3px {color:links};}
  353. #links5:hover{margin-top:173px;}
  354.  
  355.  
  356.  
  357. /***** CREDITOS *******************/
  358. #crd {width: 194px; height:auto;padding:0px; margin-top: 322px; margin-left: 117px; position: fixed;z-index: 3;-webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;}
  359. #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;}
  360.  
  361.  
  362.  
  363.  
  364. /****************** POSTING, REBLOGS E SCROLL*/
  365. .posting {padding: 5px;}
  366.  
  367. li.drawer a {margin: 0px 5px;}
  368.    
  369. .label {text-transform:normal;color:{color:hover}}
  370.    
  371. .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;}
  372. .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;}
  373. .elavaivoltar a:hover{color:{color:hover};}
  374.    
  375. .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;}
  376.  
  377. 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 );}
  378.  
  379. div.panel p { margin: 10px 0; }
  380.  
  381. 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;}
  382.  
  383. ::-webkit-scrollbar-thumb:vertical { background-color:{color:scrollbar}; height:auto;-webkit-border-radius:20px;}
  384.  
  385. ::-webkit-scrollbar-thumb:horizontal { background-color:{color:scrollbar};
  386. height:6px !important;-webkit-border-radius:20px;}
  387.  
  388. ::-webkit-scrollbar { height:6px; width:6px; background-color:{color:Background}; -webkit-border-radius:20px;}
  389.  
  390. /************** MENU POP *****************/
  391.  
  392.  
  393. #fade { /*--Transparent background layer--*/
  394.     display: none; /*--hidden by default--*/
  395.     background: #000;
  396.     position: fixed; left: 0; top: 0;
  397.     width: 100%; height: 100%;
  398.         opacity: .80;
  399.         z-index: 999999;
  400. }
  401. .popup_block{
  402.         display: none; /*--hidden by default--*/
  403.         background: #fff;
  404.         padding: 20px;
  405.         border: 10px double #bebebe;
  406.         float: left;
  407.         font-size: 12px;
  408.         position: fixed;
  409.         top: 50%; left: 50%;
  410.         z-index: 9999999999999999999999999999999999;
  411.     color:#000;
  412.     text-align:left;
  413.     font-family:calibri;
  414.         /*--CSS3 Box Shadows--*/
  415.         -webkit-box-shadow: 0px 0px 20px #000;
  416.         -moz-box-shadow: 0px 0px 20px #000;
  417.         box-shadow: 0px 0px 20px #000 inset;
  418.         /*--CSS3 Rounded Corners--*/
  419.         -webkit-border-radius: 10px;
  420.         -moz-border-radius: 10px;
  421.         border-radius: 10px;
  422. }
  423. .popup_block a{color:#000;}
  424. img.btn_close {
  425.         float: right;
  426.         margin: -55px -55px 0 0;
  427. }
  428. /*--Making IE6 Understand Fixed Positioning--*/
  429. *html #fade {
  430.         position: absolute;
  431. }
  432. *html .popup_block {
  433.         position: absolute;
  434. }
  435. .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; }
  436.  
  437. .tchutchuca1 a{color: #57768e;}
  438. /*-----------------------------------------------------------------------*/
  439.  
  440. #pagina{ margin-top: 334px; margin-left: 220px; width: 175px; float: right; color:{color:links};position: fixed; height: 24px; -webkit-border-radius: 0px 0px 0px 0px; z-index:830 }
  441.  
  442.  
  443. #paginacaoml {font-size: 8px;font-family:calibri; line-height: 24px;text-transform:uppercase;color:#696969;}
  444. #paginacaoml a {font-size: 12px; font-family:calibri; {background: ;  background-image:url(''); margin: 0 1px 0 0; padding: 2px 2px;color:{color:links}; text-decoration: none;}
  445. </style>
  446.  
  447. <script type="text/javascript">
  448. $(window).load(function(){
  449. $("p").remove(":contains('Source:')");
  450. $("p").remove(":contains('via ')");
  451. });
  452. </script>
  453. </head>
  454. <body>
  455.  
  456. <div class="blogtitle">{text:frase}</div>
  457. <div class="blogtitle1">{text:frase2}</div>
  458. <!-- INICIO MENU  -->
  459.  
  460. <div id="contain">
  461. <div id="sidebar">
  462.  
  463. <!-- HEADER IMAGEM -->
  464. <center>
  465.  
  466. <div id="imagevi1">
  467. <div id="imagevi2">
  468.  <img src="{image:sidebarimagem1}">  
  469.  
  470.  <div id="links">
  471. <a href="{text:link 1}">{text:link 1 nome}</a>
  472. </div>
  473.  
  474. <div id="links2">
  475. <a href="{text:link 2}">{text:link 2 nome}</a>
  476. </div>
  477.  
  478. <div id="links3">
  479. <a href="{text:link 3}">{text:link 3 nome}</a>
  480. </div>
  481.  
  482. <div id="links4">
  483. <a href="{text:link 4}">{text:link 4 nome}</a>
  484. </div>
  485.  
  486. <div id="links5">
  487. <a href="{text:link 5}">{text:link 5 nome}</a>
  488. </div>
  489.    <div id="crd"><a href='#?w=500' rel='theme' class='poplight' title="clica pra ver os creditos.">@theme</a></div>                          
  490. </div></div>        
  491.  
  492.  
  493. <!-- TITULO  -->
  494.  
  495.  
  496.  
  497.  
  498.  
  499. <!-- DESCRIÇÃO -->
  500.  
  501.  
  502.  
  503. <!-- LINKS -->
  504.  
  505.    
  506. </div>
  507.  
  508. <!-- INICIO DOS POSTS  -->
  509. <div id="content">
  510. {block:Posts}
  511. <div class="entry">
  512.  
  513. <!-- textos -->
  514. {block:Text}
  515. <div class="posting">
  516. {block:Title}
  517. <div style="font-family:{text:font}; font-size:14px; padding:2px; background-color:{color:background}; color:{color:Links hover};">
  518. {Title}</div>{/block:Title}
  519. <div align="justify">{Body}</div>
  520. {block:indexpage}
  521. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  522.  
  523. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  524.  
  525. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  526.  
  527. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  528.  
  529. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  530. {/block:indexpage}
  531. </div>
  532. {/block:Text}
  533. <!-- fim textos -->
  534.  
  535. <!-- fotos -->
  536. {block:Photo}
  537. {block:IndexPage}
  538. <div class="permalinkhehe">
  539. <div class="likeyoubaby">
  540. <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>
  541. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  542. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>  
  543. {/block:IndexPage}
  544. {block:indexpage}
  545. {LinkOpenTag}<div class="image"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></div>{LinkCloseTag}{block:Caption}{caption}{/block:Caption}
  546. {/block:indexpage}
  547. {block:permalinkpage}
  548. {LinkOpenTag}<div class="image"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="99%"/></div>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}
  549. {/block:permalinkpage}
  550. {/block:Photo}
  551. <!-- fim fotos -->
  552.  
  553.  
  554. <!-- quotes -->
  555. {block:Quote}
  556.  
  557. <div class="xquote">{Quote}</div>
  558. {block:Source}<div class="xqsource"><strong>{Source}</div>{/block:Source}</strong>
  559. {block:indexpage}
  560. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  561.  
  562. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  563.  
  564. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  565.  
  566. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  567.  
  568. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  569. {/block:indexpage}
  570.  
  571. {/block:Quote}
  572. <!-- fim quotes -->
  573.  
  574.  
  575. <!-- perguntas -->
  576. {block:Answer}
  577. <div class="posting">
  578. <div align="justify"><big></big>
  579. <span style="text-transform:uppercase; color:{color:Link}">{Asker}:</span> {Question}</div> <br>
  580. <div align="justify">{Answer}</div>
  581. {block:indexpage}
  582. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  583.  
  584. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  585.  
  586. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  587.  
  588. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  589.  
  590. {block:ReblogRootURL}<a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  591. {/block:indexpage}
  592. </div>
  593. {/block:Answer}
  594. <!-- fim perguntas -->
  595.  
  596. <!-- audio -->
  597. {block:Audio}
  598. <div class="posting">
  599. <center>{AudioPlayerGrey}
  600. {PlayCountWithLabel}
  601. {block:Caption}
  602. {Caption}
  603. {/block:Caption}
  604. {block:indexpage}
  605. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  606.  
  607. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  608.  
  609. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  610.  
  611. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  612.  
  613. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  614. {/block:indexpage}
  615. {Video-500}
  616. {/block:permalinkpage}
  617. </div>{/block:Audio}
  618. <!-- fim audio -->
  619.  
  620. <!-- photosets  -->
  621. {block:Photoset}
  622. {block:IndexPage}
  623. <br><center>
  624. {Photoset-250}
  625. </center>{/block:IndexPage}
  626. {block:indexpage}
  627. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  628.  
  629. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  630.  
  631. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  632.  
  633. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  634.  
  635. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  636. {/block:indexpage}
  637. {block:permalinkpage}
  638. <div class="image">{Photoset-250}</div>
  639. {/block:permalinkpage}
  640. {/block:Photoset}
  641. <!-- fim photosets -->
  642.  
  643. <!-- chat -->
  644. {block:chat}
  645. <div class="posting">
  646. {block:title}
  647. <center><div style="font-family:{text:font}; font-size:14px; padding:2px; background-color:{color:background}; color:{color:Links hover};">{title}
  648. </div>{/block:title}</center>
  649. <ul class="chat">
  650. {block:Lines}
  651. <li class="{Alt} user_{UserNumber}"> {block:Label}
  652. <span class="label">{Label}</span> {/block:Label}
  653. {Line} </li>
  654. {/block:Lines} </ul>    
  655. {block:indexpage}
  656. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  657.  
  658. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  659.  
  660. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  661.  
  662. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  663.  
  664. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  665. {/block:indexpage}
  666. </div>
  667. {/block:Chat}
  668. <!-- fim chat -->
  669.  
  670. <!-- links -->
  671. {block:Link}
  672. <div class="posting">
  673. <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>
  674. {block:description}
  675. {description}
  676. {/block:description}
  677. {block:indexpage}
  678. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  679.  
  680. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  681.  
  682. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  683.  
  684. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  685.  
  686. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  687. {/block:indexpage}
  688. </div>
  689. {/block:Link}
  690. <!-- fim links -->
  691.  
  692. <!-- videos -->
  693. {block:Video}
  694. {block:IndexPage}{Video-250}{/block:IndexPage}
  695. {block:indexpage}
  696. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  697.  
  698. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  699.  
  700. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  701.  
  702. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  703.  
  704. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  705. {/block:indexpage}
  706. {Video-250}
  707. {/block:permalinkpage}
  708. {/block:Video}
  709. <!-- fim videos -->
  710.  
  711. {block:PermalinkPage}
  712. <div style="width:400px;margin-left:5px;">
  713. <center>
  714. {block:Date}
  715.  
  716. <div style="font-weight:bold;font-size:12px;border-bottom:1px solid {color:bordering};margin-bottom:3px;">
  717.  
  718. {DayOfWeek}, {DayOfMonth} de {Month} de {Year} às ({24HourWithZero}:{Minutes}), com <small><small></small></small> {NoteCount}</div>
  719. {/block:Date}
  720.  
  721. <br>
  722.  
  723. {block:HasTags}
  724. — Tags:&nbsp;
  725. {block:Tags}
  726. <a href="{TagURL}" style="margin-right:5px; font-family:{text:font};color:{color:Links hover};">#&nbsp;{Tag}</a>{/block:Tags}
  727. {/block:HasTags}<br>
  728.  
  729. {block:RebloggedFrom}
  730.  
  731. — Reblog via <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  732.  
  733. — Original <a href="{ReblogRootURL}">{ReblogRootName}</a>
  734. {/block:RebloggedFrom}<br>
  735. </div>
  736.  
  737. <center><br><br>{block:ContentSource}
  738. <br><a href="{SourceURL}">
  739. {lang:Source}:
  740. {block:SourceLogo}
  741. <img src="{BlackLogoURL}" width="{LogoWidth}"
  742. height="{LogoHeight}" alt="{SourceTitle}" />
  743. {/block:SourceLogo}
  744. {block:NoSourceLogo}
  745. {SourceLink}
  746. {/block:NoSourceLogo}
  747. </a>
  748. {/block:ContentSource}</center><br>
  749.  
  750. <div style="float:left;width:250px;margin-left:50px;">
  751. <div style="float:left"></div><div style="float:right"></div><div>{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  752. </div></center>
  753. {/block:PermalinkPage}
  754. <!-- fim dos notes -->
  755.  
  756. </div>
  757. {/block:Posts}
  758. </div>
  759. </div>
  760. <!-- FIM DOS POSTS -->
  761.  
  762. {block:IfScrollInfinito}
  763. <!-- PAGINAÇÃO -->
  764. {block:Pagination}
  765. <ul id="pagination">
  766. {block:PreviousPage}
  767. <li><a href="{PreviousPage}"></a></li>
  768. {/block:PreviousPage}
  769. {block:JumpPagination length="5"}
  770. {block:CurrentPage}
  771. <li><span class="current_page numbersNav"><strong>{PageNumber}</strong></span></li>
  772. {/block:CurrentPage}
  773. {block:JumpPage}
  774. <li><a class="jump_page numbersNav" href="{URL}">{PageNumber}</a></li>
  775. {/block:JumpPage}
  776. {/block:JumpPagination}
  777. {block:NextPage}
  778. <li><a id="nextPage" href="{NextPage}"></a></li>
  779. {/block:NextPage}
  780. </ul>
  781. {/block:Pagination}
  782. <!-- FIM DA PAGINAÇÃO -->
  783. {/block:IfScrollInfinito}
  784.  
  785. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  786. <script src="http://static.tumblr.com/fxpo5zq/HCHm5q8gs/infinitescroll.js"></script>
  787. {block:IndexPage}
  788. <script type="text/javascript">
  789. $(window).load(function () {
  790. $('#content').masonry(),
  791. $('.masonryWrap').infinitescroll({
  792. navSelector    : '#pagination',  
  793. nextSelector   : '#pagination a#nextPage',
  794. itemSelector : ".entry",
  795. bufferPx : 100,
  796. loadingText : "<em></em>",
  797. },
  798. function() { $('#content').masonry({ appendedContent: $(this) }); }
  799. );
  800. });
  801. </script>
  802. {/block:IndexPage}
  803.  
  804. <script type="text/javascript">
  805.  
  806.                         $('.show').click(function(e){
  807.                                 e.preventDefault();
  808.                                 $('.panel').stop(true,true);
  809.                                 var target = $(this).attr('href');
  810.                                 if($('.panel').is(':visible')){
  811.                                         if($(target).is(':visible')){
  812.                                                 $(target).slideUp();
  813.                                                 return false;
  814.                                         }else{
  815.                                                 $('.panel:visible').slideUp(400, function(){
  816.                                                         $(target).slideDown();
  817.                                                 });            
  818.                                         }
  819.                                 }else {
  820.                                         $(target).slideDown();
  821.                                 }
  822.                         });
  823.    
  824. </script>
  825. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/aK8m1cpdr/like2.js"></script>
  826. <iframe id="likeiframe" style="width: 1px; height: 1px;"></iframe>
  827. </body>
  828. <!-----------------------------THEMES-------------------------------->
  829. <div id='theme' class='popup_block' style="background-image: url('http://static.tumblr.com/yhfuno6/o3gmeher5/14.png') ;">
  830.  
  831. <center><div style="color:#fff; font-family:Qwigley; font-size:39px;">Creditos.</div></center>
  832.  
  833. <div class="tchutchuca"style="opacity:.8;background-color:transparent;color:#fff;">all theme por vasculhos.</li><br></div>
  834.  
  835. <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>
  836.  
  837.  
  838. <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>
  839. </div></div>
  840.  
  841.  
  842. </body>
  843. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement