suicideofminds

Theme 06

Mar 24th, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.26 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3.  
  4. <script>
  5. function bloqueio()
  6. {alert(mensagem);}
  7. document.onkeydown=bloqueio;
  8. </script>
  9.  
  10.  
  11.  
  12.  
  13. <script type="text/javascript">
  14. //desabilita menu de opcoes ao clicar no botao direito
  15. function desabilitaMenu(e)
  16.  
  17.  
  18.  
  19.  
  20. {
  21.  
  22.  
  23.  
  24.  
  25. if (window.Event)
  26.  
  27.  
  28.  
  29.  
  30. {
  31.  
  32.  
  33.  
  34.  
  35. if (e.which == 2 || e.which == 3)
  36.  
  37.  
  38.  
  39.  
  40. return false;
  41.  
  42.  
  43.  
  44.  
  45. }
  46.  
  47.  
  48.  
  49.  
  50. else
  51.  
  52.  
  53.  
  54.  
  55. {
  56.  
  57.  
  58.  
  59.  
  60. event.cancelBubble = true
  61.  
  62.  
  63.  
  64.  
  65. event.returnValue = false;
  66.  
  67.  
  68.  
  69.  
  70. return false;
  71.  
  72.  
  73.  
  74.  
  75. }
  76.  
  77.  
  78.  
  79.  
  80. }
  81.  
  82.  
  83.  
  84.  
  85. document.oncontextmenu = desabilitaMenu;
  86.  
  87.  
  88.  
  89.  
  90. document.onmousedown = desabilitaBotaoDireito;
  91.  
  92.  
  93.  
  94.  
  95. document.onmouseup = desabilitaBotaoDireito;
  96.  
  97.  
  98.  
  99.  
  100. </script>
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109. <script language="JavaScript1.2">
  110.  
  111.  
  112.  
  113.  
  114. function disableselect(e){
  115.  
  116.  
  117.  
  118.  
  119. return false
  120.  
  121.  
  122.  
  123.  
  124. }
  125.  
  126.  
  127.  
  128.  
  129. function reEnable(){
  130.  
  131.  
  132.  
  133.  
  134. return true
  135.  
  136.  
  137.  
  138.  
  139. }
  140.  
  141.  
  142.  
  143.  
  144. //if IE4+
  145.  
  146.  
  147.  
  148.  
  149. document.onselectstart=new Function ("return false")
  150.  
  151.  
  152.  
  153.  
  154. //if NS6
  155.  
  156.  
  157.  
  158.  
  159. if (window.sidebar){
  160.  
  161.  
  162.  
  163.  
  164. document.onmousedown=disableselect
  165.  
  166.  
  167.  
  168.  
  169. document.onclick=reEnable
  170.  
  171.  
  172.  
  173.  
  174. }
  175.  
  176.  
  177.  
  178.  
  179. </script>
  180.  
  181. <script language="JavaScript1.2">
  182.  
  183. function disableselect(e){
  184.  
  185. return false
  186.  
  187. }
  188.  
  189. function reEnable(){
  190.  
  191. return true
  192.  
  193. }
  194.  
  195. //if IE4+
  196.  
  197. document.onselectstart=new Function ("return false")
  198.  
  199. //if NS6
  200.  
  201. if (window.sidebar){
  202.  
  203. document.onmousedown=disableselect
  204.  
  205. document.onclick=reEnable
  206.  
  207. }
  208.  
  209. </script><script type="text/javascript">
  210.  
  211. //desabilita menu de opcoes ao clicar no botao direito
  212.  
  213. function desabilitaMenu(e)
  214.  
  215. {
  216.  
  217. if (window.Event)
  218.  
  219. {
  220.  
  221. if (e.which == 2 || e.which == 3)
  222.  
  223. return false;
  224.  
  225. }
  226.  
  227. else
  228.  
  229. {
  230.  
  231. event.cancelBubble = true
  232.  
  233. event.returnValue = false;
  234.  
  235. return false;
  236.  
  237. }
  238.  
  239. }
  240.  
  241.  
  242.  
  243. //desabilita botao direito
  244.  
  245. function desabilitaBotaoDireito(e)
  246.  
  247. {
  248.  
  249. if (window.Event)
  250.  
  251. {
  252.  
  253. if (e.which == 2 || e.which == 3)
  254.  
  255. return false;
  256.  
  257. }
  258.  
  259. else
  260.  
  261. if (event.button == 2 || event.button == 3)
  262.  
  263. {
  264.  
  265. event.cancelBubble = true
  266.  
  267. event.returnValue = false;
  268.  
  269. return false;
  270.  
  271. }
  272.  
  273. }
  274.  
  275.  
  276.  
  277. //desabilita botao direito do mouse
  278.  
  279. if ( window.Event )
  280.  
  281. document.captureEvents(Event.MOUSEUP);
  282.  
  283. if ( document.layers )
  284.  
  285. document.captureEvents(Event.MOUSEDOWN);
  286.  
  287.  
  288.  
  289. document.oncontextmenu = desabilitaMenu;
  290.  
  291. document.onmousedown = desabilitaBotaoDireito;
  292.  
  293. document.onmouseup = desabilitaBotaoDireito;
  294.  
  295. </script>
  296.  
  297. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  298.  
  299. <head>
  300. <meta name="color:background" content="#fff"/>
  301. <meta name="color:entries" content="#ffffff"/>
  302. <meta name="color:text" content="#000000"/>
  303. <meta name="color:title" content="#000000"/>
  304. <meta name="color:link" content="#000000"/>
  305. <meta name="color:hover" content="#5a5a5a"/>
  306. <meta name="color:sidebar" content="#ffffff" />
  307. <meta name="color:menu" content="#ffffff" />
  308. <meta name="color:menu text" content="#000000" />
  309. <meta name="color:menu hover" content="#5a5a5a" />
  310. <meta name="color:menu text hover" content="#000000" />
  311.  
  312. <meta name="font:text" content="verdana"/>
  313. <meta name="font:menu" content="tahoma"/>
  314.  
  315. <meta name="image:Background" content=""/>
  316. <meta name="image:sidebar" content="http://28.media.tumblr.com/tumblr_m1ai84xD9N1rpw6aho1_500.jpg"/>
  317.  
  318.  
  319. <meta name="text:frase" content="STRONG" />
  320. <meta name="text:Link1" content="/" />
  321. <meta name="text:Link1 Title" content="link 1" />
  322. <meta name="text:Link2" content="/" />
  323. <meta name="text:Link2 Title" content="link 2" />
  324. <meta name="text:Link3" content="/" />
  325. <meta name="text:Link3 Title" content="link 3" />
  326. <meta name="text:Link4" content="/" />
  327. <meta name="text:Link4 Title" content="link 4" />
  328. <meta name="text:Link5" content="/" />
  329. <meta name="text:Link5 Title" content="link 5" />
  330. <meta name="text:Link6" content="/" />
  331. <meta name="text:Link6 Title" content="link 6" />
  332. <meta name="text:Link7" content="/" />
  333. <meta name="text:Link7 Title" content="link 7" />
  334.  
  335. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  336. <title>{Title}{block:SearchPage}, Search results for: {SearchQuery}{/block:SearchPage}{block:PostSummary}, {PostSummary}{/block:PostSummary}</title>
  337. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  338. <link rel="shortcut icon" href="{Favicon}" />
  339. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  340.  
  341.  
  342.  
  343. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  344. <script type="text/javascript" src="http://static.tumblr.com/enpbtf0/a8olor0ey/animatedcollapse.js"></script>
  345.  
  346.  
  347. <script type="text/javascript">
  348.  
  349. animatedcollapse.addDiv('jason', 'fade=1,height=80px')
  350. animatedcollapse.addDiv('kelly', 'fade=1,height=100px')
  351. animatedcollapse.addDiv('michael', 'fade=1,height=120px')
  352.  
  353. animatedcollapse.addDiv('cat', 'fade=0,speed=400,group=pets')
  354. animatedcollapse.addDiv('dog', 'fade=0,speed=400,group=pets,persist=1,hide=1')
  355. animatedcollapse.addDiv('rabbit', 'fade=0,speed=400,group=pets,hide=1')
  356.  
  357. animatedcollapse.ontoggle=function($, divobj, state){ //fires each time a DIV is expanded/contracted
  358. //$: Access to jQuery
  359. //divobj: DOM reference to DIV being expanded/ collapsed. Use "divobj.id" to get its ID
  360. //state: "block" or "none", depending on state
  361. }
  362.  
  363. animatedcollapse.init()
  364.  
  365. </script>
  366.  
  367.  
  368. <script type="text/javascript" src="http://proto.jp/js/tumblrAutoPager.js"></script>
  369.  
  370.  
  371. <style>
  372.  
  373. /* coisas óbvias e fixas*/
  374.  
  375. body {background-color: {color:background}; font-family: {font:text}; font-size: 11px; font-weight: none; color: {color:text}; background-image: url('{image:background}'); background-attachment: fixed;}
  376.  
  377. iframe#tumblr_controls{
  378. top: 1px !important;
  379. margin: 0 0 0 0;
  380. right: 6px !important;
  381. position: fixed !important;}
  382. b,strong {color: #000;}
  383. p{margin-top:5px; margin-bottom:5px}
  384. i, em {color:#000;}
  385. small{font-size:10px}
  386.  
  387. a:link, a:active, a:visited {color: {color:link}; text-decoration: none; -webkit-transition-duration: .40s;}
  388. a:hover {color: {color:hover};}
  389.  
  390. ::-webkit-scrollbar{width:3px;height:3px;}
  391. ::-webkit-scrollbar-button:start:decrement
  392. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:#fff;}
  393. ::-webkit-scrollbar-track-piece{background-color:#fff;}
  394. ::-webkit-scrollbar-thumb:vertical{height:10px; background-color:#000;}
  395. ::-webkit-scrollbar-thumb:horizontal{width:5px; background-color:#000;}
  396.  
  397. blockquote {border-left:2px solid #737373; padding-left:5px; margin:0px 2px 0px 10px}
  398.  
  399. h1 {color: {color:title}; font:17px {font:title}; line-height:25px; font-weight:normal; margin:0px; padding-top:10px; margin-bottom:-0px; text-align:center; letter-spacing: 0px; text-transform:uppercase;}
  400.  
  401.  
  402. #entries{margin-left:179px; width:520px; margin-top:33px;}
  403.  
  404. #entries img{nax-width:500px;}
  405.  
  406. .posts {overflow:hidden; background-color: {color:entries}; padding:7px; margin-bottom:-12px;}
  407.  
  408. #info{font-family:verdana; font-size:9px; text-transform:lowercase; padding:3px; margin-left: 0px; background-color: {color:entries};}
  409.  
  410. #info a{font-family:verdana; font-size:9px; text-transform:lowercase; text-align:center;}
  411.  
  412. #tags{font-family:georgia; font-size:10px; text-transform:lowercase; text-align:center; background-color:#fafafa; margin-top:-5px;
  413. }
  414.  
  415. #tags a{font-family:verdana; font-size:9px; text-transform:lowercase; text-align:right;}
  416.  
  417. #tags a:hover{font-family:verdana; font-size:9px; text-transform:lowercase; text-align:right;color:{color:hover};}
  418.  
  419. #tags:hover{font-family:georgia; font-size:10px; text-transform:lowercase; text-align:center; color:#000;}
  420.  
  421.  
  422. .qquote{font-family: georgia; font-size: 15px; letter-spacing: 0px; line-height: 100%; text-align:center; padding-top:10px;}
  423. .qsource{margin: 5px 15px 0 0; text-align: center; font:11px verdana;}
  424.  
  425. .chat {line-height: 12px; list-style: none }
  426. .chat ul {line-height: 15px; list-style: none; padding: 0px; line-height:20px;}
  427. .person1 {background-color:{color:background}; color: {color:text}; }
  428. .person1 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  429. .person2 {color: {color:text} }
  430. .person2 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  431.  
  432. #asker {font-size: 11px; font-family: {font:text}; text-align: justify;}
  433. .answer {padding: 2px}
  434. .answer img {max-width: 470px;}
  435.  
  436.  
  437. .notes-bottom ol, .notes-bottom ul {margin: 0; padding: 0; list-style: none;}
  438. .notes-bottom li {background: #fff; border-bottom: 1px solid f0f0f0; margin: 0; padding: 5px 0 20px 0; font-size: 10px;width: 510px;}
  439.  
  440. .notes-bottom li:hover {border-bottom: 1px solid f0f0f0; background: #f2ede1; bottom:1px;
  441. font-size: 10px; position: relative;width: 510px;}
  442. .notes-bottom li img.avatar {margin: 0 5px 0 0;float: left; width: auto;padding: 2px; background: #D1D1D1;}
  443.  
  444. #notes {width: 500px; padding: 5px; margin: 0px; font-size: 9px; text-align: left}
  445. ol.notes {list-style: none; margin-left:123px; padding: 0px}
  446. ol.notes li {margin: 0px; padding: 2px;}
  447. #notes img{border:0px}
  448.  
  449. #links {text-align: center; position: fixed; margin-top: 0px; margin-left:0px;}
  450. #links a {display: block; letter-spacing: 0px; font-family: verdana; font-size: 9px; text-align: center; margin-bottom: 1px; width: 85px; text-transform: lowercase; background-color: {color:menu}; color: {color:menu text}; text-decoration: none; padding: 8px 5px; }
  451. #links a:hover {-webkit-transition: all 0.9s ease-out; -moz-transition: all 0.9s ease-out; font-weight: bold; letter-spacing: 1px; background: {color:menu hover}; color: {color:menu text hover};}
  452.  
  453. .strong {margin-top:1px; width:294; background-color: {color:sidebar}; padding:2px; font:9px verdana; overflow:hidden; height:15px; -webkit-transition: all 1.9s ease-out; -moz-transition: all 1.9s ease-out;}
  454. .strong:hover {height:132px;}
  455.  
  456. div#cred1{background-color: {color:sidebar}; color: #696969; margin-top: -22px; position: fixed; padding: 4px; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; margin-left: 280px; font-family: verdana; z-index: 3; font-size:9px;-webkit-transition: all 0.1s ease-in; line-height: 10px;}
  457. div#cred1:hover {background-color: transparent; height: 10px; color: transparent;}
  458.  
  459. .cred2 {text-align: justify; font-size: 9px; position: fixed; color: transparent; width: 294px; margin-top: -4px; margin-left: 0px; padding:3px; -webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out; line-height: 12px; }
  460. .cred2 b {color: transpatent;}
  461. .cred2 a {color: transpatent;}
  462. .cred2:hover {color: {color:text}; font-size: 9px; text-align: left; background-color: {color:sidebar}; text-align: justify; margin-left: -286px;}
  463.  
  464. </style></head>
  465.  
  466. <div style="position:fixed; top:32px; margin-left:700px; width:299px;">
  467. <div class="strong">
  468. <center>{text:frase}</center>
  469. <br>
  470. <div style="padding:2px;">" {Description} "</div>
  471. </div>
  472. <body>
  473. <div style="margin-top:1px; width:auto; float:left; position:fixed;">
  474. <div id="links">
  475. <a href="{text:Link1}">{text:Link1 Title}</a>
  476. <a href="{text:Link2}">{text:Link2 Title}</a>
  477. <a href="{text:Link3}">{text:Link3 Title}</a>
  478. <a href="{text:Link4}">{text:Link4 Title}</a>
  479. <a href="{text:Link5}">{text:Link5 Title}</a>
  480. <a href="{text:Link6}">{text:Link6 Title}</a>
  481. </div>
  482. </div>
  483.  
  484. <div style="margin-top:1px; width:auto; background-color: #fff; padding:2px; float:right; padding-bottom:0px;">
  485. <img src="{image:sidebar}" width="200px" height="169px">
  486. </div>
  487.  
  488. <div style="margin-top:175px; width:auto; background-color: {color:sidebar}; padding:2px; text-align:center;">
  489. <div style="font-style:italic; font:12px georgia; padding:4px 2px;">
  490. {block:Pagination}{block:PreviousPage}<i>« <a href="{PreviousPage}">«</a></i>{/block:PreviousPage} {block:NextPage}<i><a href="{NextPage}">»</a></i>{/block:NextPage}{/block:Pagination}
  491. </div>
  492. </div>
  493. <div style="margin-top:1px; width:auto; background-color: trans; padding:2px;">
  494. <div id="cred1"><div class="cred2"><center>Theme by <b><a href="http://suicideofminds.tumblr.com/">suicideofminds.</a></center></div><center></b><b>C</b> </center></div>
  495.  
  496. </div>
  497.  
  498. </div>
  499.  
  500.  
  501.  
  502.  
  503. <div id="entries">
  504. {block:Posts}
  505.  
  506. <div class="posts">
  507.  
  508. {block:Title}<h1>{Title}&nbsp;</h1>{/block:Title}
  509. {block:Text}{Body}{/block:Text}
  510.  
  511. {block:Quote}
  512. <div class="qquote">"{Quote}"</div>
  513. {block:Source}<div class="qsource">— {Source}</div>{/block:Source}
  514. {/block:Quote}
  515.  
  516.  
  517. {block:Link}
  518. <a href="{URL}" class="link" {Target}><h1>{Name}&nbsp;</h1></a>
  519. {block:Description}
  520. <P>{Description}</p>
  521. {/block:Description}
  522. {/block:Link}
  523.  
  524. {block:Photo}
  525. <center>{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}">{LinkCloseTag}</center>
  526. {block:Caption}
  527. {Caption}
  528. {/block:Caption}
  529. {/block:Photo}
  530.  
  531. {block:Photoset}
  532. <div style="width:480px;">
  533. <center>{Photoset-500}</div></center>
  534. {block:Caption}
  535. {Caption}
  536. {/block:Caption}
  537. {/block:Photoset}
  538.  
  539. {block:Chat}
  540. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  541. <div class="chat"><ul>{block:Lines}
  542. <li class="person{UserNumber}">{block:Label}
  543. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  544. {/block:Chat}
  545.  
  546. {block:Video}
  547. {Video-500}
  548. {block:Caption}
  549. {Caption}
  550. {/block:Caption}
  551. {/block:Video}
  552.  
  553. {block:Audio}
  554. <span class="audio">
  555. <center>{AudioPlayerBlack}</center>
  556. </span>
  557. {block:Caption}
  558. {Caption}
  559. {/block:Caption}
  560. {/block:Audio}<br>
  561.  
  562. {block:Answer}
  563. <div id="asker"><b>{Asker} asked:</b> {Question}</div>
  564. <div class="answer">{Answer}</div>
  565. {/block:Answer}
  566.  
  567. <div id="info">
  568. {block:Tags}
  569. <a href="{TagURL}">#{Tag}</a>
  570. {/block:Tags}
  571. <br>
  572.  
  573. <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} · <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {block:IndexPage} · <a href="{ReblogUrl}" target="_blank">reblog</a>{/block:IndexPage}
  574. {block:RebloggedFrom}<br>originally <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom} · via <a href="{ReblogParentURL}">{ReblogParentName}</a>
  575. {/block:RebloggedFrom}
  576.  
  577.  
  578. </div></div><br>
  579.  
  580.  
  581. {/block:Posts}
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588. {block:PostNotes}{PostNotes}{/block:PostNotes}
  589.  
  590.  
  591. </div></div>
  592. </div>
  593.  
  594.  
  595.  
  596.  
  597.  
  598.  
  599.  
  600. </body>
  601. </html>
Advertisement
Add Comment
Please, Sign In to add comment