Advertisement
Uma-deus4

Reformando (christmas)

Jan 24th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.92 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head profile="http://gmpg.org/xfn/11">
  2.  
  3. <!-----------THEME FEITO POR BLINDAR-TE - NUNCA RETIRE OS CRÉDITOS ESSE THEME É PROTEGIDO E EU TENHO COMO PROVAR.--------------->
  4.  
  5.  
  6. <link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
  7.  
  8. <link href='http://fonts.googleapis.com/css?family=Poiret+One' rel='stylesheet' type='text/css'>
  9.  
  10. <script type="text/javascript"
  11. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  12. <script>
  13.  
  14. $(document).ready(function() {
  15.  
  16. //
  17.  
  18. //When you click on a link with class of poplight and the href starts with a #
  19.  
  20. $('a.poplight[href^=#]').click(function() {
  21.  
  22. var popID = $(this).attr('rel'); //Get Popup Name
  23.  
  24. var popURL = $(this).attr('href'); //Get Popup href to define size
  25.  
  26. //Pull Query & Variables from href URL
  27.  
  28. var query= popURL.split('?');
  29.  
  30. var dim= query[1].split('&');
  31.  
  32. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  33.  
  34. //Fade in the Popup and add close button
  35.  
  36. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/ibqd7br/0n9ng6hw2/close.png" class="btn_close" title="Close here baby !" alt="Close" /></a>');
  37.  
  38.  
  39. //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
  40.  
  41. var popMargTop = ($('#' + popID).height() + 60) / 2;
  42.  
  43. var popMargLeft = ($('#' + popID).width() + 60) / 2;
  44.  
  45. //Apply Margin to Popup
  46.  
  47. $('#' + popID).css({
  48.  
  49. 'margin-top' : -popMargTop,
  50.  
  51. 'margin-left' : -popMargLeft
  52.  
  53. });
  54.  
  55. //Fade in Background
  56.  
  57. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  58.  
  59. $('#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
  60. return false;
  61. });
  62. //Close Popups and Fade Layer
  63. $('a, #fade').live('click', function() { //When clicking on the close or fade layer...
  64.  
  65. $('#fade , .popup_block').fadeOut(function() {
  66.  
  67. $('#fade, a').remove(); //fade them both out
  68. });
  69. return false;
  70.  
  71. });
  72. });
  73.  
  74. </script>
  75.  
  76. <title>{Title}</title>
  77. <link rel="shortcut icon" href="https://31.media.tumblr.com/517c36d3e02abcb0a1ee03d70657eb6c/tumblr_inline_nfnxrxcO6c1sicfw6.gif">
  78. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  79. {block:Description}
  80. <meta name="description" content="{MetaDescription}" />
  81. {/block:Description}
  82.  
  83. </head>
  84.  
  85.  
  86. <style type="text/css">
  87.  
  88. /* --- corpo --- */
  89. body {background-image: url('http://static.tumblr.com/ibqd7br/6b1ng6cca/bg.png');font-family:'calibri';font-size:10px;color:#aaa;}
  90.  
  91. /*** menu pop up feito por blindar-te CREDITE ***/
  92. #fade { /*--Transparent background layer--*/
  93. display: none; /*--hidden by default--*/
  94. background: #eee; /*** cor do bg ***/
  95.  
  96. position: fixed; left: 0; top: 0;
  97. width: 100%; height: 100%;
  98. border: 1px solid #fff; /*** cor da borda ***/
  99.  
  100. opacity: .80;
  101. z-index: 1000;
  102. border: 2px solid: #fff;
  103. }
  104. .popup_block{
  105. display: none; /*--hidden by default--*/
  106. background: #fff;
  107. padding: 20px;
  108.  
  109. float: left;
  110. font-size: 1.2em;
  111. border: 2px solid: #fff;
  112. position: fixed;
  113. top: 50%; left: 50%;
  114. z-index:10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000;background: #fff;)
  115. /*--CSS3 Box Shadows--*/
  116. -webkit-box-shadow: 0px 0px 5px #005e22; /*** SOMBRAS ***/
  117. -moz-box-shadow: 0px 0px 5px #005e22; /*** SOMBRAS ***/
  118.  
  119. box-shadow: 0px 0px 5px #005e22; /*** SOMBRAS ***/
  120.  
  121. /*--CSS3 Rounded Corners--*/
  122. -webkit-border-radius: 10px;
  123. -moz-border-radius: 10px;
  124. border-radius: 10px;}
  125. img.btn_close {
  126. float: right;
  127. margin: -40px -40px 0 0;}
  128. /*--Making IE6 Understand Fixed Positioning--*/
  129. *html #fade {
  130. position: absolute;}
  131. *html .popup_block {
  132. position: absolute;}
  133.  
  134. h1 {font-family: 'Poiret One', cursive;font-size:32px; text-align:justify; margin: 3px; color:#5;border-bottom: 1px dotted #ddd; line-height: 30px;margin-left:20px;}
  135.  
  136. a {color: #005e22; text-decoration: none; text-transform: none; -webkit-transition: all .2s ease-out;}
  137.  
  138. /* sidebar */
  139. .sidebar {width:600px; text-align: justify; float: left; position: fixed; margin-top: 100px; left:300px;}
  140.  
  141.  
  142. .parc a {color:#005e22;background:#c5c5c5;border-radius:100px;padding:10px;font-family:'lobster';font-size:14px;}
  143. .parc a:hover {background:#e10808;color:#fff;}
  144.  
  145. .oi {width:150px;font-family:'Baumans';font-size:15px;margin-left:315px;position:absolute;}
  146. .oi a {background:#eee;padding:1px;padding-left:5px;padding-right:5px;text-align:center;color:#005e22;}
  147. .oi a:hover {color:#e10808;}
  148.  
  149.  
  150. </style>
  151.  
  152. <body>
  153. <script type='text/javascript'>
  154. sitePath = 'http://vanessaluiza.com/_utilidades/script/let-it-snow/';
  155. sflakesMax = 0.15;
  156. sflakesMaxActive = 110;
  157. svMaxX = 1;
  158. svMaxY = 1;
  159. ssnowStick = 0;
  160. sfollowMouse = 1;
  161. </script>
  162.  
  163.  
  164. <script src='http://static.tumblr.com/lluyi5e/weHme02e8/ilovethemesneve.js' type='text/javascript'></script>
  165.  
  166. <!-- SCM Music Player http://scmplayer.net -->
  167. <script type="text/javascript" src="http://scmplayer.net/script.js"
  168. data-config="{'skin':'http://static.tumblr.com/0domeyt/vDbnfh1q4/bear.css','volume':100,'autoplay':true,'shuffle':false,'repeat':1,'placement':'bottom','showplaylist':false,'playlist':[{'title':'','url':'https://www.youtube.com/watch?v=VEif6kU3qnE'}]}" ></script>
  169. <!-- SCM Music Player script end -->
  170.  
  171.  
  172. <div class="sidebar">
  173.  
  174. <img src="http://static.tumblr.com/ibqd7br/lkfng6cde/banner-gif.gif">
  175.  
  176. <div class="oi">
  177. <a href="/">●</a>
  178. <a href="#?w=500" rel="01" class="poplight">●</a>
  179. <a href="#?w=500" rel="03" class="poplight">●</a>
  180. <a href="http://meraslembrancas.tumblr.com">●</a>
  181. <a href="http://blindar-te.tumblr.com">●</a>
  182.  
  183.  
  184. </div>
  185.  
  186. </div>
  187.  
  188.  
  189. </DIV></DIV></DIV></DIV></DIV></DIV>
  190.  
  191. <div id="01" class="popup_block">
  192. <h1>Contato</h1><br>
  193.  
  194. <font color="#005e22">●</font> Enquanto estamos em reforma <a href="http://luxurioushtml.tumblr.com/mobile">clique aqui</a> para que você possa ver nosso conteúdo.
  195.  
  196. <iframe frameborder="0" scrolling="no" width="100%" height="200" src="http://www.tumblr.com/ask_form/luxurioushtml.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]--></p></div>
  197.  
  198. </div>
  199. </div>
  200. </div>
  201. </div>
  202. </div>
  203. </div>
  204. </div>
  205. </div>
  206.  
  207. <div id="03" class="popup_block">
  208. <h1>Partners</h1><br>
  209.  
  210. <div class="parc">
  211.  
  212. <center>
  213. <a href="http://chasinghtml.tumblr.com/">CH</a>
  214.  
  215. <a href="http://fun-html.tumblr.com/">FH</a>
  216.  
  217. <a href="http://i-lovethings.tumblr.com/">ILT</a>
  218.  
  219. <a href="http://besthelp.tumblr.com/">BH</a>
  220.  
  221. <a href="http://support-html.tumblr.com/">SH</a>
  222.  
  223. <a href="http://mirrordesigns.tumblr.com/">MD</a>
  224.  
  225. <a href="http://magic-html.tumblr.com/">MH</a>
  226.  
  227. <a href="http://stuff-help-you.tumblr.com/">SHY</a>
  228.  
  229. <a href="http://photogallerrie.tumblr.com/">PG</a>
  230.  
  231. <a href="http://infinitdesign.tumblr.com/">ID</a>
  232. </center>
  233.  
  234. </div>
  235. </div>
  236. </div>
  237. </div>
  238. </div>
  239. </div>
  240. </div>
  241. </div>
  242.  
  243. </body>
  244. <!-------------CRÉDITOS--------------->
  245.  
  246. <div style="display:block;top:4px;left:5px;font-size:8px;font-family:pf arma five;padding:3px;z-index:55554235555;"><a href="http://aprendiz-de-feiticeir4.tumblr.com/" title="Design blindar-te"><font color="#aaa">CREDIT</font></a>
  247. </div>
  248. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement