Advertisement
fn-themes

theme-57

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