Advertisement
Lolovers

Theme Fromp

Jul 14th, 2013
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 32.18 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.  
  5. <script type="text/javascript">
  6. var settings = {
  7.     objSlideTrigger: '#navigation',
  8.     objSlidePanel: '#navigation'
  9. }
  10. function slideOutTab() {
  11.     //Bind a click handler to the trigger
  12.     $(settings.objSlideTrigger).bind('click' , function() {
  13.         //If the panel isn't out
  14.         if(!$(settings.objSlidePanel).hasClass('out')){$(settings.objSlidePanel).animate({'left' : '0px'});
  15.             //Add the out class
  16.             $(settings.objSlidePanel).addClass('out');
  17.         }
  18.         else {
  19.             //Otherwise, animate it back in
  20.             $(settings.objSlidePanel).animate({'left' : '-253px'});
  21.             //Remove the out class
  22.             $(settings.objSlidePanel).removeClass('out');
  23.         }
  24.     });
  25. }
  26. $(document).ready(function() {
  27.     slideOutTab();
  28. });
  29. </script>
  30.  
  31.  
  32. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
  33. <script src="http://static.tumblr.com/ypi9dez/FOcmfp6at/jquery.jscrollpane.min.js" type="text/javascript"></script>
  34. <script src="http://static.tumblr.com/ypi9dez/ITcmfp6cd/jquery.mousewheel.js" type="text/javascript"></script>
  35.  
  36. <script type="text/javascript">
  37. $(document).ready(function(){
  38.    function checkWidth() {
  39.        var windowSize = $(window).width();
  40.  
  41.        if (windowSize <= 801) {
  42.            $("#header .jspVerticalBar").hide();
  43.            $("#header .jspHorizontalBar").hide();
  44.        }
  45.        else if (windowSize >= 200) {
  46.            $('.hs-content-scroller').jScrollPane();
  47.        }
  48.    }
  49.  
  50.    // Execute on load
  51.    checkWidth();
  52.    // Bind event listener
  53.    $(window).resize(checkWidth);
  54. });
  55. </script>
  56.  
  57.  
  58. <script type="text/javascript" src="http://static.tumblr.com/8yo5xxv/Ebrm7rdy0/botao.js"></script>
  59.  
  60.  
  61. <link rel="shortcut icon" href="{favicon}"/>
  62. <title>{title}</title>
  63.  
  64.  
  65. <link href='http://fonts.googleapis.com/css?family=Antic+Slab' rel='stylesheet' type='text/css'>
  66. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  67. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  68.  
  69. <link href="http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300,400,700t" rel="stylesheet" type="text/css">
  70.  
  71. <script type="text/javascript"
  72. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  73.  
  74. <script>
  75.  
  76.  
  77.  
  78. $(document).ready(function() {
  79.  
  80.    //
  81.  
  82.  
  83.  
  84. //When you click on a link with class of poplight and the href starts with a #
  85.  
  86. $('a.poplight[href^=#]').click(function() {
  87.  
  88.    var popID = $(this).attr('rel'); //Get Popup Name
  89.  
  90.    var popURL = $(this).attr('href'); //Get Popup href to define size
  91.  
  92.  
  93.  
  94.    //Pull Query & Variables from href URL
  95.  
  96.    var query= popURL.split('?');
  97.  
  98.    var dim= query[1].split('&');
  99.  
  100.    var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  101.  
  102.  
  103.  
  104.    //Fade in the Popup and add close button
  105.  
  106.    $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://media.tumblr.com/484d3a83f442b46104bb80382d607820/tumblr_inline_mhzf9k7SMs1qz4rgp.png" width="63" height="35" class="btn_close" title="Close Window" alt="Close"/></a>');
  107.  
  108.  
  109.  
  110.    //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
  111.  
  112.    var popMargTop = ($('#' + popID).height() + 80) / 2;
  113.  
  114.    var popMargLeft = ($('#' + popID).width() + 80) / 2;
  115.  
  116.  
  117.  
  118.    //Apply Margin to Popup
  119.  
  120.    $('#' + popID).css({
  121.  
  122.        'margin-top' : -popMargTop,
  123.  
  124.        'margin-left' : -popMargLeft
  125.  
  126.    });
  127.  
  128.  
  129.  
  130.    //Fade in Background
  131.  
  132.    $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  133.  
  134.    $('#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
  135.  
  136.  
  137.  
  138.    return false;
  139.  
  140. });
  141.  
  142.  
  143.  
  144. //Close Popups and Fade Layer
  145.  
  146. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer…
  147.  
  148.    $('#fade , .popup_block').fadeOut(function() {
  149.  
  150.        $('#fade, a.close').remove();  //fade them both out
  151.  
  152.    });
  153.  
  154.    return false;
  155.  
  156. });
  157.  
  158.  
  159.  
  160.  
  161.  
  162. });
  163.  
  164. </script>
  165.  
  166. </head>
  167. <!-- css scripts e afins -->
  168.  
  169.  
  170. <style type="text/css">
  171.  
  172.  
  173.  
  174. body {background:  #f7f7f7;
  175. color: #777;  
  176. line-height: 17px;
  177. font: 12px arial;
  178. text-align: justify;
  179. }
  180.  
  181. #page  {
  182. width: 806px;
  183. background: #transparent;
  184. background-repeat: repeat-y;
  185. margin-left: auto;
  186. margin-right: auto;}
  187.  
  188. #content {
  189. width: 806px;
  190. background: #transparent;
  191. background-repeat: repeat-y;
  192. margin-left: auto;
  193. margin-right: auto;}
  194.  
  195. #sidebar {
  196. background: #transparent;
  197. width: 207px;
  198. float: left;
  199. margin-top: 50px;
  200. position: absolute;}
  201.  
  202. #main {
  203. background-color: #transparent;
  204. width: 810px;;
  205. float: left;
  206. position: relative; z-index: 10000;
  207. margin-left: 30px;
  208. margin-top: -8px;}
  209.  
  210. .caixa {background: #fafafa; z-index: 10000; overflow: hidden; color: #777;
  211. {block:IndexPage}margin: 5px; float: left; width: 260px; padding: 0px; position: relative;{/block:IndexPage}
  212. {block:PermalinkPage}text-align: center; width: 500px; padding: 2px; {/block:PermalinkPage}}
  213.  
  214. #footer {
  215. background: #transparent;
  216. background-repeat:no-repeat;
  217. background-position: bottom;
  218. width: 900px;
  219. height: 44px;
  220. clear: both; }
  221.  
  222.  
  223.  
  224. /*** Formatação de texto ***/
  225.  
  226.  
  227.  
  228. b, strong {color: #d2c286; TEXT-DECORATION: none; border-bottom: 1px dashed #none;
  229. }
  230. u {color: #7197ad; TEXT-DECORATION: none; border-bottom: 1px solid #4BA2C6;
  231. }
  232. s, strike {color: #dedcda;
  233. }
  234. i {color: #c3dbea; TEXT-DECORATION: none; border-bottom: 1px dotted #none;
  235. }
  236. em { color: #dedcda; TEXT-DECORATION: none; border-bottom: 1px dashed #none;
  237. }
  238. ul {color: #dedcda; TEXT-DECORATION: none; border-bottom: 1px dotted #none;
  239. }
  240. x {color: #fff; TEXT-DECORATION: none; border-bottom: 1px dotted #none;
  241. }
  242.  
  243. a:link, a:active, a:visited {
  244. color: #d2c286;
  245. text-decoration: none;
  246. cursor: pointer;}
  247.  
  248. a:hover { color: #fff;
  249. text-decoration: none;
  250. cursor: pointer;}
  251.  
  252.  
  253. ::-moz-selection {background: #eee; color: #fff;}
  254. ::selection {background: #eee; color:#fff;}
  255.  
  256. pre { font: 11px "04b03"; width: auto; height: auto; overflow: auto; color: #ffc59b; background: #f5f5f5; padding:5px;}
  257.  
  258. #navigation, #navigation a{
  259. color: #2b2b2b;}
  260.  
  261. #navigation{
  262. color: #2b2b2b;}
  263. #navigation a{
  264. color: #2b2b2b;}
  265.  
  266. #navigation, #navigation .nav-icon-bg{
  267. background: url('URL') fixed #2b2b2b;}
  268.  
  269. #navigation .nav-icon hr {
  270. background: #2b2b2b;}
  271.  
  272. hr {
  273.    background: rgba(0,0,0,0.12);
  274.    height: 1px;
  275.    margin: 0;
  276.    padding: 0;
  277.    border: none;}
  278.    
  279. #navigation {
  280. position: fixed;
  281. z-index: 1000;
  282. left: -260px;
  283. top: 0;
  284. height: 100%;
  285. transition: all 0.4s;
  286. -moz-transition: all 0.4s;
  287. -webkit-transition: all 0.4s;
  288. -ms-transition: all 0.4s;
  289. -o-transition: all 0.4s;}
  290.  
  291. #navigation:hover, .navigation-active {
  292. left: 0 !important;}
  293.  
  294. #navigation .descrip{
  295. font-family: 'Imprima', sans-serif;
  296. font-size: 10px;
  297. color: #969696;
  298. width: 230px;
  299. margin-left: 18px;}
  300.  
  301. .navigation-inner {
  302. width: 270px;
  303. padding: 30px 0 0 0;
  304. margin: 0 0 90px 0;
  305. height: 100%;}
  306.  
  307. #navigation .nav-icon-bg {
  308. width: 16px;
  309. height: 17px;
  310. padding: 9px 7px;
  311. position: absolute;
  312. top: 100px;
  313. right: -15px;
  314. z-index: -1;}
  315.  
  316. #navigation .nav-icon {
  317. width: 16px;
  318. padding: 9px 7px;
  319. position: absolute;
  320. top: 100px;
  321. right: -15px;
  322. z-index: 1000000;
  323. overflow: visible !important;}
  324.  
  325. #navigation .nav-icon hr {
  326. height: 3px;
  327. margin: 2px 0;
  328. width: 16px;}
  329.  
  330.  
  331. /*** SCROLLBAR PANE ***/
  332. .hs-content-scroller .jspVerticalBar, .hs-content-scroller .jspHorizontalBar {
  333. opacity: 0;
  334. transition: all 0.4s;
  335. -moz-transition: all 0.4s;
  336. -webkit-transition: all 0.4s;
  337. -ms-transition: all 0.4s;
  338. -o-transition: all 0.4s;}
  339.  
  340. .hs-content-scroller:hover .jspVerticalBar, .hs-content-scroller.jspHorizontalBar{
  341. opacity: 1;}
  342.  
  343. .jspContainer{
  344. overflow: hidden;
  345. position: relative;}
  346.  
  347. .jspPane{
  348. position: absolute;}
  349.  
  350. .jspVerticalBar{
  351. position: absolute;
  352. top: 0;
  353. right: 0;
  354. width: 10px;
  355. height: 100%;
  356. background: none;}
  357.  
  358. .jspHorizontalBar{
  359. position: absolute;
  360. bottom: 0;
  361. left: 0;
  362. width: 100%;
  363. height: 10px;
  364. background: none;}
  365.  
  366. .jspVerticalBar *, .jspHorizontalBar *{
  367. margin: 0;
  368. padding: 0;}
  369.  
  370. .jspCap{
  371. display: none;}
  372.  
  373. .jspHorizontalBar .jspCap{
  374. float: left;}
  375.  
  376. .jspTrack{
  377. background: none;
  378. position: relative;}
  379.  
  380. .jspDrag{
  381. background: #2b2b2b;
  382. opacity: 0.5;
  383. position: relative;
  384. top: 0;
  385. left: 0;
  386. cursor: pointer;}
  387.  
  388. .jspHorizontalBar .jspTrack, .jspHorizontalBar .jspDrag{
  389. float: left;
  390. height: 100%;}
  391.  
  392. .jspArrow{
  393. background: #2b2b2b;
  394. text-indent: -20000px;
  395. display: block;
  396. cursor: pointer;}
  397.  
  398. .jspArrow.jspDisabled{
  399. cursor: default;
  400. background: #2b2b2b;}
  401.  
  402. .jspVerticalBar .jspArrow{
  403. height: 10px;}
  404.  
  405. .jspHorizontalBar .jspArrow{
  406. width: 10px;
  407. float: left;
  408. height: 100%;}
  409.  
  410. .jspVerticalBar .jspArrow:focus{
  411. outline: none;}
  412.  
  413. .jspCorner{
  414. background: #2b2b2b;
  415. float: left;
  416. height: 100%;}
  417.  
  418. /* Yuk! CSS Hack for IE6 3 pixel bug :( */
  419. * html .jspCorner{
  420. margin: 0 -3px 0 0;}
  421.  
  422.  
  423.  
  424.  
  425.  
  426.  
  427.  
  428.  
  429.  
  430. /** títulos e tags **/
  431.  
  432. .h1 {font-family:'Yanone Kaffeesatz', helvetica; font-size:19px; text-align: center;text-shadow: 0 1px 1px #FFF;margin:-1px 2px 6px 3px;color: #000;border-bottom: 2px solid: #ffb1b2;background: #transparent; margin:0px;padding:3px; background: #ffff; border-radius:0px;border-bottom:1px solid #f5f5f5;}
  433.  
  434. h2 {font-family:'Yanone Kaffeesatz', helvetica; font-size:17px; text-align: center;text-shadow: 0 1px 1px #FFF;margin:-1px 2px 6px 3px;color: #777;border-bottom: 2px solid: #ffb1b2;background: #transparent; margin:0px;padding:3px; background: #ffff; border-radius:0px;}
  435.  
  436.  
  437. .faixa2 {font-family:'Yanone Kaffeesatz', helvetica; font-size:19px; text-align: center;text-shadow: 0 1px 1px #FFF;margin:-1px 2px 6px 3px;color: #000;border-bottom: 2px solid: #ffb1b2;background: #transparent; margin:0px;padding:3px; background: #ffff; border-radius:0px;border-bottom:1px solid #f5f5f5;}
  438.  
  439. .faixa33 {Margin:top:-5px; margin-left:-20px;}
  440.  
  441. .faixa32 {font: 10px "04b03"; text-align: center; background:#dfbded;  padding:5px;-webkit-transition-duration: .50s; color:#fff; text-shadow:1px 1px 0px #d5ade6;border:1px solid #d5ade6;-moz-box-shadow: inset 0 0 10px #a6d7e3;
  442. -webkit-box-shadow: inset 0 0 10px #b27cc8;
  443. box-shadow: inset 0 0 10px #b27cc8;border-radius:0px;}
  444.  
  445. .wishlist { margin-bottom : 1px; display : block;font-size: 10px; font-family: arial; color: #777; font-style: normal; text-align: justify; letter-spacing : 1;background : #f5f5f5 ;  padding: 5px; padding-left:5px;-webkit-transition-duration: .80s; color:999; text-indent : 8px; border-right: 0px solid #ff8d8d;}
  446.  
  447. .wishlist:hover {margin-bottom : 1px; display : block;font-size: 10px; font-family: arial; color: #777; font-style: normal; text-align: justify; letter-spacing : 1;background : #f5f5f5 ;  padding: 5px; padding-left:5px;-webkit-transition-duration: .80s; color:999; text-indent : 8px; border-right: 0px solid #ff8d8d;}
  448.  
  449.  
  450. #topo {position: absolute; z-index:1000; width: 233px; height:3px; background-color: #9e7546; top: -10px; left:-30px;}
  451. #lado1 {position: absolute; z-index:1000; width: 3px; height:306px; background-color: #E14F65; top: -30px; left:-10px;}
  452.  
  453.  
  454.  
  455. /* --- Reblogue e outros ------------------------------- */
  456. .reblogue{
  457.          margin-top: -25px;
  458.          margin-left: 145px;
  459.          position: absolute;
  460.          opacity: 0;
  461.          -webkit-transition: all 1s ease;
  462.          -moz-transition: all 1s ease;
  463.          -o-transition: all 1s ease;
  464.          transition: all 1s ease;
  465.          }
  466.          
  467.  
  468. .box:hover .reblogue{
  469.          opacity: 1;
  470.          margin-bottom: 5px;
  471.          -webkit-transition: all 1s ease;
  472.          -moz-transition: all 1s ease;
  473.          -o-transition: all 1s ease;
  474.          transition: all 1s ease;
  475.          }      
  476.  
  477. .likep a:hover {
  478.       background-position: 0px 0px;
  479.       }
  480. .likep a {
  481.       background: url("http://static.tumblr.com/8yo5xxv/hDOm5ooyh/heart.png") no-repeat;
  482.       background-position: 0px 0px;
  483.       z-index: 9999999;
  484.       -webkit-transition: all 0s linear;
  485.       -moz-transition: all 0s linear;
  486.       transition: all 0s linear;
  487.       margin-top: -22px;
  488.       margin-left: 28px;
  489.       display: inline-block;
  490.       position: absolute;}
  491. .likep img {
  492.       width: 21px;
  493.       height: 20px;
  494.       webkit-transition: all 0.2s linear;
  495.       -webkit-transition: all 0.2s linear;
  496.       -moz-transition: all 0.2s linear;
  497.       transition: all 0.2s linear;}
  498. #likeiframe {
  499.       display: none;
  500.       }
  501.  
  502. .notas{
  503.            margin-top: -25px;
  504.            margin-left: 55px;
  505.            position: absolute;
  506.            opacity: 0;
  507.            -webkit-transition: all 1s ease;
  508.            -moz-transition: all 1s ease;
  509.            -o-transition: all 1s ease;
  510.            transition: all 1s ease;
  511.            }
  512.            
  513. .box:hover .notas{
  514.            opacity: 1;
  515.            -webkit-transition: all 1s ease;
  516.            -moz-transition: all 1s ease;
  517.            -o-transition: all 1s ease;
  518.            transition: all 1s ease;
  519.            margin-left: 5px;}
  520.            
  521. .notas a{
  522.            background: rgba(0,0,0,0.5);
  523.            padding: 3px 4px 2px 4px;
  524.            font-family: Trebuchet MS;
  525.            font-weight: bold;
  526.            text-align: center;
  527.            display: inline-block;
  528.            color: #fff;
  529.            -webkit-border-radius: 2px;
  530.            -moz-border-radius: 2px;
  531.            border-radius: 2px;
  532.            font-size: 10px;}
  533.  
  534.  
  535.  
  536.  
  537. /*** Quote estilo por: things-to-help-you***********/
  538. .quote  {font-family: 'Play', sans-serif;  font-size: 12px;  text-align:justy; padding: 4px; color: #fff; }
  539. .quotem {overflow: hidden; padding: 5px; background: #000; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px;}
  540. .bottomq {background: url('http://media.tumblr.com/0e24ece4a01b8b3e85d39e586199b644/tumblr_inline_mj28ijoS1M1qz4rgp.png') no-repeat; width: 69px; height: 19px; margin-left: 10px; margin-bottom: 15px;}
  541. .ci {color: #999; display: inline-block;background: #f5f5f5; padding: 3px; margin-left: 20px; margin-top: -14px; margin-bottom: 10px;-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;}
  542. .ci a {color: #000;}
  543. .ci a:hover {color: #fff;}
  544.  
  545.  
  546.  
  547. /*** caixa não mexa em nada! ***/
  548. .box  {overflow:hidden; color: #777; font-family:'Imprima', sans-serif; font-size:11px; background-color: #fafafa; padding:5px;  -webkit-box-shadow: 0px 0px 1px 1px #e5bd9b;
  549. box-shadow: 0px 0px 1px 1px #e5bd9b; z-index: 10000;box-shadow: 0 1px 1px #e5bd9b;}  
  550.  
  551.  
  552. .boxsidebar { color: #666; font: 9px arial; background-color: #fff; padding:5px;  z-index: 10000;  box-shadow: 0px 0px 1px 1px #eee5dd;}
  553.  
  554. .boxsidebar1 {background: #transparent; font-size:11px; font-family:arial; color:#999;}
  555.  
  556.  
  557.  
  558.  
  559. /*** tamanho, borda, opacidade em imagens **/
  560.  
  561. .border1 {background:#fff; padding:1px; border:5px solid #B2D6D1;border-radius:0px; filter: alpha(opacity=55); opacity: 0.55; -moz-opacity:0.15; -webkit-transition-duration: .99s; -moz-transition-duration: .99s;margin-right:5px;}
  562.  
  563. .border1:hover {filter:alpha(opacity=100); -moz-opacity:1.0; opacity:1.0; -webkit-transition-duration: .99s; -moz-transition-duration: .99s; }
  564.  
  565. .border3 {filter: alpha(opacity=55); opacity: 0.55; -moz-opacity:0.15;}
  566.  
  567. #fade { /*—Transparent background layer—*/
  568.  
  569. display: none; /*—hidden by default—*/
  570.  
  571. background: #777;
  572.  
  573. position: fixed; left: 0; top: 0;
  574.  
  575. width: 100%; height: 100%;
  576.  
  577. opacity: .80;
  578.  
  579. z-index: 9999;
  580.  
  581. }
  582.  
  583. .popup_block{
  584.  
  585. display: none; /*—hidden by default—*/
  586.  
  587. background: #fff;
  588.  
  589. padding: 20px;
  590.  
  591. border: 0px solid #dccedc;
  592.  
  593. float: left;
  594.  
  595. font-size: 11px;
  596.  
  597. font-family: verdana;
  598.  
  599. position: fixed;
  600.  
  601. top: 50%; left: 50%;
  602.  
  603. z-index: 99999;
  604.  
  605. /*—CSS3 Box Shadows—*/
  606.  
  607. -webkit-box-shadow: 0px 0px 1px #eee;
  608.  
  609. -moz-box-shadow: 0px 0px 1px #eee;
  610.  
  611. box-shadow: 0px 0px 1px #eee;
  612.  
  613. /*—CSS3 Rounded Corners—*/
  614.  
  615. -webkit-border-radius: 10px;
  616.  
  617. -moz-border-radius: 10px;
  618.  
  619. border-radius: 10px;
  620.  
  621. }
  622.  
  623. img.btn_close {
  624.  
  625. float: right;
  626.  
  627. margin: -50px -50px 0 0;
  628.  
  629. }
  630.  
  631. /*—Making IE6 Understand Fixed Positioning—*/
  632.  
  633. *html #fade {
  634.  
  635. position: absolute;
  636.  
  637. }
  638.  
  639. *html .popup_block {
  640.  
  641. position: absolute;
  642.  
  643. }
  644.  
  645. /*** Formatação de texto ***/
  646.  
  647.  
  648. /*** blockquote e tabelinhas ***/
  649.  
  650.  
  651. blockquote {background: #f5f5f5; color:#000; font-size: 11px; font-family: arial;box-shadow: 0px 0px 1px 1px #eee5dd;margin:5px; padding:5px;}
  652.  
  653. .blockquote {background: #f5f5f5; color:#000; font-size: 11px; font-family: arial;box-shadow: 0px 0px 1px 1px #eee5dd;margin:5px; padding:5px;}
  654.  
  655. .menuzinho {float: left; margin-left:90px;margin-top:10px;}
  656.  
  657.  
  658. .menu2 {position:absolute; margin-top:-191px; margin-left: -50px;}
  659.  
  660.  
  661. .menu1 {background: #fff; box-shadow: 0px 0px 1px 1px #eee5dd; margin:0px; width:30px;padding:4px;}
  662.  
  663. .menuHeart a {color: #fff; background: rgba(0, 0, 0, 0.5); padding-left:5px; padding-right:5px; padding-top:2px;padding-bottom:3px;border-radius:1px;font-family:arial; font-size:8px;transition: all ease-out 0.99s 0.9s;-webkit-transition: all 1s ease;-moz-transition: all 1s ease;-o-transition: all 1s ease;transition: all 1s ease;display:block; margin-bottom:1px; width:20px; }
  664.  
  665. .menuHeart a:hover {color: #fff; background: rgba(0, 0, 0, 0.1); padding-left:5px; padding-right:5px; padding-top:2px;padding-bottom:3px;border-radius:2px;font-family:arial; font-size:8px;transition: all ease-out 0.99s 0.9s;-webkit-transition: all 1s ease;-moz-transition: all 1s ease;-o-transition: all 1s ease;transition: all 1s ease;}
  666.  
  667. /* Ask estilo por tthy */
  668. .pergunta {text-align: justify; background: #eaf4f8; padding: 9px; overflow: hidden; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;   font-family: 'Imprima', sans-serif; font-style: italic;font-size: 11px; color: #999; text-shadow: 1px 1px 0px #d3f4eb;}
  669.  
  670. .perguntou {background: #000; padding: 10px; -webkit-border-bottom-right-radius: 6px; -webkit-border-bottom-left-radius: 6px; -moz-border-radius-bottomright: 6px; -moz-border-radius-bottomleft: 6px; border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; margin-top: -10px; font-family: 'Imprima', sans-serif; font-size: 8px; font-style: normal; color: #fff; text-shadow: 0px 0px 0px #d3f4eb; text-transform: uppercase; margin-bottom: 4px; margin-left: -5px; margin-right: -5px; box-shadow: 0 4px 0px -2px rgba(0,0,0,0.1);}
  671.  
  672. .perguntou a {color: #fff;}
  673. .perguntou g {color: #fff;}
  674. .iconask {float: left; margin-right: 5px; -webkit-border-top-left-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-radius-topleft: 5px; -moz-border-radius-bottomleft: 5px; border-top-left-radius: 5px; border-bottom-left-radius: 5px; margin-top: -9px; margin-left: -11px;}
  675. .resposta {background: #f5f4f4; padding: 3px; margin-top: 8px; text-align: justify;line-height: 19px;-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;font-family:'Imprima', sans-serif; }
  676.  
  677. /*** caixa e extra  *********************************************/
  678. .caixa1  {background: #fff; overflow: hidden; padding: 5px;font-family: Verdana, Geneva, sans-serif;font-size: 8pt;color: #888888;text-align: justify;outline: 0px solid #; margin-bottom: 5px; width: 490px;}  
  679. .extra {border-left: 4px solid #adc4d2; display : block;border-bottom : 1px solid #fff;background-repeat : no-repeat;text-indent : 5px;vertical-align : middle;text-decoration : none;margin-bottom : 1px;background: #f7f7f7; line-height: 18px;}
  680. .extra a {padding-right: 6px; color: #a38fad; border-right: dotted 1px #e7daee; text-shadow: 1px 1px 1px #;}
  681.  
  682.  
  683. /* Chat por Anna (livelikeasuicide) *********/
  684. .chat {background: #eee; margin: 0; font-size:
  685. 9px; font-family: arial;}
  686. .chat .chat1 {margin-left: 0px;}
  687. .chat .chat1 .chat2 {background: #f5f5f5; color: #777;
  688. margin-bottom: 1px; padding: 4px 5px 4px 5px;} /* Primeira linha */
  689. .chat .chat1 .chat2.even {background: #dde7ee;
  690. color: #999;} /* Segunda linha */
  691. .chat .chat1 .chat2 span{font-weight: bold;}
  692.  
  693. .trackid {padding: 5px;
  694. background: #f5f5f5;
  695. color: #999;
  696. width:240px;
  697. margin-top: 1px;
  698. margin-left: 0px;
  699. margin-right: 0px;
  700. text-shadow: 0px 0px 1px #fff;}
  701.  
  702. .trackid2 {padding: 10px;
  703. background: #f5f5f5;
  704. color: #999;
  705. width: 230px;
  706. margin-top: 1px;
  707. margin-left: 0px;
  708. margin-right: 0px;}
  709.  
  710. .position {position:absolute; width:10px; margin-left:-40px; margin-top:60px}
  711.  
  712.  
  713.  
  714.  
  715.  
  716. </style>
  717.  
  718.  
  719. <body>
  720. <!-----SLIDEBAR----->
  721. <div id="navigation">
  722. <!-----ICONE----->
  723. <div class="nav-icon-bg"></div>
  724. <div class="nav-icon"><hr><hr><hr></div>
  725. <!-----FIM DO ICONE----->
  726. <div class="navigation-inner hs-content-scroller">
  727. <div class="descrip"><img src="http://media.tumblr.com/0b9d46cceb3cfdae34fb5b0a79bab0e7/tumblr_inline_mplgk9UllN1qz4rgp.png" style="float: left;  margin-right: 4px; border-radius: 50px;width:64px;">{description}</div>
  728.  
  729. <div class="menuzinho">
  730. <a href="/" title="Home"><img src="http://media.tumblr.com/bc4762c9b61b4050056149d00eedc989/tumblr_inline_mpy4hilsLW1qz4rgp.png"></a>
  731.  
  732. <a href="/ask" title="Ask me"><img src="http://media.tumblr.com/e796a8578ef7fbdcc7c0d7c9fb1b74bd/tumblr_inline_mpy4hkca261qz4rgp.png"></a>
  733.  
  734. <a href="LINK" title="Twitter"><img src="http://media.tumblr.com/bc4762c9b61b4050056149d00eedc989/tumblr_inline_mpy4hilsLW1qz4rgp.png"></a>
  735.  
  736. <a href="LINK" title="Facebook"><img src="http://media.tumblr.com/e796a8578ef7fbdcc7c0d7c9fb1b74bd/tumblr_inline_mpy4hkca261qz4rgp.png"></a>
  737.  
  738. <a href="#?w=500" rel="tumblr" class="poplight" title="creditos"><img src="http://media.tumblr.com/bc4762c9b61b4050056149d00eedc989/tumblr_inline_mpy4hilsLW1qz4rgp.png"></a>
  739.  
  740. </div>
  741. </div>
  742. </div>
  743. <!-----FIM DA SLIDEBAR----->
  744.  
  745.  
  746. <div id="content">
  747.  
  748.  
  749.  
  750.  
  751.  
  752. <div id="sidebar">
  753.  
  754.  
  755.  
  756.  
  757. </div>
  758.  
  759.  
  760.    
  761.  
  762.  
  763.  
  764.  
  765.  
  766. <div id="main">
  767.  
  768.  
  769.  
  770. {block:Posts}
  771. <div class="caixa"> <!--- Abrindo a div da caixa --->
  772.  
  773. <!--- Texto --->
  774. {block:Text}<div class="box">
  775. {block:Title}<div class="h1">{Title}</div>{/block:Title}
  776. {body}
  777.  
  778. <!---------------- DATA DOS POSTS ------------->
  779. {block:IndexPage}
  780. <div class="reblogue">
  781. <a href="{ReblogURL}" target="_blank"><img src="http://static.tumblr.com/8yo5xxv/k7rm3zr0o/reblog.png"></a>
  782. <div class="likep"> <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"> <img src="http://static.tumblr.com/ifqwhnb/b6Lm5chs7/espa__o.png" width="25" height="35" alt="Like this post" id="likeimage{PostID}"/> </a></div>
  783. </div>
  784. {block:NoteCount}<div class="notas">
  785. <a href="{Permalink}">{NoteCount}</a>
  786. </div>{/block:NoteCount}
  787. {/block:IndexPage}</div>
  788.  
  789. {/block:Text}
  790.  
  791. <!--- Photo --->
  792. {Block:Photo}
  793. <div class="box">
  794. {block:IndexPage}{LinkOpenTag}<img src="{PhotoURL-250}" width="249px;">{LinkCloseTag}{/block:IndexPage}
  795. {block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" >{LinkCloseTag}{/block:PermalinkPage}
  796. {block:Caption}{Caption}{/block:Caption}
  797.  
  798. <!---------------- DATA DOS POSTS ------------->
  799. {block:IndexPage}
  800. <div class="reblogue">
  801. <a href="{ReblogURL}" target="_blank"><img src="http://static.tumblr.com/8yo5xxv/k7rm3zr0o/reblog.png"></a>
  802. <div class="likep"> <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"> <img src="http://static.tumblr.com/ifqwhnb/b6Lm5chs7/espa__o.png" width="25" height="35" alt="Like this post" id="likeimage{PostID}"/> </a></div>
  803. </div>
  804. {block:NoteCount}<div class="notas">
  805. <a href="{Permalink}">{NoteCount}</a>
  806. </div>{/block:NoteCount}
  807. {/block:IndexPage}</div>
  808. {/Block:Photo}
  809.  
  810. <!--- Photoset --->
  811. {block:Photoset}<div class="box">
  812. {block:IndexPage}{LinkOpenTag}{Photoset-250}{LinkCloseTag}{/block:IndexPage}
  813. {block:PermalinkPage}{LinkOpenTag}{Photoset-500}{LinkCloseTag}{/block:PermalinkPage}
  814. {block:Caption}{Caption}{/block:Caption}
  815.  
  816. <!---------------- DATA DOS POSTS ------------->
  817. {block:IndexPage}
  818. <div class="reblogue">
  819. <a href="{ReblogURL}" target="_blank"><img src="http://static.tumblr.com/8yo5xxv/k7rm3zr0o/reblog.png"></a>
  820. <div class="likep"> <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"> <img src="http://static.tumblr.com/ifqwhnb/b6Lm5chs7/espa__o.png" width="25" height="35" alt="Like this post" id="likeimage{PostID}"/> </a></div>
  821. </div>
  822. {block:NoteCount}<div class="notas">
  823. <a href="{Permalink}">{NoteCount}</a>
  824. </div>{/block:NoteCount}
  825. {/block:IndexPage}</div>
  826. {/block:Photoset}
  827.  
  828. <!--- Quote --->
  829. {block:Quote}<div class="box">
  830. <center><div class="quotem">
  831. <div class="quote">{Quote}</div>  
  832. </div>
  833. <div class="bottomq"></div>
  834. <div class="ci">{block:Source}
  835. <div class="source">{Source}</div>
  836. {/block:Source}</div></center>
  837.  
  838. <!---------------- DATA DOS POSTS ------------->
  839. {block:IndexPage}
  840. <div class="reblogue">
  841. <a href="{ReblogURL}" target="_blank"><img src="http://static.tumblr.com/8yo5xxv/k7rm3zr0o/reblog.png"></a>
  842. <div class="likep"> <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"> <img src="http://static.tumblr.com/ifqwhnb/b6Lm5chs7/espa__o.png" width="25" height="35" alt="Like this post" id="likeimage{PostID}"/> </a></div>
  843. </div>
  844. {block:NoteCount}<div class="notas">
  845. <a href="{Permalink}">{NoteCount}</a>
  846. </div>{/block:NoteCount}
  847. {/block:IndexPage}</div>
  848. {/block:Quote}
  849.  
  850. <!--- Chat --->
  851. {block:Chat}<div class="box">
  852. <div class="chat">
  853. <div class="chat1">
  854. {block:Lines}
  855. <div class="chat2 {Alt}">
  856. {block:Label}
  857. <span>{Label}</span>
  858. {/block:Label}
  859. {Line}</div>
  860. {/block:Lines}
  861. </div></div>
  862.  
  863. <!---------------- DATA DOS POSTS ------------->
  864. {block:IndexPage}
  865. <div class="reblogue">
  866. <a href="{ReblogURL}" target="_blank"><img src="http://static.tumblr.com/8yo5xxv/k7rm3zr0o/reblog.png"></a>
  867. <div class="likep"> <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"> <img src="http://static.tumblr.com/ifqwhnb/b6Lm5chs7/espa__o.png" width="25" height="35" alt="Like this post" id="likeimage{PostID}"/> </a></div>
  868. </div>
  869. {block:NoteCount}<div class="notas">
  870. <a href="{Permalink}">{NoteCount}</a>
  871. </div>{/block:NoteCount}
  872. {/block:IndexPage}</div>
  873. {/block:Chat}
  874.  
  875. <!--- Link --->
  876. {block:Link}<div class="box">
  877. <a href="{URL}" target="{Target}"><div class="h1">{Name}</div></a>
  878. {block:Description}{Description}{/block:Description}
  879.  
  880. <!---------------- DATA DOS POSTS ------------->
  881. {block:IndexPage}
  882. <div class="reblogue">
  883. <a href="{ReblogURL}" target="_blank"><img src="http://static.tumblr.com/8yo5xxv/k7rm3zr0o/reblog.png"></a>
  884. <div class="likep"> <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"> <img src="http://static.tumblr.com/ifqwhnb/b6Lm5chs7/espa__o.png" width="25" height="35" alt="Like this post" id="likeimage{PostID}"/> </a></div>
  885. </div>
  886. {block:NoteCount}<div class="notas">
  887. <a href="{Permalink}">{NoteCount}</a>
  888. </div>{/block:NoteCount}
  889. {/block:IndexPage}</div>
  890. {/block:Link}
  891.  
  892. <!--- Audio --->
  893. {block:Audio}<div class="box">
  894. <div class="">
  895. {block:AlbumArt}
  896. <img style="float: left; margin-right: 0px; margin-left: 1px;  margin-top: 1px;"src="{AlbumArtURL}" width="54"  >
  897. {/block:AlbumArt}
  898. <div class="trackid2">{AudioPlayerGrey}</div>
  899. {block:TrackName}
  900. <div class="trackid">"{TrackName}"</div>
  901. {/block:TrackName}
  902. {block:Artist}
  903. <div class="trackid">{Artist}</div>
  904. {/block:Artist}
  905. <div class="trackid">({PlayCount}) plays</div>
  906.  
  907.  
  908. <!---------------- DATA DOS POSTS ------------->
  909. {block:IndexPage}
  910. <div class="reblogue">
  911. <a href="{ReblogURL}" target="_blank"><img src="http://static.tumblr.com/8yo5xxv/k7rm3zr0o/reblog.png"></a>
  912. <div class="likep"> <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"> <img src="http://static.tumblr.com/ifqwhnb/b6Lm5chs7/espa__o.png" width="25" height="35" alt="Like this post" id="likeimage{PostID}"/> </a></div>
  913. </div>
  914. {block:NoteCount}<div class="notas">
  915. <a href="{Permalink}">{NoteCount}</a>
  916. </div>{/block:NoteCount}
  917. {/block:IndexPage}</div></div>
  918. {/block:Audio}
  919.  
  920. <!--- Video --->
  921. {block:Video}<div class="box">
  922. {block:Indexpage}{Video-250}{/block:IndexPage}
  923. {block:PermalinkPage}{Video-500}{/block:PermalinkPage}
  924. {block:Caption}{Caption}{/block:Caption}
  925.  
  926. <!---------------- DATA DOS POSTS ------------->
  927. {block:IndexPage}
  928. <div class="reblogue">
  929. <a href="{ReblogURL}" target="_blank"><img src="http://static.tumblr.com/8yo5xxv/k7rm3zr0o/reblog.png"></a>
  930. <div class="likep"> <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"> <img src="http://static.tumblr.com/ifqwhnb/b6Lm5chs7/espa__o.png" width="25" height="35" alt="Like this post" id="likeimage{PostID}"/> </a></div>
  931. </div>
  932. {block:NoteCount}<div class="notas">
  933. <a href="{Permalink}">{NoteCount}</a>
  934. </div>{/block:NoteCount}
  935. {/block:IndexPage}</div>
  936. {/block:Video}
  937.  
  938. {block:Answer}
  939. <div class="box"><div class="pergunta">
  940.  
  941. <div class="perguntou">
  942.  
  943. <img src="{AskerPortraitURL-30}" class="iconask">
  944.  
  945. <g>{Asker}</g>
  946.  
  947. perguntou à {TimeAgo}</div>
  948.  
  949. {Question}</div>
  950.  
  951. <div class="resposta">{Answer}</div>
  952.  
  953.  
  954.  
  955.  
  956. <!---------------- DATA DOS POSTS ------------->
  957. {block:IndexPage}
  958. <div class="reblogue">
  959. <a href="{ReblogURL}" target="_blank"><img src="http://static.tumblr.com/8yo5xxv/k7rm3zr0o/reblog.png"></a>
  960. <div class="likep"> <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"> <img src="http://static.tumblr.com/ifqwhnb/b6Lm5chs7/espa__o.png" width="25" height="35" alt="Like this post" id="likeimage{PostID}"/> </a></div>
  961. </div>
  962. {block:NoteCount}<div class="notas">
  963. <a href="{Permalink}">{NoteCount}</a>
  964. </div>{/block:NoteCount}
  965. {/block:IndexPage}</div>
  966. {/block:Answer}
  967.  
  968. <!--- Fechando a div da caixa --->
  969. </div>
  970.  
  971. {block:PostNotes}
  972. <div class="caixa1">
  973. <div class="extra"><img src="http://static.tumblr.com/ifqwhnb/x5Mm1qzsk/oae9l.png" class="user">
  974. {block:RebloggedFrom} <a href="{ReblogParentURL}"> - Via</a> <a href="{ReblogRootURL}">- From</b></a> {/block:RebloggedFrom}   {block:ContentSource}<a href="{SourceURL}" target=blank> - Source  </a>{/block:ContentSource}</div>
  975. <div class="extra">
  976. <img src="http://static.tumblr.com/ifqwhnb/x5Mm1qzsk/oae9l.png" class="user"> {DayOfMonth},<b> {Month}</b> de {Year}
  977. </div>
  978. <div class="extra">
  979. <img src="http://static.tumblr.com/ifqwhnb/x5Mm1qzsk/oae9l.png" class="user"> {block:HasTags}{/block:HasTags}
  980. <span style="width:auto;">
  981. {block:HasTags}
  982. {block:Tags}
  983. <a class="tag" href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</span>
  984. </div>
  985. <div class="extra">
  986. <img src="http://static.tumblr.com/ifqwhnb/x5Mm1qzsk/oae9l.png" class="user">{NoteCount}
  987. </div>
  988. {PostNotes}  
  989.  
  990. </div>
  991. {/block:PostNotes}
  992.  
  993.  
  994.  
  995. {/block:Posts}
  996. </div>
  997.  
  998.  
  999.  
  1000. <div id="tumblr" class="popup_block">
  1001.  
  1002.  
  1003. <div class="faixa2">Créditos</div><br>
  1004.  
  1005. <div class="wishlist">Theme por: <a href="http://jessierobsten.tumblr.com/"> Jéssie</a></div>
  1006. <div class="wishlist">Ajudas: <a href="http://things-to-help-you.tumblr.com/"> TTHY</a></div>
  1007. <div class="wishlist">Mais ajudas: <a href="http://laspricih.tumblr.com/"> Priscila</a></div>
  1008. <div class="wishlist">Sidebar ajudas: <a href="http://ilovethemes.tumblr.com/"> ILT</a></div>
  1009. <div class="wishlist">Imagens, cores e edições: Photoshop CS5</div>
  1010.  
  1011.  
  1012.  
  1013. </div>
  1014.  
  1015.  
  1016. <div id="footer"></div></div>
  1017.  
  1018.  
  1019.  
  1020.  
  1021.  
  1022.  
  1023.  
  1024.  
  1025. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script>
  1026. <script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>
  1027. <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
  1028.  
  1029. <script type="text/javascript">
  1030. $(window).load(function () {
  1031. $('#main').masonry(),
  1032. $('.masonryWrap').infinitescroll({
  1033. navSelector : "div#navigation",
  1034. nextSelector : "div#navigation a#nextPage",
  1035. itemSelector : ".caixa",
  1036. bufferPx : 1000,
  1037. extraScrollPx: 1000,
  1038. loadingImg : "http://static.tumblr.com/8yo5xxv/3Dem80mch/loading.gif",
  1039. loadingText : "Aguarde...",
  1040.  
  1041. },
  1042. // call masonry as a callback.
  1043. function() { $('#main').masonry({ appendedContent: $(this) });
  1044.  
  1045. }
  1046. );
  1047. });
  1048. </script>
  1049. {block:IndexPage}
  1050. <div class="column navigation" id="navigation">
  1051. {block:Pagination}
  1052. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  1053. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  1054. </div>
  1055. {/block:IndexPage}
  1056.  
  1057. </body>
  1058. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement