Eduarda

Theme floral

Feb 28th, 2013
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 45.27 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">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4.  
  5. <!-----All themes por Duda.R {o-mundo-de-uma-garota} exclusive por Revolutionhtml , não copie nem use como base-------->
  6.  
  7.  
  8.  
  9.  
  10. <meta name="color:background" content="#000" />
  11. <meta name="color:post" content="#fdfdfc" />
  12. <meta name="color:links" content="#aaaaaa" />
  13. <meta name="color:text" content="#aaaaaa" />
  14. <meta name="color:tags" content="#FFC3E7" />
  15. <meta name="color:scrollbar" content="#FFC3E7" />
  16. <meta name="color:sidebar" content="#fff" />
  17. <meta name="color:link" content="#aaa" />
  18. <meta name="color:borda2" content="#383855" />
  19. <meta name="color:frase" content="#aaa" />
  20. <meta name="color:bordaimg" content="#7da89c" />
  21. <meta name="color:bglinks" content="#000" />
  22. <meta name="color:linkshover" content="#383855" />
  23. <meta name="color:textdesc" content="#aaa" />
  24.  
  25.  
  26. <meta name="if:1coluna" content="0"/>
  27.  
  28.  
  29. <meta name="image:foto" content="http://static.tumblr.com/8da27049400133b83c38052fc2d3fcf3/2bh9bxo/9izmivot0/tumblr_static_tumblr_mf34aww0xv1r6z5vjo3_250.png" />
  30.  
  31. <meta name="image:background" content="" />
  32.  
  33. <meta name="image:fundinho2" content="http://static.tumblr.com/6972932685005c65a9ec6a61fbfe5f78/2bh9bxo/Inwmivman/tumblr_static_tumblr_mit9gmcqv01riy7d6o1_500.jpg" />
  34.  
  35. <meta name="text:frase" content="Simples Garota" />
  36. <meta name="text:frase2" content="Então deixa eu te beijar até vc sentir vontade de tirar a roupa" />
  37.  
  38. <meta name="text:Link1" content="/" />
  39. <meta name="text:Link1 Title" content="home" />
  40. <meta name="text:Link2" content="/" />
  41. <meta name="text:Link2 Title" content="link 2" />
  42. <meta name="text:Link3" content="/" />
  43. <meta name="text:Link3 Title" content="link 3" />
  44. <meta name="text:Link4" content="/" />
  45. <meta name="text:Link4 Title" content="link 4" />
  46. <meta name="text:Link5" content="/" />
  47. <meta name="text:Link5 Title" content="link 5" />
  48. <meta name="text:Link6" content="/" />
  49. <meta name="text:Link6 Title" content="link 6" />
  50. <meta name="text:Link7" content="/" />
  51. <meta name="text:Link7 Title" content="link 7" />
  52.  
  53.  
  54. <script type="text/javascript"
  55. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  56.  
  57.  
  58. <head profile="http://gmpg.org/xfn/11">
  59.  
  60.  
  61.  
  62. <script>
  63.  
  64.  
  65.  
  66. $(document).ready(function() {
  67.  
  68. //
  69.  
  70.  
  71.  
  72. //When you click on a link with class of poplight and the href starts with a #
  73.  
  74. $('a.poplight[href^=#]').click(function() {
  75.  
  76. var popID = $(this).attr('rel'); //Get Popup Name
  77.  
  78. var popURL = $(this).attr('href'); //Get Popup href to define size
  79.  
  80.  
  81.  
  82. //Pull Query & Variables from href URL
  83.  
  84. var query= popURL.split('?');
  85.  
  86. var dim= query[1].split('&');
  87.  
  88. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  89.  
  90.  
  91.  
  92. //Fade in the Popup and add close button
  93.  
  94. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/2bh9bxo/iTXmdcocj/sbdb.gif" class="btn_close" title="Volte My boo" alt="Close" /></a>');
  95.  
  96.  
  97. //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
  98.  
  99. var popMargTop = ($('#' + popID).height() + 80) / 2;
  100.  
  101. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  102.  
  103.  
  104.  
  105. //Apply Margin to Popup
  106.  
  107. $('#' + popID).css({
  108.  
  109. 'margin-top' : -popMargTop,
  110.  
  111. 'margin-left' : -popMargLeft
  112.  
  113. });
  114.  
  115.  
  116.  
  117. //Fade in Background
  118.  
  119. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  120.  
  121. $('#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
  122.  
  123.  
  124.  
  125. return false;
  126.  
  127. });
  128.  
  129.  
  130.  
  131. //Close Popups and Fade Layer
  132.  
  133. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  134.  
  135. $('#fade , .popup_block').fadeOut(function() {
  136.  
  137. $('#fade, a.close').remove(); //fade them both out
  138.  
  139. });
  140.  
  141. return false;
  142.  
  143. });
  144.  
  145.  
  146.  
  147.  
  148.  
  149. });
  150.  
  151. </script>
  152.  
  153.  
  154. <script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>
  155.  
  156. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
  157.  
  158.  
  159. <script type="text/javascript"
  160. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  161.  
  162.  
  163. <script type="text/javascript" src="http://static.tumblr.com/me5sfsd/12Qlmj66n/script.js"></script>
  164.  
  165. <script type="text/javascript">
  166. $(window).load(function(){
  167. var $wall = $('#omdg');
  168. $wall.imagesLoaded(function(){
  169. $wall.masonry({
  170. itemSelector: '.baseduh',
  171. isAnimated : true
  172. });
  173. });
  174. $wall.infinitescroll({
  175. navSelector : "div#navigation",
  176. nextSelector : "div#navigation a#nextPage",
  177. itemSelector : '.baseduh',
  178. loadingImg : "http://static.tumblr.com/kwz90l7/bIdlst7ub/transparent.png",
  179. loadingText : " ",
  180. donetext : " ",
  181. extraScrollPx : 9000,
  182. bufferPx : 10000,
  183. debug : false,
  184. errorCallback: function() {
  185. $('#infscr-loading').animate({opacity: .8},2000).fadeOut('normal');
  186. }},
  187. function( newElements ) {
  188. var $newElems = $( newElements );
  189. $newElems.hide();
  190. $newElems.imagesLoaded(function(){
  191. $wall.masonry( 'appended', $newElems, {isAnimated: true, animationOptions: {duration: 750, easing: 'linear', queue: false}}, function(){$newElems.fadeIn('slow');} );
  192. });
  193. }); $('#omdg').show(500);
  194. });
  195. </script>
  196.  
  197.  
  198.  
  199.  
  200. <title>{title}</title>
  201. <link rel="shortcut icon" href="{favicon}" />
  202.  
  203.  
  204.  
  205. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  206.  
  207.  
  208.  
  209.  
  210. <!----------------FONTES-------?-------->
  211. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  212. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono' rel='stylesheet' type='text/css'>
  213. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  214.  
  215. <link href='http://fonts.googleapis.com/css?family=Anonymous+Pro' rel='stylesheet' type='text/css'>
  216.  
  217. <link href='http://fonts.googleapis.com/css?family=Life+Savers' rel='stylesheet' type='text/css'>
  218. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  219. <link href="http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300,400,700t" rel="stylesheet" type="text/css">
  220.  
  221. <link href='http://fonts.googleapis.com/css?family=Rochester' rel='stylesheet' type='text/css'>
  222.  
  223.  
  224. <link href='http://fonts.googleapis.com/css?family=Ruge+Boogie' rel='stylesheet' type='text/css'>
  225.  
  226. <link href='http://fonts.googleapis.com/css?family=ABeeZee|Kameron|Muli|Almendra' rel='stylesheet' type='text/css'>
  227.  
  228. <link href='http://fonts.googleapis.com/css?family=Snippet|Sue+Ellen+Francisco|Andika|Delius+Swash+Caps|Lobster|Redressed|Tangerine|Rancho|Rochester|Lobster+Two|Dancing+Script|Pacifico|Crafty+Girls' rel='stylesheet' type='text/css'>
  229.  
  230. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  231. <link href='http://fonts.googleapis.com/css?family=Raleway+Dots' rel='stylesheet' type='text/css'>
  232. <link href='http://fonts.googleapis.com/css?family=Emilys+Candy|Butterfly+Kids|Federo|Quicksand|Antic+Didone|Josefin+Slab|Raleway+Dots|Cedarville+Cursive|Damion|Dawning+of+a+New+Day|Rancho|Marvel' rel='stylesheet' type='text/css'>
  233.  
  234. <link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic' rel='stylesheet' type='text/css'>
  235. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  236.  
  237.  
  238. <link href='http://fonts.googleapis.com/css?family=Akronim' rel='stylesheet' type='text/css'>
  239.  
  240. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  241. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  242. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  243. <link href='http://fonts.googleapis.com/css?family=Vibur' rel='stylesheet' type='text/css'>
  244. <link href='http://fonts.googleapis.com/css?family=Stalemate' rel='stylesheet' type='text/css'>
  245. <link rel="stylesheet" href="http://static.tumblr.com/5dbytsa/VYmmcwtwj/entrada.css" media="screen"/>
  246. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  247. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono' rel='stylesheet' type='text/css'>
  248. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  249. <!------------------eita duh--------------------->
  250. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  251.  
  252. <script type="text/javascript">
  253. // <![CDATA[
  254. var speed=100; //
  255. var height=3; //
  256. var alink="/"; // page to link text to (set to ="" for no link)
  257.  
  258. /****************************
  259. ****************************/
  260. var wobtxt, wobble, wobcnt=0;
  261. window.onload=function() { if (document.getElementById) {
  262. var i, wobli;
  263. wobble=document.getElementById("wobble");
  264. wobtxt=wobble.firstChild.nodeValue;
  265. while (wobble.childNodes.length) wobble.removeChild(wobble.childNodes[0]);
  266. for (i=0; i<wobtxt.length; i++) {
  267. wobli=document.createElement("span");
  268. wobli.setAttribute("id", "wobb"+i);
  269. wobli.style.position="relative";
  270. wobli.appendChild(document.createTextNode(wobtxt.charAt(i)));
  271. if (alink) {
  272. wobli.style.cursor="pointer";
  273. wobli.onclick=function() { top.location.href=alink; }
  274. }
  275. wobble.appendChild(wobli);
  276. }
  277. setInterval("wobbler()", speed);
  278. }}
  279.  
  280. function wobbler() {
  281. for (var i=0; i<wobtxt.length; i++) document.getElementById("wobb"+i).style.top=Math.round(height*Math.sin(i+wobcnt))+"px"
  282. wobcnt++;
  283. }
  284. // ]]>
  285. </script>
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292. </head>
  293.  
  294. <!----------------FONTES-------♥-------->
  295.  
  296. <link href='http://fonts.googleapis.com/css?family=Alex+Brush' rel='stylesheet' type='text/css'>
  297. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  298. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono' rel='stylesheet' type='text/css'>
  299. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  300. <link href='http://fonts.googleapis.com/css?family=Anonymous+Pro' rel='stylesheet' type='text/css'>
  301. <link href='http://fonts.googleapis.com/css?family=Life+Savers' rel='stylesheet' type='text/css'>
  302. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  303. <link href="http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300,400,700t" rel="stylesheet" type="text/css">
  304. <link href='http://fonts.googleapis.com/css?family=Rochester' rel='stylesheet' type='text/css'>
  305. <link href='http://fonts.googleapis.com/css?family=Akronim' rel='stylesheet' type='text/css'>
  306. <link href='http://fonts.googleapis.com/css?family=Sacramento' rel='stylesheet' type='text/css'>
  307. <link href='http://fonts.googleapis.com/css?family=Ruge+Boogie' rel='stylesheet' type='text/css'>
  308. <link href='http://fonts.googleapis.com/css?family=ABeeZee|Kameron|Muli|Almendra' rel='stylesheet' type='text/css'>
  309. <link href='http://fonts.googleapis.com/css?family=Snippet|Sue+Ellen+Francisco|Andika|Delius+Swash+Caps|Lobster|Redressed|Tangerine|Rancho|Rochester|Lobster+Two|Dancing+Script|Pacifico|Crafty+Girls' rel='stylesheet' type='text/css'>
  310. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  311. <link href='http://fonts.googleapis.com/css?family=Raleway+Dots' rel='stylesheet' type='text/css'>
  312. <link href='http://fonts.googleapis.com/css?family=Emilys+Candy|Butterfly+Kids|Federo|Quicksand|Antic+Didone|Josefin+Slab|Raleway+Dots|Cedarville+Cursive|Damion|Dawning+of+a+New+Day|Rancho|Marvel' rel='stylesheet' type='text/css'>
  313. <link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic' rel='stylesheet' type='text/css'>
  314. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  315. <link href='http://fonts.googleapis.com/css?family=Parisienne' rel='stylesheet' type='text/css'>
  316. <link href='http://fonts.googleapis.com/css?family=Akronim' rel='stylesheet' type='text/css'>
  317. <link href='http://fonts.googleapis.com/css?family=Vibur' rel='stylesheet' type='text/css'>
  318. <link href='http://fonts.googleapis.com/css?family=Poiret+One' rel='stylesheet' type='text/css'>
  319. <link href='http://fonts.googleapis.com/css?family=Stalemate' rel='stylesheet' type='text/css'>
  320. <link href='http://fonts.googleapis.com/css?family=Handlee' rel='stylesheet' type='text/css'>
  321. <link href='http://fonts.googleapis.com/css?family=Grand+Hotel' rel='stylesheet' type='text/css'>
  322.  
  323. <style>
  324.  
  325. /*** Cursor ***/
  326. body, a, a:hover { cursor:url(http://static.tumblr.com/y3igvfg/6vUm8ca4e/cur838.gif), auto; }
  327.  
  328.  
  329. body {background: #F2F2F2; padding: 4px; font-family: Century Gothic; font-style: normal; font-size: 11px; color: #696969; text-align: justify; line-height: 13px;}
  330.  
  331. body {background-color: {color:background}; font-family: verdana; color: {color:text}; text-align: center; font-size: 11px; background-image:url('{image:background}'); background-attachment: fixed; }
  332.  
  333. a {color: {color:link}; text-decoration: none; text-transform: none;}
  334. a:hover {color: {color:linkhover}; background-color: transparent; text-decoration: none;}
  335.  
  336. p {margin: 6px 0 0 0}
  337.  
  338. blockquote {margin: 5px 5px 5px 5px; border-left: 6px solid {color:borda2}; padding-left: 5px; background:{color:background};}
  339. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 5px solid {color:borda2};background:{color:background};}
  340. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  341. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:borda2}; }
  342.  
  343. blockquote img{max-width: 470px!important}
  344. blockquote blockquote img{max-width: 450px!important}
  345. blockquote blockquote blockquote img{max-width: 430px!important}
  346. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  347.  
  348.  
  349.  
  350. #container {text-align: center; width: 935px; margin: -10px auto 20px auto; padding: 0px; z-index: 1;}
  351.  
  352.  
  353.  
  354. #omdg{margin-left:455px;padding:0px;width:850px;margin-top:-10px;}
  355.  
  356. .baseduh{position: relative;width:300px;float:left;margin:-7px;margin-left: 10px;background:{color:post};border:1px solid {color:borda};margin-top:10px; padding: 5px; text-align:justify; {block:PermalinkPage}width:500px {/block:PermalinkPage};{block:If1coluna}width:450px;{/block:If1coluna} ;-webkit-border-radius: 10px 10px 10px 10px;}
  357. .baseduh img{max-width:250px;{block:If1coluna}max-width: 450px;{/block:If1coluna};opacity:0.9;}
  358.  
  359.  
  360.  
  361. h1 {font-family: 'Sacramento', cursive; text-align: center; font-size: 28px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px; background-color:{color:dtlhpost}; border-bottom: 0px dashed {color:tags} ;border-top: 0px dashed {color:tags} ; }
  362. h1 a {text-align: center; font-size: 29px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  363. h1 a:hover {text-align: center; font-size: 29px; text-transform: none; color: {color: text}; font-weight: normal; line-height: 18px;}
  364.  
  365. iframe#tumblr_controls {
  366. top:0px !important;
  367. right:3px !important;
  368. position: fixed !important;
  369. -webkit-transition: opacity 0.6s linear;
  370. opacity: 0.3;
  371. -webkit-transition: all 0.8s ease-out;
  372. -moz-transition: all 0.8s ease-out;
  373. transition: all 0.8s ease-out;
  374. z-index:999999999999999999;}
  375.  
  376. iframe#tumblr_controls:hover{
  377. -webkit-transition: opacity 0.6s linear;
  378. opacity: 0.8;
  379. -webkit-transition: all 0.4s ease-out;
  380. -moz-transition: all 0.4s ease-out;
  381. transition: all 0.4s ease-out;
  382. z-index:999999999999999999999;}
  383.  
  384. #tumblr_controls{position: fixed!important}
  385. #tumblr_controls{position: fixed!important}
  386. #tumblr_controls{position: fixed!important}
  387. #tumblr_controls{position: fixed!important}
  388.  
  389. /*-- negrito ,itálico e sublinhado -----*/
  390. b, strong, bold {color:{color:tags};}
  391.  
  392. u,underline {color:{color:text}; border-bottom: 1px dotted #FF69B4; text-decoration:none; }
  393.  
  394. i, em{color:#BCD2EE;}
  395.  
  396.  
  397. .image {text-align: center; border: 0px;{block:If1coluna}max-width: 400px;{/block:If1coluna};}
  398.  
  399.  
  400.  
  401.  
  402.  
  403. .pquote:first-letter{font-family: sacramento; color:{color:borda2} ;font-style:none; font-size: 23px; backgroun-color:{color:borda2} ;line-height:15px; padding:3px;margin-left:2px; margin-bottom:7px; margin-top:-14px;}
  404. .pquote {margin: 0; padding: 5px; font: normal 11px 'muli'; text-align: justify;color:{color:text} ;}
  405. .pquotesource {font-family: 'muli', cursive ; ; text-align: right; text-transform: none; margin-bottom:0px; background:{color:background};font-size:12px;color:{color:text};}
  406. #aspa {position:relative; color:{color:sidebar};font-family:Ruge Boogie;top:35px;left:3px;font-size:1px;opacity:0.5;}
  407.  
  408.  
  409.  
  410.  
  411. .chat {line-height: 13px; list-style: none }
  412. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  413. .person1 {color: {color:text}; padding: 2px; }
  414. .person1 .label {font-weight: bold; color:{color:text}}
  415. .person2 {color: {color:text}; padding: 2px; }
  416. .person2 .label {font-weight: bold; color:{color:text}}
  417.  
  418. .player {background-color: #000; text-align: left; display:block;}
  419.  
  420. /* ask by thoughtandsoul.tumblr exclusivo no I Love Themes*/
  421.  
  422. #questionpam{width:290px;
  423. padding:5px;
  424. background-color:{color:borda2};
  425. -webkit-border-radius: 5px 5px 5px 5px;
  426. -moz-border-radius: 5px 5px 5px 5px;
  427. border-radius: 5px 5px 5px 5px;}
  428.  
  429. #askerpam{text-align: left;
  430. vertical-align:bottom;
  431. margin-top:-24px;
  432. margin-left:20px;
  433. font-size:14px;
  434. font-family:play;}
  435.  
  436. #askerpam img{vertical-align:center;
  437. float:left;
  438. max-height:15px;
  439. margin-left: 20px;
  440. margin-right: 5px;
  441. -webkit-border-radius: 60px 0px 60px 60px;
  442. -moz-border-radius: 60px 0px 60px 60px;
  443. border-radius: 60px 0px 60px 60px;
  444. box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.1);}
  445.  
  446. #setapam {margin-top:-0px;
  447. margin-left:18px;
  448. width: 0;
  449. height: 0;
  450. border-top: 17px solid {color:borda};
  451. border-left: 17px solid transparent;}
  452.  
  453.  
  454.  
  455.  
  456. #credito {opacity: 0.9; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  457. #credito:hover {opacity: 0.99; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  458. #notes {background-color: {color:background}; border-bottom: 0px dashed {color:tags} ;border-top: 0px dashed {color:tags} ;text-align: left; margin-top:0px; font-size: 12px; font-family: pacifico; -webkit-border-radius: 10px 10px 10px 10px; z-index: 11;{block:If1coluna} ;margin: 7px 0 0 7px; {/block:If1coluna}}
  459. #notes a {font-size: 12px;{block:If1coluna} border-top:0px solid {color:post fundo}; {/block:If1coluna}}
  460.  
  461.  
  462. #tags {color: {color:text}; font-size: 9px; font-family: calibri; display: inline; list-style: none; text-transform: none; color:{color:text};}
  463. #tags a {font-size: 10px; font-family: Ubuntu Mono; display: inline; list-style: none; text-transform: none; color:{color:text};{block:If1coluna} border-top:0px solid {color:post fundo}; {/block:If1coluna}}
  464.  
  465. #cap {width: 280px; margin-top: -2px;}
  466. .source {display: none;}
  467.  
  468. .notes {width: 250px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: center}
  469. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  470. ol.notes li { margin-bottom: 2px; padding: 5px; }
  471. .notes img{display: none; border:0px}
  472.  
  473.  
  474.  
  475.  
  476. .imagem {margin-top: 5px; margin-left:248px; width: 150px; height: 100px; position: absolute;position:fixed background-color: transparent; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; z-index:90000000; border:0px dashed {color:background};position:fixed;}
  477.  
  478. .imagem img {position:fixed; ;-webkit-transition: all 1s ease-in-out;-webkit-border-radius: 30px 30px 30px 30px; -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; -ms-transition: all 1s ease-in-out; transition: all 1s ease-in-out; display: block; width: 90px; height: 85px; background-color: ; padding:0px;margin-left:0px; margin-top:0px; opacity:1; border:6px solid {color:bordaimg}; -webkit-transform: rotate(8deg);}
  479.  
  480.  
  481. .imagem img.top { opacity:11;}
  482. .imagem:hover img.top, .cf4.hover_effect img.top {opacity:0;border:6px solid {color:borda2};-webkit-border-radius: 20px 20px 20px 0px;}
  483.  
  484. .imagem:hover img.bottom, .cf4.hover_effect img.bottom {filter:gray}
  485.  
  486.  
  487.  
  488.  
  489. ::-webkit-scrollbar-thumb:vertical {
  490. background-image: url('{image:fundinho2}');
  491. }
  492.  
  493. ::-webkit-scrollbar {
  494. width:10px;
  495. height:5px;
  496. border-top:5px double {color:borda2};background-color: {color:sidebar}; width:16px; background:{color:sidebar};border-bottom:5px double {color:borda2};}
  497.  
  498.  
  499. @font-face { font-family: "sunshine"; src: url('http://static.tumblr.com/5fd89aw/U3vli7rvs/sunshine_in_my_soul.ttf'); }
  500.  
  501.  
  502. @font-face {
  503. font-family: 'Iceland';
  504. font-style: normal;
  505. font-weight: 400;
  506. src: local('Iceland'), local('Iceland-Regular'), url(http://themes.googleusercontent.com/static/fonts/iceland/v2/F6LYTZLHrG9BNYXRjU7RSw.woff) format('woff');
  507. }
  508.  
  509.  
  510.  
  511.  
  512. #diana3 {width:101px; height: 37px;float: left; margin-left: 270px; margin-top:260px; padding: 0px;text-align: center; position: fixed; z-index:99999999999999999999999; border: 2px solid #1f2024;-webkit-border-radius: 13px 13px 13px 13px;}
  513. #diana3 a {display: block;float: left; font-family: verdana; font-size: 8px; text-align: center; margin-right: 1px; height: 33px; width: 93px; color: #000; background:{color:borda2};line-height: 35px; text-transform: uppercase;font-style: normal; -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out;border: 2px solid {color:sidebar} ;-webkit-transform: rotate(9deg);-webkit-border-radius: 13px 13px 13px 13px;text-shadow:3px 3px 10px {color:sombra};}
  514. #diana3 a:hover{ background:{color:linkshover}; color:{color:post}; -webkit-border-radius: 0px 0px 0px 0px; box-shadow: inset 0px 0px 29px 0px {color:bglinks};color:#fff;border: 1px dashed {color:borda2};-webkit-animation: aninha 4000ms alternate infinite linear;background-image: url('{image:fundinho2}');}
  515.  
  516.  
  517. #diana {width:391px; height: 17px;float: left; margin-left: 90px; margin-top:320px; padding: 0px;text-align: center; position: fixed; z-index:99999999999999999999999; }
  518. #diana a {display: block;float: left; font-family: rancho; font-size: 10px; text-align: center; margin-right: 1px; height: 28px; width: 50px; color:{color:text}; background:#1c1c1c;line-height: 28px; text-transform: uppercase;font-style: normal; -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out;border-left: 1px dashed {color:borda2} ;-webkit-transform: rotate(0deg);-webkit-border-radius: 0px 0px 0px 0px;text-shadow:3px 3px 10px #000;}
  519. #diana a:hover{ background:{color:linkshover}; color:{color:post}; -webkit-border-radius: 0px 0px 0px 0px; box-shadow: inset 0px 0px 23px 0px {color:bglinks};color:#fff;border: 1px dashed {color:borda2};-webkit-animation: aninha 4000ms alternate infinite linear;background-image: url('{image:fundinho2}');}
  520.  
  521.  
  522. @-webkit-keyframes aninha {0% { -webkit-transform: translate(2px, -3px) rotate(6deg); -webkit-box-shadow: inset 0px 0px -21px -7px {color:linkshover}; -webkit-border-radius: 30px 30px 30px 30px;}
  523. 10% { -webkit-transform: translate(-3px, -2px) rotate(-6deg); }
  524. 20% { translate(-3px, 2px) rotate(6deg); -webkit-border-radius: 30px 30px 30px 30px;-webkit-box-shadow: inset 0px 0px -27px -10px {color:linkshover};}
  525. 30% {-webkit-transform: translate(-2px, 3px) rotate(-6deg); }
  526. 40% { translate(-3px, 2px) rotate(6deg); -webkit-border-radius: 30px 30px 30px 30px;-webkit-box-shadow: inset 0px 0px 10px -10px {color:linkshover};}
  527. 50% { -webkit-transform: translate(-3px, 2px) rotate(-6deg); -webkit-box-shadow: inset 0px 0px -27px 25px {color:linkshover}; -webkit-border-radius: 30px 30px 30px 30px;}
  528.  
  529.  
  530. }
  531.  
  532. /**--OMDG---♥---**/ /**--OMDG---♥---**/ /**--OMDG---♥---**/
  533.  
  534. #duu {z-index:11;width:41px; height: 124px; float: left; margin-left:140px; margin-top: 150px; padding: 0px; text-align: center;position:fixed;; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; border-bottom: 0px solid {color:borda};border-right: 0px solid {color:borda}; border: 0px solid {color:borda2};background:; border-bottom: 0px solid {color:borda};}
  535. #duu a {border-bottom: 2px solid {color:borda2};float: left; margin-left: 1px; font-family: Rochester; font-size: 14px; text-align: center; margin-top: 3px; height: 27px; width: 48px; color:{color:sidebar}; line-height: 31px; letter-spacing: 0px; text-transform: lowercase; -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; font-style: normal; background-color: {color:bghover}; text-transform: lowercase; background: url(http://static.tumblr.com/kwaqeuc/cbCm42wjc/bg.png); text-shadow:0px 0px 1px {color:sombra};-webkit-border-radius: 0px 10px 10px 0px;}
  536. #duu a:hover{background:{color:bghover};-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.1s ease-out; color:{color:bghover};-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.1s ease-out;text-shadow: 0 0 9px {color:sidebar};box-shadow: inset 0px 0px -200px 0px {color:links}; -webkit-border-radius: 0px 10px 10px 0px;opacity:0.6;}
  537.  
  538.  
  539. /***--- FRASINHA ---♥----***/
  540.  
  541. #baby {position: fixed; margin-left:98px;height: 25px; margin-top: 40px;font-family: stalemate; font-size:29px; width:190px;text-align: center;color:{color:frase} ;opacity:1; line-height: 27px ; z-index: 999999999999 ;border-bottom: 0px dashed {color:borda2}; -webkit-transform: rotate(0deg);-webkit-border-radius: 0px 0px 0px 0px;text-shadow: 0px 1px 1px {color:sombra};}
  542. #baby:hover{ -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; color:{color:borda2};}
  543.  
  544. #baby1 {position: fixed; margin-left:189px;height: 25px; margin-top: 155px;font-family: stalemate; font-size:26px; width:155px;text-align: center;color:{color:frase} ;opacity:1; line-height: 27px ; z-index: 999999999999 ;border-bottom: 0px dashed {color:borda2}; -webkit-transform: rotate(0deg);-webkit-border-radius: 0px 0px 0px 0px;text-shadow: 0px 1px 1px {color:sombra};}
  545. #baby1:hover{ -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; color:{color:borda2};}
  546.  
  547.  
  548.  
  549.  
  550.  
  551. /******------------- DESCRIÇÃO ------♥--------******/
  552.  
  553. #descbatom {margin-left: 140px;margin-top: 70px;width:120px;font-size: 9px;height: 40px;text-align:center; position: fixed; z-index:9999999999999999;padding: 5px; font-family: verdana; color:{color:textdesc};border-top: dashed 1px {color:borda2};background-color:{color:sidebaar} ;line-height: 10px;-moz-transition: 1s ease-in;transition: 1s ease-in;overflow: hidden; -webkit-border-radius: 0px 0px 0px 0px;-webkit-transform: rotate(0deg);text-shadow:3px 3px 10px #000;}
  554.  
  555. /***--------------PARTE DA SIDEBAR---------♥---------***/
  556.  
  557. #dianagatona { position: fixed; width:320px; height:360px; margin-left:30px; margin-top:50px;border-left: dotted 3px {color:sidebar};border-bottom: solid 4px {color:sidebar};border-right: solid 4px {color:sidebar};border-top: solid 4px {color:sidebar};background-image: url('{image:fundinho}');-webkit-transform: rotate(0deg); -webkit-border-radius: 0px 0px 0px 0px; box-shadow: 3px 3px 13px 3px {color:sidebar};}
  558.  
  559.  
  560.  
  561.  
  562. #tirinha { position: fixed;margin-left:90px; width: 130px; margin-top: 38px; background-color: #transp; height: 1px;z-index:88888888888; border-top:1px dashed {color:linkshover};}
  563.  
  564. #faixinha3 { position: fixed; width:1800px; height:50px; margin-left:-13px; margin-top:310px; background-color:{color:sidebar};background-image: url('{image:fundinho2}');border-bottom: dashed 1px {color:borda2} ;}
  565.  
  566.  
  567. /***----------------------------------------- Pagination ♥---------***/
  568.  
  569. #paginal {font-family: verdana; font-size: 8px; text-align: center;}
  570. #paginal a { margin: 0 1px 0 0; padding: 2px 4px; background:{color:sidebar};color: {color:pag};opacity:1; -webkit-border-radius: 5px 5px 5px 5px;}
  571. #paginal a:hover {background: {color:sidebar}; color: {color:text};}
  572. #paginal span.pagina_atual {background: {color:sidebar}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;-webkit-border-radius: 5px 5px 5px 5px;}
  573. .ps {position: fixed; padding: 2px; width: 148px; margin-left: 120px; margin-top: 270px; height: auto; color: {color:text};opacity:1;-webkit-border-radius: 5px 5px 5px 5px;
  574.  
  575.  
  576.  
  577. /***------INICIO DAS WISHLISTE MENUS----?-----***/
  578.  
  579. /****** Menu Heart - All-teardrop-is-a-waterfall / mundohtml *******/
  580. .heart {
  581. background-image: url('http://static.tumblr.com/2bh9bxo/hGXmcgm5v/wallpaper_240x320_1335.png');font-family: verdana; font-size:10px; !important;text-decoration: none; letter-spacing: 0.10em;text-transform: uppercase; padding:3px; margin:0px 0px 2px 0px; text-align: left; cursor:help;text-shadow: 0 1px 1px #fff; border-left: 1px solid #B0B9C2;border-right: 1px solid #b0b9c2; -webkit-transition:All 0.4646s ease;-moz-transition:All 0.4646s ease;-o-transition:All 0.4646s ease;}
  582. .heart:hover {opacity:0.55;-webkit-transition:All 0.4646s ease;-moz-transition:All 0.4646s ease;-o-transition:All 0.4646s ease;padding-left: 20px;}
  583.  
  584.  
  585.  
  586. /***POR ENQUANTO SEM USO****/
  587. /****** Menu Heart - All-teardrop-is-a-waterfall / mundohtml *******/
  588. .daduh {
  589. background-image: url('http://static.tumblr.com/2bh9bxo/jivmcxbof/tumblr_m524nz3toe1qkzf0fback.png'); color:#FF69B4;font-family:charnarr; font-size:11px; !important;text-decoration: none; letter-spacing: 0.10em;text-transform: uppercase; padding:3px; margin:0px 0px 2px 0px; text-align: left; cursor:help;text-shadow: 0 1px 5px #000; border-left: 4px solid #000;border-right: 4px solid #000; -webkit-transition:All 0.4646s ease;-moz-transition:All 0.4646s ease;-o-transition:All 0.4646s ease;}
  590. .daduh:hover {opacity:0.55;-webkit-transition:All 0.4646s ease;-moz-transition:All 0.4646s ease;-o-transition:All 0.4646s ease;padding-left: 20px;}
  591.  
  592. .entrada{-webkit-animation: lightSpeedIn 2s;-moz-animation: lightSpeedIn 2s;-ms-animation: lightSpeedIn: 2s; -o-animation: lightSpeedIn 2s;}
  593.  
  594. /***POR ENQUANTO SEMUSO FIM***/
  595. .duda{background-image: url('http://static.tumblr.com/2bh9bxo/jivmcxbof/tumblr_m524nz3toe1qkzf0fback.png');border: 5px solid #000;-webkit-border-radius: 20px 0px 20px 0px;font-family:verdana;font-size:11px;color:#fff;-webkit-animation: lightSpeedIn 2s;-moz-animation: lightSpeedIn 2s;-ms-animation: lightSpeedIn: 2s; -o-animation: lightSpeedIn 2s;
  596. -moz-box-shadow: inset 3px 0 0px 0 #ee1133;
  597.  
  598. -webkit-box-shadow: inset 3px 0 0px 0 #ee1133;
  599.  
  600. box-shadow: inset 3px 0 0px 0 #FF69B4;
  601.  
  602. padding: 3px 3px 3px 6px;
  603.  
  604. -moz-transition: all 0.4s ease-out;
  605.  
  606. -webkit-transition: all 0.8s ease-out;
  607.  
  608. -o-transition: all 0.8s ease-out;
  609.  
  610. -ms-transition: all 0.8s ease-out;
  611.  
  612. transition: all 0.8s ease-out;}}
  613.  
  614.  
  615.  
  616.  
  617. .live {background-image: url('http://static.tumblr.com/2bh9bxo/PkImdied9/fundinhoduh.png');padding:4px;border-top:1px solid:#FF82AB;border-bottom:1px solid #eee;margin-bottom:0px;text-shadow:1px 1px 1px #FF82AB;font:11px VERDANA, LUCIDA SANS UNICODE;color:#999;-webkit-transition:all .50s linear;-moz-transition:all .2s linear;transition:all .90s linear;}
  618. .live:hover {background:#FFB5C5;padding:4px;border-top:1px;padding-left:10px;text-shadow:100px 1px 1px #CD1076;font:14px VERDANA, LUCIDA SANS UNICODE;color:#EEEEEE}
  619.  
  620.  
  621. #fade {display: none;background-image: url('http://static.tumblr.com/2bh9bxo/PkImdied9/fundinhoduh.png'); position: fixed; left: 0; top: 0; width: 100%; height: 100%; opacity: .80; z-index: 9999;border: 3px solid #1c1c1c;}
  622. .popup_block{display: none;font-family:'Cursive standard';border-bottom: 3px solid #000;background-image: url('http://media.tumblr.com/tumblr_m3jy0yGDD41r6gjr6.jpg'); padding: 20px; border: 3px dashed #FF82AB; float: left; font-size: 20px; position: fixed; top: 50%; left: 60%; z-index: 99999;-webkit-box-shadow: 0px 0px 20px #000; -moz-box-shadow: 0px 0px 20px #000; box-shadow: 20px 20px 20px #000; -webkit-border-radius: 20px; -moz-border-radius: 20px; border-radius: 20px;}
  623. img.btn_close {float: right; margin: -55px -55px 0 0;}
  624. *html #fade {position: absolute;}
  625. *html .popup_block {position: absolute;}
  626. @font-face { font-family: "existance"; src: url('http://static.tumblr.com/u37ad6e/OCIm7s3av/existence-unicaselight.otf'); }
  627. @font-face { font-family: "craftygirls"; src: url('http://themes.googleusercontent.com/static/fonts/craftygirls/v0/0Sv8UWFFdhQmesHL32H8o3hCUOGz7vYGh680lGh-uXM.woff'); }
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634. menusm1 {background: #ee7fb8; color: #000; padding: 5px; text-transform:uppercase; text-align: center; display: inline-block;font-size:10px; font-family: consolas;; -webkit-transition-duration: .99s; }
  635.  
  636. menusm1:hover {opacity:0.8 }
  637. .menusm2 {background-image: url('http://static.tumblr.com/2bh9bxo/hGXmcgm5v/wallpaper_240x320_1335.png');font-family: verdana, sans-serif; text-align:left;font-size: 11px;margin: 1px; color: #fff;display: block; -webkit-transition-duration: .30s;}
  638.  
  639.  
  640. .menusm2:hover {padding-left:5px;}
  641. .menusm2 a{ color: #777;}
  642.  
  643.  
  644.  
  645. /** MAGIC WISHLIST **/
  646. .wishlist3 {color: #1c1c1c; background-image: url('http://static.tumblr.com/2bh9bxo/jivmcxbof/tumblr_m524nz3toe1qkzf0fback.png') ; font-family:craftygirls; font-size: 11px; line-height: 9px; padding: 5px; padding-left: 5px; margin-top: 1px; margin-bottom: 2px; text-align: left; -webkit-box-shadow: inset -2px -2px 3px #e8e8e8; box-shadow: inset -2px -2px 3px #141414; -moz-box-shadow: inset -2px -2px 3px #e8e8e8; transition-duration: .5s; -moz-transition-duration: .5s; -webkit-transition-duration: .5s; -o-transition-duration: .5s;}
  647. .wishlist3:hover {padding-left: 30px; -webkit-transform: skew(90deg, 1deg); -moz-transform: skew(90deg, 1deg); -o-transform: skew(90deg, 1deg);}
  648. .wishlist3 k{color:#FF69B4; padding-right: 3px;}
  649.  
  650. /***OUTRO EFEITO ***/
  651. @font-face {font-family: "pf arma five";src: url('http://static.tumblr.com/bigjj8s/1tmm7vjp6/pf_arma_five.ttf');}
  652.  
  653. ol{
  654. counter-reset: li; /* initiate a counter */
  655. list-style: none; /* remove default numbering */
  656. *list-style: decimal; /* keep using default numbering for ie6/7 */
  657. font: 10px 'verdana';
  658. padding: 0;
  659. margin-bottom: 4em;
  660.  
  661. }
  662.  
  663. ol ol{
  664. margin: 0 0 0 2em; /* add some left margin for inner lists */
  665. }
  666.  
  667. .rectangle-list a{
  668. position: relative;
  669. display: block;
  670. padding: .4em .4em .4em .8em;
  671. *padding: .4em;
  672. margin: .5em 0 .5em 2.5em;
  673. background-image: url('http://static.tumblr.com/2bh9bxo/hGXmcgm5v/wallpaper_240x320_1335.png');
  674. color: #8B8989;
  675. text-decoration: none;
  676. transition: all .3s ease-out;
  677. }
  678.  
  679. .rectangle-list a:hover{
  680. background: #eee;
  681. }
  682.  
  683. .rectangle-list a:before{
  684. content: counter(li);
  685. counter-increment: li;
  686. position: absolute;
  687. left: -2.5em;
  688. top: 50%;
  689. margin-top: -1em;
  690. background: #FF69B4;
  691. color:#fff;
  692. height: 2em;
  693. width: 2em;
  694. line-height: 2em;
  695. text-align: center;
  696. font-weight: bold;
  697. }
  698.  
  699. .rectangle-list a:after{
  700. position: absolute;
  701. content: '';
  702. border: .5em solid transparent;
  703. left: -1em;
  704. top: 50%;
  705. margin-top: -.5em;
  706. transition: all .3s ease-out;
  707. }
  708.  
  709. .rectangle-list a:hover:after{
  710. left: -.5em;
  711. border-left-color: #fff;
  712. }
  713.  
  714.  
  715. .pqpduh {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:#FFC0CB ; border-left: 3px double #000; border-right: 3px double #000; color: #fff; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; text-align: left; }
  716.  
  717. .pqpduh a{color: #000;}
  718.  
  719. .pqpduh a:hover {color:; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; }
  720.  
  721.  
  722.  
  723. .wishlist {background:#CDC9C9;height:20px;line-height:20px;font-family:Handy;font-size:8px;text-transform:uppercase;padding-left:5px;border-left:15px solid #de406d;-webkit-border-top-left-radius: 3px;
  724. -webkit-border-bottom-left-radius: 3px;
  725. -moz-border-radius-topleft: 3px;
  726. -moz-border-radius-bottomleft: 3px;
  727. border-top-left-radius: 3px;border-bottom-left-radius: 3px;border-right:5px solid #de406d;-webkit-transition-duration:.50s;margin:1px;}
  728. .wishlist:hover {padding-left:30px;border-right:25px solid #de406d;border-left:2px solid #eee;background:#eee url(http://static.tumblr.com/ssvjggv/OWambushj/ilove.png) no-repeat left;}
  729.  
  730.  
  731. /***——-Efeito wishlist por:o-mundo-de-uma-garota———-?——***/
  732. .omdg86 {list-style: none; color:#000; font-family:Federo;font-size:10px;border-bottom: 1px solid #DCDCDC;border-left: 4px solid #6C7B8B;border-right: 2px solid #6C7B8B;background:#fff; padding-left: 10px; margin-bottom:01px;padding:04px 04px 04px 05px;}
  733. .omdg86:hover {background:#F0FFFF;border-right: 4px solid #6C7B8B; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;-webkit-transition-duration: .15s;-webkit-transition: all 0.9s ease-out;
  734. -moz-transition: all 0.9s ease-out; opacity: 10; filter:alpha (opacity=50);-webkit-border-radius: 0px 0px 0px 0px;-webkit-transition-duration: 1.9s; -moz-transition-duration:1.9s;text-transform:uppercase; border-top:2px dotted #B0C4DE;border-bottom:2px dotted #B0C4DE; -webkit-transition: all 0.8s ease-out;-webkit-transition-duration: .59s;opacity:0.7; #pattern opacity:0.7;-moz-transition: all 1s ease-in-out;
  735. -o-transition: all 1s ease-in-out;
  736. -ms-transition: all 1s ease-in-out; transition: all 1s ease-in-out;text-shadow: 0px-6px #000000, 0px 1px 7px #FFE4E1; -webkit-transition-duration: .50s;padding:02px 02px 02px 15px;}
  737.  
  738.  
  739.  
  740. /*********************FIM DOS MENUS E WISHLIT***************/
  741.  
  742.  
  743. .caixinha{font-family: 'Cursive standard', sans-serif;height:25px;line-height:25px;font-size:22px; padding:2px; color: #000; background: #FF82AB; text-align:center; display:block;margin-bottom: 1px; text-shadow: 0px 1px 1px transparent; font-style: none; text-decoration: none; }
  744.  
  745.  
  746. ::-moz-selection {
  747. color: #fff;
  748. background: #000;
  749. }
  750. ::selection {
  751. color: #fff;
  752. background: #000;
  753. }
  754.  
  755. .box2 {width: 758px;height:160px; position:fixed;background:#030303;float: left; }
  756. #sidebar {width:240px;padding:0px!important;margin-left:-70px; position:fixed; float:right; top:9px; z-index:0;}
  757.  
  758.  
  759.  
  760. @font-face{font-family:'Cursive standard'; src:url('http://static.tumblr.com/37gdlu1/xpLmc5f4q/cursive_standard.ttf');}
  761.  
  762.  
  763.  
  764. #barra {position: fixed; margin-left: 140px; width:208px; height: 325px; background-image: url('{image:fundinho2}');margin-top: -40px; -webkit-transform: rotate(0deg);-webkit-border-radius: 0px 0px 50px 50px;border: 3px solid {color:borda2};} /**--OMDG---♥---**/
  765.  
  766.  
  767. /*-------- Links - CÓDIGOS DE CONJUNTAR, NÃO COPIE! --------*/
  768. #linka {position:fixed;width:28px; height:82px; margin-left:361px; margin-top:142px; padding-top:5px; background:{color:linkshover}; border-top-right-radius:10px; border-bottom-right-radius:10px;border-right: 1px dashed {color:borda2};}
  769. #ll {padding:5px; height:16px; margin-bottom:1px;}
  770. #ll img {opacity:0.6; transition-duration: 0.6s; -moz-transition-duration: 0.6s; -webkit-transition-duration: 0.6s; -o-transition-duration: 0.6s;}
  771. #ll img:hover {opacity:0.9; transition-duration: 0.6s; -moz-transition-duration: 0.6s; -webkit-transition-duration: 0.6s; -o-transition-duration: 0.6s;}
  772. .lk {width:26px; height:auto;}
  773. .lj {opacity:0; width:65px; padding:2px 0; font-family:calibri; font-size:10px; text-transform:uppercase; letter-spacing:1px; margin-top:-21px; margin-left:15px; position: absolute; float:right; text-align:left;}
  774. .lk:hover .lj {opacity: 1.0; margin-left:30px; transition-duration: 0.6s; -moz-transition-duration: 0.6s; -webkit-transition-duration: 0.6s; -o-transition-duration: 0.6s;background:{color:bglinks};border-right: 3px solid {color:borda2};}
  775.  
  776.  
  777.  
  778.  
  779. #faixa2 {margin-top: 162px; margin-left: 253px; position: fixed; background:{color:sidebar}; height: 5px; width:122px;}/***detalhes by o-mundo-de-uma-garota***/
  780.  
  781. #faixa3 {margin-top: 206px; margin-left: 253px; position: fixed; background:{color:sidebar}; height: 5px; width:122px;}/***detalhes by o-mundo-de-uma-garota***/
  782.  
  783.  
  784.  
  785. </style>
  786.  
  787.  
  788. <body onkeydown="return false">
  789.  
  790. <div id="faixa2"></div><div id="faixa3"></div>
  791.  
  792. <div id="barra"></div>
  793.  
  794.  
  795.  
  796.  
  797.  
  798.  
  799. <div id="descbatom">{Description}</div>
  800. <div id="baby">{text:frase}</div>
  801. <div id="baby1">{text:frase2}</div>
  802.  
  803.  
  804. <div id="linka">
  805. <div class="lk"><div id="ll"><img src="http://static.tumblr.com/qzpui9z/M3dmheqlg/1.png"></div>
  806. <div class="lj">{block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}</div></div>
  807. <div class="lk"><div id="ll"><img src="http://static.tumblr.com/qzpui9z/kI4mheqly/2.png"></a></div>
  808. <div class="lj">{block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}</div></div>
  809. <div class="lk"><div id="ll"><img src="http://static.tumblr.com/qzpui9z/UKKmheqn0/5.png"></div>
  810. <div class="lj">{block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}</div></div>
  811. </div></div>
  812.  
  813.  
  814. <div id="duu">
  815. <a href="{text:Link4}">{text:Link4 Title}</a>
  816. <a href="{text:Link5}">{text:Link5 Title}</a>
  817. <a href="{text:Link6}">{text:Link6 Title}</a>
  818.  
  819. </div>
  820.  
  821.  
  822.  
  823. <div id="diana3">
  824. <a href="{text:Link7}">{text:Link7 Title}</a>
  825.  
  826. </div class>
  827. </div></div>
  828.  
  829.  
  830. <div class="imagem" class="hover">
  831. <img class="bottom shadow" src="{image:foto}"style="-webkit-filter: grayscale(100%);" >
  832. <img class="top shadow" src="{image:foto}"></div>
  833. </div>
  834.  
  835.  
  836.  
  837.  
  838. <div class="ps"><div id="paginal">
  839. {block:JumpPagination length="3"}
  840. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  841. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  842. {/block:JumpPagination}
  843. </div></div>
  844.  
  845. <!-------------CRÉDITOS--------------->
  846.  
  847. <div style="display:block;top:530px;left:35px;font-size:9px;font-family:calibri;-webkit-transform: rotate(0deg);position:fixed;background-color:{color:post}; color: {color:text}; padding:3px;z-index:55554235555;"><a href="http://omdg.tumblr.com/" title="Feito por Duda.R {OMDG} + Dtlhs por Marida-perfeit4 and conjuntar dont copie !(c)">All Themes By OMDG <font color="{color:borda2}">(c)</font></a>
  848. </div>
  849.  
  850. </div>
  851.  
  852.  
  853.  
  854.  
  855. <div id="omdg">
  856. {block:Posts}
  857. <div class="baseduh">
  858.  
  859. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  860.  
  861. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  862.  
  863. {block:Photoset}{Photoset-250}{/block:Photoset}
  864.  
  865.  
  866. {block:Quote}
  867. <div id="aspa">"</div><div class="pquote">{Quote}</div>
  868. {block:Source}<div class="pquotesource"> — {Source}</div>
  869. {/block:Source}
  870. {/block:Quote}
  871.  
  872. {block:Link}
  873. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  874. {block:Description}{Description}{/block:Description}
  875. {/block:Link}
  876.  
  877. {block:Chat}
  878. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  879. <div class="chat"><ul>{block:Lines}
  880. <li class="person{UserNumber}">{block:Label}
  881. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  882. {/block:Chat}
  883.  
  884. {block:Audio}
  885. <div class="player">{AudioPlayerBlack}</div>
  886. {block:Caption}{Caption}{/block:Caption}
  887. {/block:Audio}
  888.  
  889. {block:Video}{Video-250}{/block:Video}
  890.  
  891. {block:Answer}
  892. <div id="questionpam">{Question}</div>
  893. <div id="setapam"></div>
  894. <br>
  895. <div id="askerpam"><img src="{AskerPortraitURL-24}">{Asker}</div>
  896. {Answer}
  897. {/block:answer}
  898.  
  899.  
  900. <div id="cap">
  901. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  902. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  903. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  904.  
  905. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  906. <img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  907. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  908. {/block:ContentSource}</div></div>
  909. <br>
  910.  
  911.  
  912. <div class="credito">
  913. {block:Date}<div id="notes">
  914. <center> <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} <font color="{color:tags}">•</font> <a href="{Permalink}" {block:NoteCount}{/block:NoteCount}</a>{NoteCountWithLabel}</a>{block:RebloggedFrom} <font color="{color:tags}">•</font> <a href="{ReblogParentURL}"><a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom} {block:ContentSource} <font color="{color:tags}">•</font> <a href="{SourceURL}">source</a>{/block:ContentSource} {block:IndexPage} <font color="{color:tags}">•</font> <a href="{ReblogUrl}" target="_blank">reblog</a> <font color="{color:tags}">♡</font>{/block:IndexPage}</center> </div>{block:IfShowTags}<center><div id="tags">{block:HasTags}{block:Tags} #<a href="{TagUrl}">{Tag}</a>{/block:Tags}{/block:HasTags}
  915. </div></center>{/block:IfShowTags}{/block:Date}</div>
  916. </div>
  917.  
  918.  
  919.  
  920. {/block:Posts}
  921. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  922.  
  923. </div>
  924. </div>
  925. </div>
  926.  
  927. </div>
  928. </div>
  929. </div>
  930. </div>
  931. </div>
  932. </div>
  933.  
  934.  
  935.  
  936. </div>
  937. </div>
  938. </div>
  939.  
  940.  
  941.  
  942.  
  943. </div>
  944.  
  945. </div></div></div></div></div></div></div></div></div></div>
  946. </div></div></div></div></div></div></div></div></div></div>
  947. </div></div></div></div></div></div></div></div></div></div>
  948. </div></div></div></div></div></div></div></div></div></div>
  949. </div></div></div></div></div></div></div></div></div></div>
  950. </div></div></div></div></div></div></div></div></div></div>
  951. </body>
  952. </html>
Advertisement
Add Comment
Please, Sign In to add comment