Eduarda

Codigo 22

Feb 23rd, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.78 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4.  
  5.  
  6.  
  7. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  8.  
  9. <head>
  10.  
  11. <script type="text/javascript">
  12. //desabilita menu de opcoes ao clicar no botao direito
  13.  
  14.  
  15.  
  16. function desabilitaMenu(e)
  17.  
  18.  
  19.  
  20. {
  21.  
  22.  
  23.  
  24. if (window.Event)
  25.  
  26.  
  27.  
  28. {
  29.  
  30.  
  31.  
  32. if (e.which == 2 || e.which == 3)
  33.  
  34.  
  35.  
  36. return false;
  37.  
  38.  
  39.  
  40. }
  41.  
  42.  
  43.  
  44. else
  45.  
  46.  
  47.  
  48. {
  49.  
  50.  
  51.  
  52. event.cancelBubble = true
  53.  
  54.  
  55.  
  56. event.returnValue = false;
  57.  
  58.  
  59.  
  60. return false;
  61.  
  62.  
  63.  
  64. }
  65.  
  66.  
  67.  
  68. }
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76. //desabilita botao direito
  77.  
  78.  
  79.  
  80. function desabilitaBotaoDireito(e)
  81.  
  82.  
  83.  
  84. {
  85.  
  86.  
  87.  
  88. if (window.Event)
  89.  
  90.  
  91.  
  92. {
  93.  
  94.  
  95.  
  96. if (e.which == 2 || e.which == 3)
  97.  
  98.  
  99.  
  100. return false;
  101.  
  102.  
  103.  
  104. }
  105.  
  106.  
  107.  
  108. else
  109.  
  110.  
  111.  
  112. if (event.button == 2 || event.button == 3)
  113.  
  114.  
  115.  
  116. {
  117.  
  118.  
  119.  
  120. event.cancelBubble = true
  121.  
  122.  
  123.  
  124. event.returnValue = false;
  125.  
  126.  
  127.  
  128. return false;
  129.  
  130.  
  131.  
  132. }
  133.  
  134.  
  135.  
  136. }
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144. //desabilita botao direito do mouse
  145.  
  146.  
  147.  
  148. if ( window.Event )
  149.  
  150.  
  151.  
  152. document.captureEvents(Event.MOUSEUP);
  153.  
  154.  
  155.  
  156. if ( document.layers )
  157.  
  158.  
  159.  
  160. document.captureEvents(Event.MOUSEDOWN);
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168. document.oncontextmenu = desabilitaMenu;
  169.  
  170.  
  171.  
  172. document.onmousedown = desabilitaBotaoDireito;
  173.  
  174.  
  175.  
  176. document.onmouseup = desabilitaBotaoDireito;
  177.  
  178.  
  179.  
  180. </script>
  181.  
  182.  
  183. <script>
  184. function click() {
  185. if (event.button==2||event.button==3) {
  186. oncontextmenu='return false';
  187. }
  188. }
  189. document.onmousedown=click
  190. document.oncontextmenu = new Function("return false;")
  191. </script>
  192.  
  193. <script language="JavaScript1.2">
  194. function disableselect(e){
  195. return false
  196. }
  197. function reEnable(){
  198. return true
  199. }
  200. //if IE4+
  201. document.onselectstart=new Function ("return false")
  202. //if NS6
  203. if (window.sidebar){
  204. document.onmousedown=disableselect
  205. document.onclick=reEnable
  206. }
  207. </script>
  208.  
  209. <script language="javascript">
  210. function clickIE() {if (document.all) {(mensagem);return false;}}
  211. function clickNS(e) {if
  212. (document.layers||(document.getElementById&&!document.all)) {
  213. if (e.which==2||e.which==3) {alert(mensagem);return false;}}}
  214. if (document.layers)
  215. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  216. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  217. document.oncontextmenu=new Function("return false")
  218. </script>
  219.  
  220. <script>
  221. function bloqueio()
  222. {alert(mensagem);}
  223. document.onkeydown=bloqueio;
  224. </script>
  225.  
  226. <link href='http://fonts.googleapis.com/css?family=Rochester' rel='stylesheet' type='text/css'>
  227.  
  228. <!-- DEFAULT VARIABLES -->
  229. <meta name="color:background" content="#f8f8f8" />
  230. <meta name="color:post" content="#ffffff" />
  231. <meta name="color:link" content="#000000" />
  232. <meta name="color:link hover" content="#ffffff" />
  233. <meta name="color:text" content="#000000" />
  234. <meta name="color:sidebar text" content="#ffffff"/>
  235. <meta name="color:text sidebar links" content="#000000"/>
  236. <meta name="color:rolagem bg" content="#fff" />
  237. <meta name="color:rolagem" content="#000000" />
  238. <meta name="color:sidebar" content="#000000" />
  239. <meta name="color:titleinv" content="#000000" />
  240.  
  241.  
  242. <meta name="image:background" content="http://images.orkut.com/orkut/photos/OgAAALpbl2yD9vORSnotGu6gS063C6J6hCuUvIgJSWvJytWnapsrINfSMOwP1My56OjpgkPV3TubW_i6dRNUC4HWGnIAm1T1UDHaVDI5p6oX31b1FugdugFJs4Dr.jpg"/>
  243. <meta name="image:sidebar"content="http://30.media.tumblr.com/tumblr_lxjj539R9I1qgr47po1_250.jpg"/>
  244.  
  245.  
  246.  
  247.  
  248.  
  249. <meta name="text:para o TITLE dar certo deixe um espaco entre cada letra" content="" />
  250. <meta name="text:title" content="d e i x a 1 e s p a c o e n t r e a s l e t r a s" />
  251. <meta name="text:title2" content="troque pelo"/>
  252. <meta name="text:title3" content="troque pelo"/>
  253. <meta name="text:frase" content="mude no appearance" />
  254. <meta name="text:Link1" content="" />
  255. <meta name="text:Link1 Title" content="aqui" />
  256. <meta name="text:Link2" content="" />
  257. <meta name="text:Link2 Title" content="tem" />
  258. <meta name="text:Link3" content="" />
  259. <meta name="text:Link3 Title" content="espaço" />
  260. <meta name="text:Link4" content="" />
  261. <meta name="text:Link4 Title" content="para" />
  262. <meta name="text:Link5" content="" />
  263. <meta name="text:Link5 Title" content="para" />
  264. <meta name="text:Link6" content="" />
  265. <meta name="text:Link6 Title" content="para" />
  266. <meta name="text:Link7" content="" />
  267. <meta name="text:Link7 Title" content="para" />
  268.  
  269. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  270. <title>{Title}</title>
  271. <link rel="shortcut icon" href="{Favicon}">
  272. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  273. {block:Description}
  274. <meta name="description" content="{MetaDescription}" />
  275. {/block:Description}
  276.  
  277. {block:IfEnableEndlessScrolling}
  278. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  279. {/block:IfEnableEndlessScrolling}
  280.  
  281.  
  282. <style type="text/css">
  283.  
  284.  
  285. body {
  286. background-color: {color:background};
  287. color:{color:text};
  288. font-family: verdana;
  289. font-size: 11px;
  290. text-align: center;
  291. line-height:120%;
  292. margin:0;
  293. padding:0;
  294. background-image:url('{image:background}');
  295. background-attachment: fixed
  296. }
  297.  
  298. a {color: {color:link}; text-decoration: none; text-transform: none; -webkit-transition-duration: .40s;}
  299. a:hover {color: {color:hover}; background-color: {color:bg hover}; text-decoration: none;}
  300.  
  301. p {margin: 6px 0 0 0}
  302.  
  303. blockquote {margin: 5px 5px 5px 5px; border-left: 5px solid {color:background}; padding-left: 5px; }
  304. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 5px solid {color:background};}
  305. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 5px solid {color:background}; }
  306. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 5px solid {color:background}; }
  307.  
  308. blockquote img{max-width: 470px!important}
  309. blockquote blockquote img{max-width: 450px!important}
  310. blockquote blockquote blockquote img{max-width: 430px!important}
  311. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  312.  
  313. #entries{margin-top:41px; }
  314.  
  315. .post {width: 500px; background-color: {color:post}; padding: 10px; margin-bottom: 1px; text-align: justify; font-family: verdana; font-size: 11px; position: relative; color:{color:text}; margin-left: 360px;}
  316.  
  317. #xright {position: fixed; margin-top: 41px; margin-left: 360px; overflow: auto; width: 526px; height: 690px;}
  318.  
  319.  
  320.  
  321. .tags{font-size: 9px; color:{color:link}; font-family: verdana; background-color: {color:post};}
  322. .tags a:hover {background-color: {color:post}; color:{linkhover}; -webkit-transition: all .2s linear; -moz-transition: all .2s linear; transition: all 0.2s linear;}
  323.  
  324.  
  325. h1 {font-family: georgia; text-align: center; font-size: 16px; color: {color:text}; font-weight: normal; line-height: 18px;}
  326.  
  327. h1 a {text-align: center; font-size: 16px; color: {color:text}; font-weight: normal; line-height: 18px;}
  328.  
  329. h1 a:hover {text-align: center; font-size: 16px; color: {color:text}; font-weight: normal; line-height: 18px;}
  330.  
  331.  
  332.  
  333. .image {text-align: center; border: 0px; }
  334. .image img {max-width: 500px; margin-bottom: 3px }
  335. .markqt {font-size: 90px; font-family: {font:title}; color:{color:text}; line-height: 90px; margin-left: 5px; opacity: 0.1; filter:alpha (opacity=100);}
  336. .qt {font-family: verdana; font-size: 18px; line-height: 23px; margin-top: -95px; margin-left: 45px; padding: 10px;}
  337. .qsr{margin: 5px 15px 0 0; text-align: right; text-transform: none;}
  338. .qsr a, a:hover{text-transform: none;}
  339.  
  340. .chat {line-height: 12px; list-style: none }
  341. .chat ul {line-height: 15px; list-style: none; padding: 0px; line-height:20px;}
  342. .person1 {background-color:{color:background}; color: {color:text}; }
  343. .person1 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  344. .person2 {color: {color:text}; }
  345. .person2 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  346.  
  347. .audio{background-color:black; display:block;}
  348. .source{display:none}
  349.  
  350. #questions {background-color:{color:background}; color: {color:text}; padding:10px; margin-bottom:0px; font-family:verdana; font-size:9px}
  351. #questions a {color:{color:link}}
  352.  
  353.  
  354.  
  355. #cap {width: 500px; margin-top: -2px;}
  356.  
  357. #dda {font-size: 9px; font-family: verdana; text-transform: lowercase;}
  358. .dda a {font-size: 9px;}
  359.  
  360.  
  361.  
  362. .tags {color: {color:text}; font-size: 9px; font-family: verdana; display: inline; list-style: none; text-transform: lowercase;}
  363. .tags a {font-size: 9px; color: verdana; display: inline; list-style: none; text-transform: lowercase;}
  364.  
  365. .qqmarks{
  366. font-size: 80px;
  367. font-weight: bold;
  368. line-height: 80px;
  369. font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
  370. opacity: 0.2;
  371. filter:alpha (opacity=20)
  372. }
  373.  
  374.  
  375.  
  376. .qquote {font-family: georgia; text-align: justify; font-size: 13px; line-height: 15px; padding: 3px;}
  377.  
  378. .qsource {text-align: center; text-transform: none; margin-left: 30px; margin-bottom: 5px;}
  379.  
  380. .qsource a, a:hover{text-transform: none;}
  381.  
  382.  
  383. .notes {width: 520px; padding: 0px; margin-top: 0px; margin-bottom: 10px; font-size: 9px; text-align: left; margin-left:0px;}
  384.  
  385. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11; margin-left:360px;}
  386.  
  387. ol.notes li {background-color: {color:post}; margin-bottom: 1px; padding: 5px; }
  388.  
  389. .notes img{display: none; border:0px}
  390.  
  391.  
  392.  
  393.  
  394. b{text-transform: block; color:;}
  395. i{text-transform: italic; color:{color:text}}
  396. p{margin:2px 0 2px 0}
  397. u {text-decoration: none; border-bottom: 1px dashed;}
  398. d1 {opacity:0.8}
  399. d2 {opacity:0.6}
  400. d3 {opacity:0.4}
  401. d4 {opacity:0.2}
  402.  
  403.  
  404. #tbar {width:100px; height:1000px; margin-left:20px; margin-top:45px; position:fixed; overflow:hidden; background-color: {color:background}; border-left:0px solid; border-right:0px solid; padding:3px}
  405.  
  406. ::-webkit-scrollbar{width:13px;height:1px;}
  407. ::-webkit-scrollbar-button:start:decrement
  408. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  409. ::-webkit-scrollbar-track-piece{background-color:{color:rolagem bg};}
  410. ::-webkit-scrollbar-thumb:vertical{height:100px; background-color: {color:rolagem};}
  411. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:rolagem};}
  412.  
  413.  
  414.  
  415. #sidebar {position:fixed; float: justify; z-index:2; left: 150px; top: 50px; padding-top:70px; padding: 1px; text-align: justify; width: 353px; height: 172px; background-color: transparent}
  416.  
  417.  
  418. div#cred{background-color: {color:sidebar};margin-top: 269px; letter-spacing: 0px; color: {color:sidebar text}; width:196px; height:auto; position: fixed; padding: 4px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; margin-left: 0px; font-family: verdana; z-index: 3; font-size:9px}
  419.  
  420. div#cred:hover {background-color: {color:sidebar}; height: auto; width: 196px; margin-left: 0px; color: {color:sidebar text};}
  421.  
  422.  
  423. .cred2 {text-align: justify; font-size: 9px; position: fixed; color: transparent; width: 194px; margin-top: 11px; margin-left: -4px; text-align: center; padding: 5px;}
  424.  
  425. .cred2:hover {color: {color:sidebar text}; background: {color:sidebar}; font-size: 9px; text-align: center;}
  426.  
  427.  
  428.  
  429.  
  430. div#creditos{background-color: {color:sidebar};margin-top: -1px; letter-spacing: 0px; color: {color:sidebar text}; width:15px; height:auto; position: fixed; padding: 4px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; margin-left: 733px; font-family: verdana; z-index: 3; font-size:9px}
  431.  
  432. div#creditos:hover {background-color: transparent; height: auto; width: 196px; margin-left: 734px; color:{color:sidebar text};}
  433.  
  434.  
  435. .creditos2 {text-align: justify; font-size: 9px; position: fixed; color: transparent; width: 194px; margin-top: -4px; margin-left: -5px; text-align: center; padding: 5px;}
  436.  
  437. .creditos2:hover {color:{color:sidebar text}; background: {color:sidebar}; font-size: 9px; text-align: center;}
  438.  
  439.  
  440. #closer{width: 740px; position: fixed; display: block; margin-left: 0px; margin-top: -31px; text-align: center; background: {color:sidebar}; color:{color:sidebar text}; height:30px; font-size:22px; line-height: 30px; font-family: georgia; font-style: italic;}
  441.  
  442. #pagina{width: 156px; position: fixed; display: block; margin-left: 600px; margin-top: -31px; text-align: center; background: {color:sidebar}; height:30px; font-size:18px;}
  443.  
  444.  
  445. /*** Paginação by madlyluv.com ***/
  446.  
  447. #paginacaoml {font-size:28px; font-family: georgia; line-height: 25px;}
  448.  
  449. #paginacaoml a {font-size: 28px; font-family: georgia; margin: 0 1px 0 0; padding: 2px 4px; color: {color:sidebar text}; text-decoration: none;}
  450.  
  451. #paginacaoml a:hover {font-size: 28px; font-family: georgia; background:; color: {color:sidebar text}; border: none;}
  452.  
  453. #paginacaoml span.pagina_atual {background: ; margin: 0 1px 0 0; padding: 2px 4px; text-decoration: none; font-weight: bold;}#paginacaoml span.info {background: ; margin: 0 1px 0 0; padding: 2px 4px; color: #cor da fonte; text-decoration: none;}
  454.  
  455.  
  456.  
  457.  
  458. #mf2{margin-left: 4px; margin-top:-92px; width: 276px; background-color:{color:sidebar}; position: fixed; height: 25px; overflow:hidden; color: #000;}
  459.  
  460. .mf2{margin: 2px 2px 2px 2px; font-family:Rochester; font-size: 20px; color: {color:text}; text-align: center; letter-spacing:-1px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; }
  461.  
  462.  
  463. .mf2:hover {letter-spacing: -1px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; opacity:0.10; }
  464.  
  465.  
  466.  
  467.  
  468.  
  469. #phrase {
  470.  
  471. background-color: transparent;
  472.  
  473. letter-spacing: 0px;
  474.  
  475. color: transparent;
  476.  
  477. width:323px;
  478.  
  479. height:95px;
  480.  
  481. line-height:30px;
  482.  
  483. position: fixed;
  484.  
  485. padding-top: 23px;
  486.  
  487. padding-bottom: 0px;
  488.  
  489. -webkit-transition: all 0.5s ease-out;
  490.  
  491. -moz-transition: all 0.5s ease-out;
  492.  
  493. margin-left: -49px;
  494.  
  495. font-family: georgia;
  496.  
  497. font-size: 22px;
  498.  
  499. margin-top: 24px;
  500.  
  501. z-index: 3;
  502.  
  503. background-color: trasparent;
  504.  
  505. filter:alpha(opacity=0.1)
  506.  
  507. -moz-opacity:0.1;
  508.  
  509. opacity:0.1
  510.  
  511. }
  512.  
  513.  
  514.  
  515. #phrase:hover {
  516.  
  517. background-color: {color:bg links};
  518.  
  519. height: 95px;
  520.  
  521. color: {color:text sidebar links};
  522.  
  523. filter:alpha(opacity=0.75)
  524.  
  525. -moz-opacity:0.60;
  526.  
  527. opacity:0.60
  528.  
  529. }
  530.  
  531.  
  532. #sidpic{width:auto; float:left; background-color:#trans; padding: 0px; margin-left: -451px; margin-top: 0px;}
  533.  
  534. #pic1{background-color:transparent; padding-top:5px; margin:0 0px 0 0px;}
  535.  
  536. .ture1{width: 201px; background-color:transparent;border:0px solid {color:sidebar}; -webkit-transition: all 1.0s ease-out; -moz-transition: all 1.0s ease-out; height:auto; }
  537.  
  538. .ture1 img{display: inline; margin-top: 0px; width: 199px; text-align:center; -webkit-transition: all 1.0s ease-out; -moz-transition: all 1.0s ease-out;}
  539. .ture1 img:hover{display: inline; padding-left: 0px; width: 200px; -webkit-transition: all 1.0s ease-out; -moz-transition: all 1.0s ease-out; opacity: 0;}
  540.  
  541.  
  542. #sidebar2 {position:fixed; float: justify; z-index:2; left: 566px; top: 120px; padding-top:70px; padding: 1px; text-align: justify; width: 3px; height: 3px; background-color: transparent;}
  543.  
  544.  
  545.  
  546.  
  547. .s1 {text-align: center; position: fixed; margin-top: 0px; margin-left:199px; width: 119px; background-color:#000; height: auto; border: 3px solid #000;}
  548. .s1 a {display: block; letter-spacing: 0px; width: 109px; font-family: ; font-size: 9px; text-align: center; margin-bottom: 1px; height: 14px; background-color: #fff; color: #000; text-decoration: none; padding: 5px 5px 5px 5px;-webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  549.  
  550. .s1 a:hover {text-align: center; width: 109px; letter-spacing: 1px; background-color: #000; color: #fff; padding: 5px 5px 5px 5px;}
  551.  
  552.  
  553. #sid{letter-spacing: 2px; position: fixed; margin-top: -10px; margin-left: -030px; height: 271px; width: 10px; background-color:transparent; padding: 10px;}
  554.  
  555. .ttle {margin-top: -4px; letter-spacing: 0px; text-align: center; font-family: georgia; text-transform: uppercase; font-size: 15px; color: {color:titleinv};}
  556. .ttle a{font-family: georgia; font-style: italic; font-size: 22px; color: {color:titleinv}; background-color: transparent; }
  557. .ttle a:hover {font-family: georgia; font-style: italic; font-size: 22px; color: {color:titleinv}; background-color: transparent;}
  558.  
  559. #tlink {text-align: center; position: fixed; float: left; margin-top: 267px; margin-left: -192px; font-size: 9px;}
  560.  
  561. #tlink a {display: block; letter-spacing: 0px; width: 112px; font-family: ; font-size: 9px; text-align: center; height: 9px; padding-bottom: 1px; background-color: {color:bg links}; color: {color:Text sidebar links}; text-decoration: none; padding: 3px 3px 3px 3px;-webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  562.  
  563. #tlink a:hover{text-align: center; width: 112px; letter-spacing: 2px; background-color: {color:sidebar}; color: {color:text}; padding: 3px 3px 3px 3px; text-shadow:4px 3px 15px {color:bg links};}
  564.  
  565. #sideimg {display: block; margin-left: 200px; float: right; margin-top: -79px; width: auto; height: auto; background-color: transparent; position: fixed;}
  566.  
  567. .simg1 img {width: 109px; height: 74px; margin-bottom: 2px; border: 0px solid #f8f8f8;}
  568.  
  569. .simg1 img:hover {-webkit-transition: all 0.9s ease-out; -moz-transition: all 0.9s ease-out; opacity: 0.0}
  570.  
  571. #bolak {
  572. position:fixed;
  573. width:105px;
  574. height:105px;
  575. margin-top:400px;
  576. margin-left:-95px;
  577. background-color: {color:sidebar};
  578. -moz-border-radius: 70px;
  579. -webkit-border-radius: 70px;
  580. z-index:2;
  581. -webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out;
  582. }
  583.  
  584. #bolak img {
  585. position:fixed;
  586. height:auto;
  587. width: auto;
  588. margin-top:4px;
  589. margin-left:4px;
  590. margin-bottom:10px;
  591. -moz-border-radius: 76px;
  592. -webkit-border-radius: 76px;
  593. z-index:2;
  594. }
  595.  
  596.  
  597.  
  598. #barra3 {
  599. position: right;
  600. margin-left: -460px;
  601. top:380px;
  602. width: 800px;
  603. height: 8px;
  604. background-color: {color:sidebar};
  605. text-align: center;
  606. position: fixed;
  607. -webkit-transform: rotate(-90deg);
  608. }
  609.  
  610. #barra2 {
  611. position: right;
  612. margin-left: -76px;
  613. top:133px;
  614. width: 351px;
  615. height: 8px;
  616. background-color: {color:background2};
  617. text-align: center;
  618. position: fixed;
  619. }
  620.  
  621.  
  622. #barra1 {
  623. position: right;
  624. margin-left: 154px;
  625. top:254px;
  626. width: 250px;
  627. height: 8px;
  628. background-color: {color:background2};
  629. text-align: center;
  630. position: fixed;
  631. -webkit-transform: rotate(-90deg);
  632. }
  633.  
  634. #barra0 {
  635. position: right;
  636. margin-left: -76px;
  637. top:382px;
  638. width: 359px;
  639. height: 8px;
  640. background-color: {color:background2};
  641. text-align: center;
  642. position: fixed;
  643.  
  644. }
  645.  
  646. #title {
  647. position:fixed;
  648. margin-left:-27px;
  649. color:#000000;
  650. font-family:Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
  651. font-size:23px;
  652. font-style:italic;
  653. letter-spacing:1px;
  654. text-align:center;
  655. margin-top:80px;
  656. margin-bottom:4px;
  657. line-height:13px;
  658.  
  659. }
  660.  
  661.  
  662. .title2 {
  663. color:#6b6b6b;
  664. position:fixed;
  665. margin-top:305px;
  666. margin-left:-290px;
  667. font-family:Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
  668. font-size:11px;
  669. font-style:italic;
  670. letter-spacing:1px;
  671. text-align:center;
  672. margin-bottom:10px;
  673. line-height:20px;
  674. z-index:2;
  675. }
  676. #cre {width: 208px; height: auto; margin-left: -67px; margin-top: -3px; position:fixed; overflow:hidden; -webkit-border-bottom-left-radius: 10px; -moz-border-bottom-left-radius: 10px; border-bottom-left-radius: 10px; }
  677. .cre {font-family: verdana; background-color:{color:sidebar}; text-transform: lowercase; font-size: 9px; color: {color:text}; text-align: center; }
  678.  
  679.  
  680. #sidebarlinks{margin-left: 218px; margin-top: 0px; width: auto; float: left; background-color: {color:background}; padding: 0px; position: fixed; height: auto; -webkit-transition: all 2s ease-out; -moz-transition: all 2s ease-out;}
  681.  
  682.  
  683.  
  684. .links2 {margin-top:0px; float: left;text-align: center; font-family: verdana; font-size: 9px; margin-left:1px; text-transform: uppercase;}
  685.  
  686. .links2 a{display: block; font-family: verdana; font-size: 9px; text-align: center; width: 11px; height: 100px; background-color: #fff; color:#000; text-decoration: none; padding: 9px 5px 15px 5px; -webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; margin-bottom: 1px; text-transform: uppercase;}
  687.  
  688. .links2 a:hover {text-align: center; background-color: #fff; color:#000; -webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; text-shadow:4px 3px 15px #000;}
  689.  
  690. #images {width: 188px; height:205px; margin-left: -437px; margin-top: -52px; margin-bottom: 10px; padding: 1px; background-color: {color:sidebar}; text-align: center; position: fixed;}
  691.  
  692. .mg {clear: both; margin-top: 13px; padding: 0px; margin-right:4px; margin-top: 1px; margin-left:3px;}
  693. .mg img{display: inline; margin-top: 2px; width: 180px; text-align:center; -webkit-transition: all 2.0s ease-out; -moz-transition: all 2.0s ease-out; opacity:0;}
  694. .mg img:hover{display: inline; margin-top: 2px; width: 180px; -webkit-transition: all 2.0s ease-out; -moz-transition: all 2.0s ease-out; opacity:0;}
  695.  
  696. .mg2 {clear: both; margin-top: 5px; padding: 0px; margin-right:4px; margin-top: 1px; margin-left: 3px; -webkit-transition: all 2.0s ease-out; -moz-transition: all 2.0s ease-out; }
  697. .mg2 img{display: inline; margin-top: 2px; max-width: 180px; text-align:center; -webkit-transition: all 2.0s ease-out; -moz-transition: all 2.0s ease-out; }
  698. .mg2 img:hover{display: inline; margin-top: 2px; max-width: 180px; text-align:center; -webkit-transition: all 2.0s ease-out; -moz-transition: all 2.0s ease-out; z-index: 59; -webkit-border-radius: 20px; -moz-border-radius: 20px;}
  699.  
  700.  
  701. #creat{width: 334px; height:auto; font-size: 9px; color: #000; position: fixed; display: block; margin-left: 0px; border-bottom: 2px solid #fff; margin-top: 272px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; z-index: 0; text-align: center; background: #fff;}
  702.  
  703.  
  704. #credit {float: left; margin-top: 238px; margin-left: 187px; width: 168px; background-color: #fff; color: #000; font-size: 9px; text-align: center; height: 31px; line-height:155%;}
  705.  
  706. #credit a{font-size: 9px; color:#000}
  707.  
  708. #frasek {width: 844px; margin-left: 79px; height: 15px; margin-top: -261px; float:left; text-align: center; background-color: #fff; font-size: 18px; position:fixed; padding: 5px; color: #000; font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; border-bottom: 1px solid {color:background}}
  709.  
  710. #frasek:hover {width: 844px; margin-left: 79px; height: 15px; margin-top: -261px; float:left; text-align: center; background-color: #fff; font-size: 18px; position:fixed; padding: 5px; color: #000; font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; border-bottom: 1px solid {color:background}; font-style: italic;}
  711.  
  712. #block {width: 839px; margin-left: 79px; height: 35px; margin-top: -76px; float:left; text-align: center; background-color: {color:background}; font-size: 18px; position:fixed; padding: 5px; color: #FFF; font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;}
  713.  
  714. .sdescri {text-align: justify; overflow: hidden; height: 250px; -webkit-border-radius: 0px 0px 0px 0px; font-size: 9px; font-family: verdana; position: fixed; margin-left: 0px; width: 184px; background-color: {color:sidebar}; color: {color:text}; padding: 10px; margin-top: -1px; background-attachment: fixed; }
  715.  
  716. .sdescri img{width: 193px; height: 260px; margin-left: -5px; margin-top: -5px; }
  717.  
  718.  
  719. #slideShowContainer{ float: left; margin-top: -1px; margin-left: 6px; height: auto; width:200px; position: fixed; background-color: transparent; }
  720.  
  721. #slideShow2 {margin-top: 0px; margin-bottom: 5px; -webkit-transition: all 2s ease-out; -moz-transition: all 2s ease-out;}
  722.  
  723. #slideShow2 img{width: auto; height: 260px; margin-left: 0px;}
  724. #slideShow2:hover {opacity: 0;}
  725.  
  726. #slideShow4 {margin-top: 5px; margin-bottom: 5px;}
  727. #slideShow4 img{width: auto; height: 260px; margin-left: 0px;}
  728.  
  729. #fraseo {border: 0px solid {color:background}; padding: 8px; overflow:auto; color: #fff; width: 152px; margin-top:-1px; margin-left:187px; line-height: 100%; text-align: justify; font-family: Verdana; height: 222px; font-size:9px; background-color: #000;}
  730.  
  731. .player {float: left; margin-left: 0px; width: 124px; height: auto; background-color: #fff; text-align: center; padding: 3px; font-size: 9px; position:fixed; margin-top: -270px;}
  732. .player:hover {float: left; margin-left: 204px; width: 124px; height: auto; background-color: {color:sidebar}; text-align: center; padding: 3px; font-size: 9px; position:fixed; margin-top: -3px; border:3px solid #000;}
  733.  
  734.  
  735. #mls {width: auto; height: auto; position:fixed; overflow:hidden; padding:3px; opacity: 0.0;}
  736.  
  737. #mls:hover {opacity: 1.0}
  738.  
  739. #mls a {display: block; font-family: verdana; font-size: 9px; text-align: center; height: 20px; width: 186px; line-height: 20px; background-color: {color:sidebar}; color: {color:sidebar text};text-decoration: none; text-transform: lowercase; padding: 3px; margin-bottom: 2px; opacity: 0.5}
  740.  
  741. #mls a:hover{background-color: {color:sidebar}; color: {color:sidebar text}; -webkit-transition: all 0.9s ease-out; -moz-transition: all 0.9s ease-out; opacity: 0.4}
  742.  
  743. .ttitul {text-align: center; width: 192px; font-family: georgia; margin-top: 2px; font-size: 18px; color:{color:sidebar text}; letter-spacing: 1px; line-height: 31px; background-color: {color:sidebar}; opacity: 0.5}
  744.  
  745. .ttitul:hover {text-align: center; font-family: georgia; margin-top: 2px; font-size: 18px; color: {color:sidebar text}; letter-spacing: 1px; line-height: 31px; background-color:{color:sidebar}; opacity: 0.4}
  746.  
  747.  
  748. #aparente {position:fixed; height:250px; background-color:#fff; color:#000; margin-left: 3px; margin-top: 2px;}
  749.  
  750. #oititulo {margin-left: 0px; margin-top: 240px; width: 250px; font-size: 9px; height: 15px; text-align: center; background-color: #000; font-family: verdana; line-height: 17px; color: #fff; position: fixed; padding: 5px 0 9px 0; -webkit-border-radius: 0px 0px 0px 0px; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; overflow: visible;}
  751.  
  752.  
  753.  
  754. #oititulo:hover {border-top: 300px solid #000;}
  755.  
  756.  
  757.  
  758. .descricaovic {text-align: center; padding: 5px; font-family: verdana; margin-top: -20px; font-size: 9px; color: ; letter-spacing: 0px; line-height: 10px; color:transparent;}
  759. .descricaovic:hover {text-align: center; padding: 5px; font-family: verdana; margin-top: 5px; font-size: 9px; color: ; letter-spacing: 0px; line-height: 10px; color:#fff;}
  760.  
  761. #tumblr_controls{position: fixed!important}
  762. #tumblr_controls{position: fixed!important}
  763. #tumblr_controls{position: fixed!important}
  764. #tumblr_controls{position: fixed!important}
  765.  
  766. iframe#tumblr_controls {
  767. position: fixed !important;
  768. top: 0 !important;
  769. right: 0 !important;
  770. opacity: 0.5 !important;
  771. -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;
  772. }
  773.  
  774.  
  775. iframe#tumblr_controls:hover {
  776. position: fixed !important;
  777. top: 0 !important;
  778. right: 0 !important;
  779. opacity: 1.0 !important;
  780. -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;
  781. }
  782.  
  783.  
  784. </style>
  785.  
  786.  
  787. <body>
  788.  
  789.  
  790.  
  791.  
  792. <div id="sidebar">
  793.  
  794.  
  795.  
  796. <div id="closer">{text:title3}</div><div id="pagina"><div id="paginacaoml">
  797. <center>
  798. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«</a> {/block:PreviousPage}{block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}{/block:Pagination}
  799. </div></div>
  800.  
  801.  
  802.  
  803.  
  804.  
  805. <div class="sdescri"><img src="{image:sidebar}"/></div>
  806.  
  807.  
  808.  
  809.  
  810. <div id="aparente">
  811.  
  812.  
  813. <div id="mls">
  814.  
  815. <a href="{text:link1}">{text:link1 title}</a>
  816.  
  817. <a href="{text:link2}">{text:link2 title}</a>
  818.  
  819. <a href="{text:link3}">{text:link3 title}</a>
  820.  
  821. <a href="{text:link4}">{text:link4 title}</a>
  822.  
  823. <a href="{text:link5}">{text:link5 title}</a>
  824.  
  825. <a href="{text:link6}">{text:link6 title}</a>
  826.  
  827. <a href="http://o-mundo-de-uma-garota.tumblr.com">Themes(C)</a>
  828.  
  829. <div class="ttitul">{text:title2}</div>
  830. </div>
  831. </div>
  832.  
  833.  
  834.  
  835.  
  836. <div id="block"></div>
  837.  
  838.  
  839.  
  840. <div id="cred"><div class="cred2"><center>{description}
  841. </center></div><center>{text:frase}</center></div>
  842.  
  843.  
  844. <div id="sid"> <div class="ttle">{text:title}</div></div>
  845.  
  846.  
  847. <div id="barra3"></div>
  848. <div id="bolak"><img src="{PortraitURL-96}"/></div>
  849.  
  850.  
  851. <div id="creditos"><div class="creditos2"><center> theme by o mundo de uma garota. com base de sonhos-confusos, details by l-oveyourself and c0smica. don't copy, motherfucker.</center></div><center>C</center></center></div>
  852.  
  853.  
  854. </div>
  855.  
  856.  
  857. <div id="sidebar2">
  858.  
  859.  
  860.  
  861.  
  862.  
  863. </div>
  864.  
  865.  
  866.  
  867. </div>
  868.  
  869.  
  870. </div>
  871.  
  872.  
  873. <div id="entries">
  874. {block:Posts}
  875. <div class="post">
  876.  
  877. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  878.  
  879. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  880.  
  881. {block:Photoset}{Photoset-500}{/block:Photoset}
  882.  
  883. {block:Quote}
  884. <div class="qquote"><center>"{Quote}"</div>
  885. {block:Source}<div class="qsource">— {Source}</center></div>{/block:Source}
  886. {/block:Quote}
  887.  
  888. {block:Link}
  889. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  890. {block:Description}{Description}{/block:Description}
  891. {/block:Link}
  892.  
  893. {block:Chat}
  894. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  895. <div class="chat"><ul>{block:Lines}
  896. <li class="person{UserNumber}">{block:Label}
  897. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  898. {/block:Chat}
  899.  
  900. {block:Audio}
  901. <br>
  902. <div class="audio">{AudioPlayerBlack}</div>
  903. {block:Caption}{Caption}{/block:Caption}
  904. {/block:Audio}
  905.  
  906. {block:Video}{Video-500}{/block:Video}
  907.  
  908.  
  909.  
  910.  
  911. {block:Answer}<div id="questions">{Asker} asked: "{Question}"</div>
  912. {Answer}{/block:answer}
  913.  
  914. <div id="cap">
  915. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  916. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  917. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  918.  
  919. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  920. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  921. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  922. {/block:ContentSource}</div></div>
  923. <br>
  924. <div class="tags">{block:HasTags}<font color=000><B>indiretas:</b></font> {block:Tags}<a href="{TagURL}">#{Tag}</a>&nbsp;&nbsp;{/block:Tags}{/block:HasTags}</div>
  925.  
  926. <div id="dda">
  927.  
  928.  
  929. <div style="float:left;" class="tags">
  930. {block:Date} <a href="{Permalink}">{TimeAgo}</a> {/block:Date} {block:NoteCount} · <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}{block:IndexPage} · <a href="{ReblogUrl}" target="_blank">reblog this</a>{/block:IndexPage}<br>
  931. {block:RebloggedFrom} originally <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>
  932. </span>{/block:RebloggedFrom} {block:RebloggedFrom} · via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  933. </div>
  934. </ br>
  935. <br clear="all" /></div></div>
  936.  
  937.  
  938. {/block:Posts}
  939. {block:PostNotes}
  940. <div id="notes"><div id="ntstext">{PostNotes}</div></div>
  941. {/block:PostNotes}
  942.  
  943. </div>
  944. </div>
  945. </div></div></div>
  946.  
  947. </div></div></div></div></div></div>
Advertisement
Add Comment
Please, Sign In to add comment