suicideofminds

Theme 05

Mar 22nd, 2012
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.88 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. <script>
  4. function bloqueio()
  5. {alert(mensagem);}
  6. document.onkeydown=bloqueio;
  7. </script>
  8.  
  9.  
  10.  
  11.  
  12. <script type="text/javascript">
  13. //desabilita menu de opcoes ao clicar no botao direito
  14. function desabilitaMenu(e)
  15.  
  16.  
  17.  
  18.  
  19. {
  20.  
  21.  
  22.  
  23.  
  24. if (window.Event)
  25.  
  26.  
  27.  
  28.  
  29. {
  30.  
  31.  
  32.  
  33.  
  34. if (e.which == 2 || e.which == 3)
  35.  
  36.  
  37.  
  38.  
  39. return false;
  40.  
  41.  
  42.  
  43.  
  44. }
  45.  
  46.  
  47.  
  48.  
  49. else
  50.  
  51.  
  52.  
  53.  
  54. {
  55.  
  56.  
  57.  
  58.  
  59. event.cancelBubble = true
  60.  
  61.  
  62.  
  63.  
  64. event.returnValue = false;
  65.  
  66.  
  67.  
  68.  
  69. return false;
  70.  
  71.  
  72.  
  73.  
  74. }
  75.  
  76.  
  77.  
  78.  
  79. }
  80.  
  81.  
  82.  
  83.  
  84. document.oncontextmenu = desabilitaMenu;
  85.  
  86.  
  87.  
  88.  
  89. document.onmousedown = desabilitaBotaoDireito;
  90.  
  91.  
  92.  
  93.  
  94. document.onmouseup = desabilitaBotaoDireito;
  95.  
  96.  
  97.  
  98.  
  99. </script>
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108. <script language="JavaScript1.2">
  109.  
  110.  
  111.  
  112.  
  113. function disableselect(e){
  114.  
  115.  
  116.  
  117.  
  118. return false
  119.  
  120.  
  121.  
  122.  
  123. }
  124.  
  125.  
  126.  
  127.  
  128. function reEnable(){
  129.  
  130.  
  131.  
  132.  
  133. return true
  134.  
  135.  
  136.  
  137.  
  138. }
  139.  
  140.  
  141.  
  142.  
  143. //if IE4+
  144.  
  145.  
  146.  
  147.  
  148. document.onselectstart=new Function ("return false")
  149.  
  150.  
  151.  
  152.  
  153. //if NS6
  154.  
  155.  
  156.  
  157.  
  158. if (window.sidebar){
  159.  
  160.  
  161.  
  162.  
  163. document.onmousedown=disableselect
  164.  
  165.  
  166.  
  167.  
  168. document.onclick=reEnable
  169.  
  170.  
  171.  
  172.  
  173. }
  174.  
  175.  
  176.  
  177.  
  178. </script>
  179.  
  180. <script language="JavaScript1.2">
  181.  
  182. function disableselect(e){
  183.  
  184. return false
  185.  
  186. }
  187.  
  188. function reEnable(){
  189.  
  190. return true
  191.  
  192. }
  193.  
  194. //if IE4+
  195.  
  196. document.onselectstart=new Function ("return false")
  197.  
  198. //if NS6
  199.  
  200. if (window.sidebar){
  201.  
  202. document.onmousedown=disableselect
  203.  
  204. document.onclick=reEnable
  205.  
  206. }
  207.  
  208. </script><script type="text/javascript">
  209.  
  210. //desabilita menu de opcoes ao clicar no botao direito
  211.  
  212. function desabilitaMenu(e)
  213.  
  214. {
  215.  
  216. if (window.Event)
  217.  
  218. {
  219.  
  220. if (e.which == 2 || e.which == 3)
  221.  
  222. return false;
  223.  
  224. }
  225.  
  226. else
  227.  
  228. {
  229.  
  230. event.cancelBubble = true
  231.  
  232. event.returnValue = false;
  233.  
  234. return false;
  235.  
  236. }
  237.  
  238. }
  239.  
  240.  
  241.  
  242. //desabilita botao direito
  243.  
  244. function desabilitaBotaoDireito(e)
  245.  
  246. {
  247.  
  248. if (window.Event)
  249.  
  250. {
  251.  
  252. if (e.which == 2 || e.which == 3)
  253.  
  254. return false;
  255.  
  256. }
  257.  
  258. else
  259.  
  260. if (event.button == 2 || event.button == 3)
  261.  
  262. {
  263.  
  264. event.cancelBubble = true
  265.  
  266. event.returnValue = false;
  267.  
  268. return false;
  269.  
  270. }
  271.  
  272. }
  273.  
  274.  
  275.  
  276. //desabilita botao direito do mouse
  277.  
  278. if ( window.Event )
  279.  
  280. document.captureEvents(Event.MOUSEUP);
  281.  
  282. if ( document.layers )
  283.  
  284. document.captureEvents(Event.MOUSEDOWN);
  285.  
  286.  
  287.  
  288. document.oncontextmenu = desabilitaMenu;
  289.  
  290. document.onmousedown = desabilitaBotaoDireito;
  291.  
  292. document.onmouseup = desabilitaBotaoDireito;
  293.  
  294. </script>
  295.  
  296.  
  297. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  298. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  299. <head>
  300. <!-- DEFAULT VARIABLES -->
  301. <meta name="font:text" content="verdana" />
  302. <meta name="color:background" content="#f8f8f8" />
  303. <meta name="color:scroll" content="#888888" />
  304. <meta name="color:link" content="#000000" />
  305. <meta name="color:text" content="#000000" />
  306. <meta name="color:post" content="#ffffff" />
  307. <meta name="color:sidebarlinkstext" content="#000000" />
  308. <meta name="color:sidebarlinks" content="#ffffff" />
  309. <meta name="color:hover" content="#131313" />
  310. <meta name="color:hovertext" content="#ffffff" />
  311. <meta name="image:background" content="" />
  312. <meta name="image:foto da sidebar" content="http://26.media.tumblr.com/tumblr_m0jgbluOOp1rpw6aho1_500.jpg" />
  313. <meta name="if:ShowTags" content="0"/>
  314. <meta name="text:frase que se move" content="Passe o mouse na foto [...]" />
  315. <meta name="text:title2" content="[...] e no titulo, em cima dela." />
  316. <meta name="text:Link1" content="/" />
  317. <meta name="text:Link1 Title" content="link 1" />
  318. <meta name="text:Link2" content="/" />
  319. <meta name="text:Link2 Title" content="link 2" />
  320. <meta name="text:Link3" content="/" />
  321. <meta name="text:Link3 Title" content="link 3" />
  322. <meta name="text:Link4" content="/" />
  323. <meta name="text:Link4 Title" content="link 4" />
  324. <meta name="text:Link5" content="/" />
  325. <meta name="text:Link5 Title" content="link 5" />
  326. <meta name="text:Link6" content="/" />
  327. <meta name="text:Link6 Title" content="link 6" />
  328. <meta name="text:Link7" content="/" />
  329. <meta name="text:Link7 Title" content="link 7" />
  330.  
  331.  
  332.  
  333. <title>{Title}</title>
  334. <link rel="shortcut icon" href="{Favicon}">
  335. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  336. {block:Description}
  337. <meta name="description" content="{MetaDescription}" />
  338. {/block:Description}
  339.  
  340.  
  341. <style type="text/css">
  342.  
  343.  
  344. body {background-color:{color:background}; font-family: {font:text}; color: {color:text}; text-align: center; font-size: 11px; background-image:url('{image:background}'); background-attachment: fixed; }
  345.  
  346. a {color: {color:link}; text-decoration: none; text-transform: none;}
  347. a:hover {color: {color:text}; background-color: transparent; text-decoration: none;}
  348.  
  349. p {margin: 6px 0 0 0}
  350.  
  351. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 5px;}
  352. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background};}
  353. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  354. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  355.  
  356. blockquote img{max-width: 470px!important}
  357. blockquote blockquote img{max-width: 450px!important}
  358. blockquote blockquote blockquote img{max-width: 430px!important}
  359. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  360.  
  361. #blaibeidi {text-align: center; width: 935px; margin-left: 143px; padding: 13px; z-index: 1}
  362.  
  363. #xpost {float: left; margin-left: -2px; margin-top:16px;}
  364.  
  365. .xxpost {width: 500px; background-color: {color:post}; padding: 15px; margin-bottom: 1px; text-align: justify; font-family: {font:text}; font-size: 11px; position: relative;}
  366.  
  367. h1 {font-family: georgia; text-align: center; font-size: 18px; color: {color:text}; font-weight: normal; line-height: 22px; text-transform: uppercase;}
  368. h1 a {text-align: center; font-size: 18px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 20px;}
  369. h1 a:hover {text-align: center; font-size: 18px; color: {color:text}; font-weight: normal; line-height: 20px; text-transform: uppercase;}
  370.  
  371. .image {text-align: center; border: 0px}
  372. .image img {max-width: 500px; margin-bottom: 2px }
  373.  
  374. .markqt {font-size: 80px; font-family: verdana; color:{color:text}; line-height: 90px; margin-left: 0px; opacity: 0.2; filter:alpha (opacity=100); }
  375. .qt {font-family: georgia; font-size: 19px; line-height: 23px; margin-top: -83px; margin-left: 5px; padding: 10px; font-style:italic;}
  376. .qsr{margin: -10px 70px 0 0; text-align: right; text-transform: none;}
  377. .qsr a, a:hover{text-transform: none;}
  378.  
  379. .chat {line-height: 13px; list-style: none }
  380. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  381. .person1 {color: {color:text}; padding: 2px; }
  382. .person1 .label {font-weight: bold; color:{color:text}}
  383. .person2 {color: {color:text}; padding: 2px; }
  384. .person2 .label {font-weight: bold; color:{color:text}}
  385.  
  386. .player {background-color: #000; text-align: left; display:block;}
  387.  
  388. #asker {font-size: 11px; font-family: {font:text}; text-align: justify;}
  389. .answer {padding: 2px}
  390. .answer img {max-width: 470px;}
  391.  
  392.  
  393. #xdate {text-align: left; font-size: 9px; font-family: {font:text}; text-transform: lowercase; z-index: 11;}
  394. #xdate a {font-size: 9px;}
  395.  
  396. .tags {color: {color:text}; font-size: 9px; font-family: {font:text}; display: inline; list-style: none; text-transform: lowercase;}
  397. .tags a {font-size: 9px; color: verdana; display: inline; list-style: none; text-transform: lowercase;}
  398.  
  399. #cap {width: 500px; margin-top: -2px;}
  400. .source {display: none;}
  401.  
  402. .notes {width: 530px; padding: 0px; margin-top: 5px; margin-bottom: 10px; font-size: 9px; text-align: left}
  403. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  404. ol.notes li {background-color: {color:background}; margin-bottom: 5px; padding: 5px; }
  405. .notes img{display: none; border:0px}
  406.  
  407.  
  408. #sidebar {position: absiol; margin-left: -168px; margin-top: 10px;}
  409.  
  410. #maosparaoaltonovinha {z-index: 90; margin-top: -35px; background-color:{color:background}; width: 1320px; height: 51px; padding: 0px; position: fixed; margin-left: -170px;}
  411.  
  412.  
  413.  
  414. #iceeutepegu {position:absolute; margin-top: 16px; background-color: {color:post}; width:361px; height:297px; padding: 0px; left: 693px; color: {color:text}; font:9px verdana;}
  415.  
  416. #slideShowContainer{position:absolute;float: left; width:359px; margin-top: 1px; left:694px; position: fixed; }
  417. #slideShow2 img{width:359px; -webkit-transition: all .8s ease-out; -moz-transition: all .8s ease-out; height:255px; margin-left:0px;}
  418. #links {width: 359px; float: left; margin-left:0px; margin-top: -3px; padding: 0px; text-align: center; position: fixed; -moz-transition: opacity .5s ease-in-out; -o-transition: opacity .5s ease-in-out; transition: opacity .5s ease-in-out; -webkit-transition: opacity .5s ease-in-out; opacity: 0;}
  419. #links a {float: left; margin-left: 0px; display: block; letter-spacing: -1px; font-family: verdana; font-size: 9px; text-align: center; margin-bottom: 1px; width: 359px; background-color: {color:sidebarlinks}; color:{color:sidebarlinkstext}; text-decoration: none; text-transform: none; line-height: 31px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; height: 31px;}
  420. #links a:hover{text-align: center; background-color: {color:hover}; color:{color:hovertext}; letter-spacing: 2px;}
  421. #links:hover{opacity: 1.0;}
  422.  
  423.  
  424. #frase1 {margin-left:529px; margin-top: 10px; width: 341px; font-size: 18px; height: 19; text-align: center; background-color:{color:post}; font-family: georgia; z-index:20; color: {color:text}; position: fixed; padding: 10px; overflow: hidden; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; }
  425.  
  426.  
  427. #frase2 {margin-left:529px; margin-top: 273px; width: 341px; font-size: 18px; height:20px; text-align: center; background-color:{color:post}; display:block; font-family: georgia; z-index:20; color: {color:text}; position: fixed; padding: 10px; opacity: 0.8}
  428.  
  429.  
  430. #frase1:hover {height: 243px; width:341px; margin-top: 16px; margin-left:529px; text-align:center; background-color:{color:post}; font-family:georgia; color: {color:text}; position: fixed; opacity: 0.8}
  431.  
  432. .lugdesc {text-align: justify; padding: 5px; font-family: verdana; margin-top: 10px; font-size: 10px; color: ; letter-spacing: 0px;}
  433.  
  434.  
  435. #creds {position: fixed; font-size: 9px; margin-top: 335px; margin-left: 529px; width: 361px; height: 20px; line-height: 20px; background-color: {color:post}; border-bottom-left-radius:11px; border-bottom-right-radius:11px;}
  436.  
  437.  
  438. #bgpg {position: fixed; margin-top: 314px; margin-left: 529px; width: 361px; height: 20px; line-height: 20px; background-color: {color:post}}
  439.  
  440.  
  441. /*** Paginação by madlyluv.com ***/
  442. #paginacaoml {font-family: verdana; font-size: 8px; line-height: 20px;}
  443. #paginacaoml a {background: {color:background}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:link}; text-decoration: none;}
  444. #paginacaoml a:hover {background: {color:background}; color: {color:sublink}; border: none;}
  445. #paginacaoml span.pagina_atual {background: {color:background}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;}
  446. .ps {margin-left: 695px; background-color: transparent; width: 250px; position: fixed; margin-top: 368px; z-index: 1;}
  447.  
  448. .pages{width: 110px; margin: 334px 0 0 310px; text-align: center; font-size: 25px; line-height:45px; position:fixed; font-family:verdana;}
  449. .pages a{text-decoration: none;color:{color:sidebartext}; font-family:verdana;}
  450. .pages a:hover{color:{color:linkbackground}}
  451. .pprev{width: 53px; float: left; margin-left:-260px;}
  452. .pnext{width: 53px; float: right; }
  453.  
  454.  
  455. ::-webkit-scrollbar{width:3px;height:3px;}
  456. ::-webkit-scrollbar-button:start:decrement
  457. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-
  458.  
  459. color:{color:background};}
  460. ::-webkit-scrollbar-track-piece{background-color: {color:background} ;}
  461. ::-webkit-scrollbar-thumb:vertical{height:10px; background-color:
  462.  
  463. {color:scroll};}
  464. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color:
  465.  
  466. {color:scroll};}
  467.  
  468. </style>
  469.  
  470. <body onkeydown="return false">
  471. <div id="blaibeidi">
  472. <div id="maosparaoaltonovinha">
  473. </div>
  474. <div id="iceeutepegu">
  475. <div id="slideShowContainer">
  476. <div id="links"><br><br><br>
  477. <a href="{text:Link1}">{text:Link1 Title}</a>
  478. <a href="{text:Link2}">{text:Link2 Title}</a>
  479. <a href="{text:Link3}">{text:Link3 Title}</a>
  480. <a href="{text:Link4}">{text:Link4 Title}</a>
  481. <a href="{text:Link5}">{text:Link5 Title}</a>
  482. <a href="{text:Link6}">{text:Link6 Title}</a>
  483. <a href="{text:Link7}">{text:Link7 Title}</a>
  484.  
  485. </div>
  486.  
  487. <div id="slideShow2">
  488. <img src="{image:foto da sidebar}"/>
  489. </div>
  490. </div>
  491. </div>
  492.  
  493. <div id="frase2">{text:title2}</div>
  494.  
  495. <div id="frase1">{text:frase que se move}
  496.  
  497. <div class="lugdesc">{Description}</div></div>
  498.  
  499. <div id="bgpg">
  500. <div id="paginacaoml"><center>{block:Pagination}{/block:Pagination}{block:JumpPagination length="10"}{block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}{block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}{block:Pagination}{/block:Pagination}</center></div></div>
  501.  
  502.  
  503. <div id="creds"><center>Theme by <a href="http://suicideofminds.tumblr.com"><b>suicideofminds</b></a>.</center>
  504. </div>
  505.  
  506.  
  507. <div id="xpost">
  508. {block:Posts}
  509. <div class="xxpost">
  510.  
  511. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  512. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  513.  
  514. {block:Photoset}{Photoset-500}{/block:Photoset}
  515. {block:Quote}<b class="markqt">“</b><div class="qt">{Quote}</div>{block:Source}<div class="qsr"> — {Source}</div>{/block:Source}{/block:Quote}
  516.  
  517. {block:Link}
  518. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  519. {block:Description}{Description}{/block:Description}
  520. {/block:Link}
  521.  
  522. {block:Chat}
  523. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  524. <div class="chat"><ul>{block:Lines}
  525. <li class="person{UserNumber}">{block:Label}
  526. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  527. {/block:Chat}
  528.  
  529. {block:Audio}
  530. <div class="player">{AudioPlayerBlack}</div>
  531. {block:Caption}{Caption}{/block:Caption}
  532. {/block:Audio}
  533.  
  534. {block:Video}{Video-500}{/block:Video}
  535.  
  536. {block:Answer}
  537. <div id="asker"><b>{Asker} asked:</b> {Question}</div>
  538. <div class="answer">{Answer}</div>
  539. {/block:Answer}
  540.  
  541. <div id="cap">
  542. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  543. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  544. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  545.  
  546. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  547. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  548. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  549. {/block:ContentSource}</div></div>
  550. <br>
  551.  
  552.  
  553. <div id="xdate">
  554. {block:Date}{block:IfShowTags}<div class="tags">{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}</div>{/block:IfShowTags}
  555. <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} · <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {block:IndexPage} · <a href="{ReblogUrl}" target="_blank">fucking reblog</b></a>{/block:IndexPage}
  556. {block:RebloggedFrom}<br>originally <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom} · via <a href="{ReblogParentURL}">{ReblogParentName}</a>
  557. {/block:RebloggedFrom}
  558. </div>
  559. </div>{/block:Date}
  560. {/block:Posts}
  561.  
  562.  
  563. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  564.  
  565. </div>
  566.  
  567. </body>
  568. </html>
Advertisement
Add Comment
Please, Sign In to add comment