Advertisement
Guest User

Theme 02 by REMONDPSDS

a guest
Jan 21st, 2016
918
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.61 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"> <html xmlns="http://www.w3.org/1999/xhtml"> <head profile="http://gmpg.org/xfn/11">
  2.  
  3.  
  4.  
  5.  
  6. <!--......................................................................-->
  7.  
  8.  
  9. <!--Theme by remondpsds/lexixgrey. Do not remove the credits or copy this theme. I hope you like. Doubts? Ask in remondpsds.tumblr.com/fask-->
  10.  
  11.  
  12. <!--......................................................................-->
  13.  
  14.  
  15. <script type="text/javascript">
  16. var fadeimages=new Array()
  17.  
  18. fadeimages[0]=["http://i.imgur.com/VRpaExK.png", ""]
  19. fadeimages[1]=["http://i.imgur.com/ZgKuJwY.png", ""]
  20. fadeimages[2]=["http://i.imgur.com/w01VdWH.png", ""]
  21. fadeimages[3]=["http://i.imgur.com/yJaK5Tv.png", ""]
  22.  
  23.  
  24. var fadeimages2=new Array() //2nd array set example. Remove or add more sets as needed.
  25. var fadebgcolor="white"
  26. ////NO need to edit beyond here/////////////
  27. var fadearray=new Array() //array to cache fadeshow instances
  28. var fadeclear=new Array() //array to cache corresponding clearinterval pointers
  29. var dom=(document.getElementById) //modern dom browsers
  30. var iebrowser=document.all
  31. function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
  32. this.pausecheck=pause
  33. this.mouseovercheck=0
  34. this.delay=delay
  35. this.degree=10 //initial opacity degree (10%)
  36. this.curimageindex=0
  37. this.nextimageindex=1
  38. fadearray[fadearray.length]=this
  39. this.slideshowid=fadearray.length-1
  40. this.canvasbase="canvas"+this.slideshowid
  41. this.curcanvas=this.canvasbase+"_0"
  42. if (typeof displayorder!="undefined")
  43. theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
  44. this.theimages=theimages
  45. this.imageborder=parseInt(borderwidth)
  46. this.postimages=new Array() //preload images
  47. for (p=0;p<theimages.length;p++){
  48. this.postimages[p]=new Image()
  49. this.postimages[p].src=theimages[p][0]
  50. }
  51. var fadewidth=fadewidth+this.imageborder*2
  52. var fadeheight=fadeheight+this.imageborder*2
  53. if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox)
  54. document.write('<div id="master'+this.slideshowid+'" style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"><div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
  55. else
  56. document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>')
  57. if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox
  58. this.startit()
  59. else{
  60. this.curimageindex++
  61. setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay)
  62. }
  63. }
  64. function fadepic(obj){
  65. if (obj.degree<100){
  66. obj.degree+=10
  67. if (obj.tempobj.filters&&obj.tempobj.filters[0]){
  68. if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+
  69. obj.tempobj.filters[0].opacity=obj.degree
  70. else //else if IE5.5-
  71. obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
  72. }
  73. else if (obj.tempobj.style.MozOpacity)
  74. obj.tempobj.style.MozOpacity=obj.degree/101
  75. else if (obj.tempobj.style.KhtmlOpacity)
  76. obj.tempobj.style.KhtmlOpacity=obj.degree/100
  77. else if (obj.tempobj.style.opacity&&!obj.tempobj.filters)
  78. obj.tempobj.style.opacity=obj.degree/101
  79. }
  80. else{
  81. clearInterval(fadeclear[obj.slideshowid])
  82. obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1"
  83. obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas)
  84. obj.populateslide(obj.tempobj, obj.nextimageindex)
  85. obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0
  86. setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay)
  87. }
  88.  
  89. }
  90.  
  91. fadeshow.prototype.populateslide=function(picobj, picindex){
  92. var slideHTML=""
  93. if (this.theimages[picindex][1]!="") //if associated link exists for image
  94. slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'">'
  95. slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">'
  96. if (this.theimages[picindex][1]!="") //if associated link exists for image
  97. slideHTML+='</a>'
  98. picobj.innerHTML=slideHTML
  99. }
  100. fadeshow.prototype.rotateimage=function(){
  101. if (this.pausecheck==1) //if pause onMouseover enabled, cache object
  102. var cacheobj=this
  103. if (this.mouseovercheck==1)
  104. setTimeout(function(){cacheobj.rotateimage()}, 100)
  105. else if (iebrowser&&dom||dom){
  106. this.resetit()
  107. var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
  108. crossobj.style.zIndex++
  109. fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
  110. this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0"
  111. }
  112. else{
  113. var ns4imgobj=document.images['defaultslide'+this.slideshowid]
  114. ns4imgobj.src=this.postimages[this.curimageindex].src
  115. }
  116. this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0
  117. }
  118. fadeshow.prototype.resetit=function(){
  119. this.degree=10
  120. var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
  121. if (crossobj.filters&&crossobj.filters[0]){
  122. if (typeof crossobj.filters[0].opacity=="number") //if IE6+
  123. crossobj.filters(0).opacity=this.degree
  124. else //else if IE5.5-
  125. crossobj.style.filter="alpha(opacity="+this.degree+")"
  126. }
  127. else if (crossobj.style.MozOpacity)
  128. crossobj.style.MozOpacity=this.degree/101
  129. else if (crossobj.style.KhtmlOpacity)
  130. crossobj.style.KhtmlOpacity=this.degree/100
  131. else if (crossobj.style.opacity&&!crossobj.filters)
  132. crossobj.style.opacity=this.degree/101
  133. }
  134.  
  135. fadeshow.prototype.startit=function(){
  136. var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
  137. this.populateslide(crossobj, this.curimageindex)
  138. if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
  139.  
  140. var cacheobj=this
  141. var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid)
  142. crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
  143. crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
  144. }
  145. this.rotateimage()
  146. }
  147. </script>
  148.  
  149. <link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
  150.  
  151.  
  152.  
  153. <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
  154.  
  155.  
  156. <link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
  157.  
  158.  
  159. <title>{Title}</title>
  160. <link rel="shortcut icon" href="http://38.media.tumblr.com/tumblr_lnvurpGbQn1qepbs7.png" />
  161. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  162.  
  163. <meta name="image:sidebar" content="sidebar"/>
  164.  
  165. <meta name="text:Link1" content="/" />
  166. <meta name="text:Link1 Title" content="link1" />
  167. <meta name="text:Link2" content="/" />
  168. <meta name="text:Link2 Title" content="link2" />
  169. <meta name="text:Link3" content="/" />
  170. <meta name="text:Link3 Title" content="link3" />
  171. <meta name="text:Link4" content="/" />
  172. <meta name="text:Link4 Title" content="link4" />
  173. <meta name="text:Link5" content="/" />
  174. <meta name="text:Link5 Title" content="link5" />
  175.  
  176. <meta name="text:frasep" content="/" />
  177. <meta name="text:frasep" content="frase" />
  178.  
  179. <meta name="color:background" content="#ffffff" />
  180. <meta name="color:postsbg" content="#ffffff" />
  181. <meta name="color:text" content="#707070" />
  182. <meta name="color:sidep" content="#deb3b3" />
  183. <meta name="color:link" content="#787878" />
  184. <meta name="color:link hover" content="#634d4d" />
  185. <meta name="if:400px" content="0" />
  186.  
  187. <style>
  188.  
  189. /********** PRINCIPAL **********/
  190.  
  191. body {
  192. background-color:{color:background};
  193. font-family:arial,sans-serif;
  194. font-size: 11px;
  195. color:{color:text};
  196. word-spacing:1px;
  197. }
  198.  
  199. small {font-size:11px;}
  200. ul {list-style-type: circle;}
  201.  
  202. b, strong, bold: {color: #000;}
  203. u {color: #797979;cursor: help;}
  204. i, em {color: #797979;}
  205. s {color: #000;}
  206.  
  207. a, a:link, a:active, a:visited {text-decoration:none;
  208. color: {color:link};
  209. transition:all .3s ease;
  210. }
  211. a:hover {text-decoration:none;
  212. color:{color:link hover};
  213. transition:all .3s ease;}
  214.  
  215.  
  216. /* PRE STYLE */
  217. pre { background: #e6e6e6;line-height: 20px; width: auto; font-size: 11px; font-family: calibri; color: #9a9a9a; font-weight:normal; text-align: left; overflow: scroll; display:block; word-wrap: break-word;margin-right: 1px; margin-bottom: 7px; padding-left: 5px; line-height: 20px; }
  218.  
  219.  
  220. /* TOOLTIP */
  221. #s-m-t-tooltip {
  222. display: block;
  223. font-size: 9px;
  224. font-family: consolas;
  225. letter-spacing: 0px;
  226. color: #fff;
  227. background-color:{color:sidep};
  228. text-align: center;
  229. margin-left: 18px;
  230. padding: 2px 5px 2px 5px;
  231. min-width: 40px;
  232. max-width: 200px;
  233. z-index: 99999;}
  234.  
  235.  
  236. /* TITLES */
  237.  
  238. h1 {font-family:calibri;
  239. font-size:14px;
  240. color:#5a5a5a;
  241. text-transform:none;
  242. text-align:left;
  243. line-height:100%;
  244. padding:5px;
  245. }
  246.  
  247.  
  248.  
  249. /* BLOCKQUOTE */
  250. blockquote{background:#fff;
  251. border-left: 4px solid #ececec; padding:10px; margin-left:10px;
  252. {block:ifnot400px}
  253. width:500px;
  254. {/block:ifnot400px}}
  255. }
  256.  
  257.  
  258. /* POST NOTES */
  259. #post_notes {list-style-type: circle; padding:5px; margin-left:-5px; font-family:calibri;
  260. {block:ifnot400px}
  261. width:500px;
  262. {/block:ifnot400px}}
  263.  
  264. /********** SCROLLBAR **********/
  265. ::-webkit-scrollbar-thumb {background-color:{color:sidep};
  266. border: 2px solid #fff;
  267. height:auto;}
  268. ::-webkit-scrollbar {height:5px;
  269. width:7px;
  270. background-color: #444;
  271. border:4px solid #fff;}
  272.  
  273. /*** content ***/
  274. #content {background:;
  275. width: 930px; margin-left:45px;
  276. position:absolute;}
  277.  
  278. /*** SIDEBAR ***/
  279. .box1 {background-color:{color:postsbg};
  280. margin-bottom: 10px;
  281. padding: 5px;
  282. text-align:left;
  283. width: 300px;
  284. margin-top:95px;
  285. margin-left:278px;
  286. position:absolute;
  287. line-height: 18px;
  288. }
  289.  
  290.  
  291. /*** POSTS ***/
  292. #box2 {
  293. text-align: justify;
  294. padding: 5px;
  295. {block:ifnot400px}
  296. width:500px;
  297. {/block:ifnot400px}
  298. margin-top:24px;
  299. margin-left:690px;
  300. font-family:arial,sans-serif;
  301. font-size: 11px;
  302. line-height: 18px;}
  303.  
  304. .espa {margin-bottom:100px;}
  305.  
  306.  
  307. /* POSTS TEXTS */
  308. .t{font-size: 15px; color: #000; font-family: arial; background: #fff; padding: 2px; text-transform:uppercase;font-weight: bold;}
  309. .posts {margin-left: 378px;
  310. max-width:500px;
  311. font-family:arial,sans-serif;
  312. font-size: 12px;}
  313. .love{font-family:calibri; font-size:11px; text-align:left; padding:1px; height:10px; margin-top:15px; font-family:arial,sans-serif;
  314. font-size: 11px;}
  315.  
  316. /* DESCRIPTION */
  317. .desc{text-align:center; margin-top:59px; margin-left:-8px; line-height: 18px;
  318. position:absolute;
  319. }
  320.  
  321. .posmenu{margin-left:500px; margin-top:16px;}
  322.  
  323. /* MENU */
  324. .menu{text-shadow: 1px 1px 0px rgba(255, 240, 255, 1);
  325. margin-top:9px; margin-left:-3px;
  326. font-family: 'Montserrat', sans-serif; font-size:14px;
  327. text-transform:uppercase;
  328. text-align:center;
  329. letter-spacing:1px;
  330. word-spacing:20px;transition:all .3s ease; line-height: 18px;
  331. transition:all .3s ease;
  332. }
  333.  
  334. .menu:hover{margin-top:9px;
  335. text-align:center;
  336. word-spacing:20px;
  337. letter-spacing:1px;
  338. text-decoration:none;
  339. transition:all .3s ease;
  340. }
  341. .menu a{color: #818181;text-decoration:none; }
  342. .menu a:hover{color: #4C4C4C; text-decoration:none;
  343. }
  344.  
  345.  
  346. /* IMAGE OF SIDEBAR */
  347. .sidebarimg{width:240px; height:129px; position:center;
  348. text-align:left; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; transition: all 0.4s ease-out;}
  349.  
  350. .sidebarimg:hover{width:240px; height:129px; position:center;
  351. text-align:left; opacity:0.4; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; transition: all 0.4s ease-out;}
  352.  
  353.  
  354.  
  355. .barra{position:absolute; background-color:#eee;
  356. font-size: 16px; font-weight: bold;
  357. {block:ifnotimgborder}
  358. border: 1px solid transparent;
  359. {/block:ifnotimgborder}
  360.  
  361. {block:ifimgborder}
  362. border: 1px solid #ececec;
  363. {/block:ifimgborder}
  364. padding:30px; margin-left:-10px; margin-top:-10px; }
  365.  
  366.  
  367. .barra2{position:absolute;
  368. font-size: 11px; font-weight: bold;
  369. {block:ifnotimgborder}
  370. border: 1px solid transparent;
  371. {/block:ifnotimgborder}
  372.  
  373. {block:ifimgborder}
  374. border: 1px solid #ececec;
  375. {/block:ifimgborder}
  376. padding:12px; margin-left:-13px; margin-top:-40px; }
  377.  
  378.  
  379. .tagsposts{border-bottom: 1px solid #eeeeee; padding:7px; font-size:11px;
  380. {block:ifnot400px}
  381. max-width:500px;
  382. {/block:ifnot400px}
  383. {block:if400px}
  384. max-width:400px;
  385. {/block:if400px}}
  386. .tagsposts a{color: #2f2f2f; text-size:11px;}
  387. .tagsposts a:hover{color: #9f9f9f; text-decoration:none;}
  388.  
  389. /*-CHAT-*/
  390.  
  391. .chat {
  392. font-size:11px; line-height: 25px;}
  393.  
  394. /*-ASK-*/
  395. .pergunta{border: 1px solid #ececec; padding:10px; background-color:#f0f0f0;
  396. {block:ifnot400px}
  397. max-width:500px;
  398. {/block:ifnot400px}
  399. {block:if400px}
  400. max-width:400px;
  401. {/block:if400px}
  402. }
  403.  
  404. /*-PAGINAÇÃO-*/
  405. .pagin{margin-left:33px; margin-top:190px; position:absolute;}
  406.  
  407. #post img{
  408. {block:ifnot400px}
  409. max-width:500px;
  410. {/block:ifnot400px}
  411. {block:if400px}
  412. max-width:400px;
  413. {/block:if400px}
  414. }
  415.  
  416. .postinfo {
  417.  
  418. {block:ifnot400px}
  419. width:500px;
  420. {/block:ifnot400px}
  421. {block:if400px}
  422. width:400px;
  423. {/block:if400px}
  424. font-size:11px;
  425. }
  426.  
  427. .cora2{margin-left:436px; margin-top:-10px; display: inline-block; position:absolute; text-size:11px;
  428.  
  429. {block:ifnot400px}
  430. margin-left:436px;
  431. {/block:ifnot400px}
  432. {block:if400px}
  433. margin-left:380px;
  434. {/block:if400px}}
  435.  
  436.  
  437. #frasep{color:#a8a8a8; font-family:open sans; position:absolute; font-size: 14px; text-transform:uppercase;
  438. letter-spacing:3px; margin-left:-20px; margin-top:-1px;
  439. }
  440.  
  441.  
  442.  
  443.  
  444. #headertodo{margin-top:100px; margin-left:275px; }
  445. .header{width:620px; height:280px;}
  446. .foto{width:285px; height:280px;margin-top:-280px; margin-left:635px;}
  447.  
  448.  
  449.  
  450. .nb{background-color:#F2F2F2; text-transform:uppercase; font-size:10px; padding:5px; border-radius:2px; margin-top:2px;
  451. font-family: 'Montserrat', sans-serif; text-shadow: 1px 1px 0px rgba(255, 240, 255, 1); -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; transition: all 0.6s ease-out;}
  452.  
  453. .nb:hover{background-color:#F2F2F2; text-transform:uppercase; font-size:10px; padding:5px; border-radius:2px; margin-top:2px;
  454. font-family: 'Montserrat', sans-serif; text-shadow: 1px 1px 0px rgba(255, 240, 255, 1); padding-left:20px;
  455. -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; transition: all 0.6s ease-out; }
  456.  
  457. ::-moz-selection
  458. {color: #fff;
  459. background: #6195ED; text-shadow: 1px 1px 0px rgba(39, 46, 58);}
  460. ::selection
  461. {color: #fff;
  462. background: #3882FF; text-shadow: 1px 1px 0px rgba(39, 46, 58);}
  463.  
  464.  
  465. .tags{padding:8px; opacity:0.0;
  466. z-index: 10;
  467.  
  468. width: 100%;
  469. -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; transition: all 0.6s ease-out; }
  470.  
  471. .tags:hover{padding:8px; opacity:0.9;
  472. -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; transition: all 0.6s ease-out; }
  473.  
  474. #moderador{padding:8px;
  475. -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; transition: all 0.6s ease-out; border}
  476.  
  477. #moderador:hover{padding:8px; opacity:0.4;
  478. -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; transition: all 0.6s ease-out;}
  479.  
  480. </style>
  481. <script type="text/javascript" src="http://static.tumblr.com/5u1fog0/XsWngduiz/lsmoothscroll.js"></script>
  482. </head>
  483.  
  484. <body ondragstart='return false'>
  485. <div style="border-bottom:1px solid;border-color:#ebebeb; transition:all .3s ease;
  486. background:#eee; ; top: 0px; left: 0px; width: 100%; height: 50px; z-index: 100; position: fixed;">
  487. <div class="posmenu">
  488. <div id="frasep">{text:frasep}</div>
  489. <center>
  490. <a href="{text:Link1}" class="menu">{text:Link1 Title} </a>
  491. <a href="{text:Link2}" class="menu">{text:Link2 Title} </a>
  492. <a href="{text:Link3}" class="menu">{text:Link3 Title} </a>
  493. <a href="{text:Link4}" class="menu">{text:Link4 Title} </a>
  494. <a href="{text:Link5}" class="menu">{text:Link5 Title}</a></center>
  495. </div></div>
  496.  
  497. <div id="content">
  498. <div id="headertodo">
  499. <div class="header">
  500. <center><script type="text/javascript">
  501. //new fadeshow(images_array_name, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalrandomorder)
  502. new fadeshow(fadeimages, 620, 280, 0, 2000, 0)
  503. </script></center>
  504.  
  505. <div class="foto">
  506. <img src="http://i.imgur.com/2wtmZyK.png">
  507. </div>
  508. </div>
  509. </div>
  510.  
  511. <div class="box1">
  512. <div class="barra">
  513. 01
  514. </div>
  515. <div style="margin-top: -10px; position:absolute; margin-left: 68px; font-size:23px; padding:5px; background-color:#f5f5f5;
  516. border:1px solid;border-color:#ebebeb; width:226px; height:66px; text-align:center;">
  517.  
  518. <div style="margin-top: 17px; text-transform:uppercase; position:absolute; margin-left: 49px; font-size:20px; padding:5px;text-align:center;font-family: 'Montserrat', sans-serif;">
  519. Welcome</div></div><br>
  520. <div class="desc">
  521. {description}</div>
  522. <br><br><br><br><br><br><br><br><br><br><br><br><br>
  523.  
  524. <div class="barra">
  525. 02
  526. </div>
  527. <div style="margin-top: -10px; position:absolute; margin-left: 68px; font-size:23px; padding:5px; background-color:#f5f5f5;
  528. border:1px solid;border-color:#ebebeb; width:226px; height:66px; text-align:center;">
  529.  
  530. <div style="margin-top: 17px; text-transform:uppercase; position:absolute; margin-left: 49px; font-size:20px; padding:5px;text-align:center;font-family: 'Montserrat', sans-serif;">
  531. Members</div></div><br><br><br><br>
  532.  
  533.  
  534. <div id="moderador"><img src="http://i.imgur.com/5DjAlae.png"></div>
  535.  
  536. <div style="font-size:14px; font-family: 'Montserrat', sans-serif; position: absolute; margin-top:-57px; margin-left:157px;">
  537. cams
  538. <div style="font-size:9px; letter-spacing:2px; margin-left:-8px;">
  539. <a href="http://lexixgrey.tumblr.com/">lexixgrey</a>
  540. </div>
  541. </div>
  542.  
  543.  
  544. <div style="border-bottom:1px solid;border-color:#ebebeb; transition:all .3s ease;width: 100%; position: absolute;"></div>
  545.  
  546.  
  547. <br><br><br><br><br>
  548.  
  549.  
  550. <div class="barra">
  551. 03
  552. </div>
  553. <div style="margin-top: -10px; position:absolute; margin-left: 68px; font-size:23px; padding:5px; background-color:#f5f5f5;
  554. border:1px solid;border-color:#ebebeb; width:226px; height:66px; text-align:center;">
  555.  
  556. <div style="margin-top: 17px; text-transform:uppercase; position:absolute; margin-left: 49px; font-size:20px; padding:5px;text-align:center;font-family: 'Montserrat', sans-serif;">
  557. links</div></div><br><br><br><br>
  558. <a href="/tagged/psds"><div class="nb">psds</div></a>
  559. <a href="/tagged/theme"><div class="nb">themes</div></a>
  560. <a href="/tagged/templates"><div class="nb">templates</div></a>
  561. <a href="/tagged/fonts"><div class="nb">fonts</div></a>
  562.  
  563. <br><br><br><br><br>
  564.  
  565.  
  566. <div class="barra">
  567. 04
  568. </div>
  569. <div style="margin-top: -10px; position:absolute; margin-left: 68px; font-size:23px; padding:5px; background-color:#f5f5f5;
  570. border:1px solid;border-color:#ebebeb; width:226px; height:66px; text-align:center;">
  571.  
  572. <div style="margin-top: 17px; text-transform:uppercase; position:absolute; margin-left: 49px; font-size:20px; padding:5px;text-align:center;font-family: 'Montserrat', sans-serif;">
  573. credits</div></div><br><br><br><br>
  574. <div class="nb">Online: <script language="JavaScript">var fhs = document.createElement('script');var fhs_id = "5200761";
  575. var ref = (''+document.referrer+'');var pn = window.location;var w_h = window.screen.width + " x " + window.screen.height;
  576. fhs.src = "http://freehostedscripts.net/ocounter.php?site="+fhs_id+"&e1=&e2=&r="+ref+"&wh="+w_h+"&a=1&pn="+pn+"";
  577. document.head.appendChild(fhs);document.write("<span id='o_"+fhs_id+"'></span>");
  578. </script>
  579. </div>
  580. <div class="nb">Visits: <script language="JavaScript">var fhsh = document.createElement('script');var fhs_id_h = "3080955";
  581. fhsh.src = "http://freehostedscripts.net/ocount.php?site="+fhs_id_h+"&name=&a=1";
  582. document.head.appendChild(fhsh);document.write("<span id='h_"+fhs_id_h+"'></span>");
  583. </script>
  584. </div>
  585. <div class="nb">Since: 01/11/2015</div>
  586. <div class="nb">Theme: <a href="http://remondpsds.tumblr.com/">remondpsds/slide by tthy</a></div>
  587. Theme made by Cams for the exclusive use of remondpsds. Please do not copy, has creativity to do yours. Plagiarism is a crime, so any unauthorized copy, whether total or partial plagiarism will be considered plagiarism will in accordance with the Federal Copyright Law nº 9610, from 19 February 1998. ©
  588.  
  589. <br><br><br><br><br><center>
  590.  
  591. {block:PreviousPage}<a href="{PreviousPage}">« </a>{/block:PreviousPage}Página <b>{CurrentPage}</b> de <b>{TotalPages}</b> {block:NextPage}<a href="{NextPage}"> »</a>{/block:NextPage}
  592.  
  593. </center><br><br>
  594. </div>
  595.  
  596.  
  597.  
  598. <div id="box2">
  599.  
  600. {block:Posts}
  601. {block:Text}
  602. {block:Title}<h1>{Title}</h1>{/block:Title}
  603. <div class="postinfo">{Body}</div>
  604. <div class="tagsposts">
  605. {block:NoteCount}<a href="{Permalink}">{NoteCount}</a> /{/block:NoteCount}
  606. <a href="{Permalink}" title="{TimeAgo}">{Month}, {DayOfMonth}</a>
  607. <div class="cora2">
  608. <div style="margin-left:-70px; margin-top:12px;">{LikeButton size="13"}</div>
  609. <div style="margin-left:-54px; margin-top:-17px;">{ReblogButton size="13"}</div></div></div>
  610. <div class="tags">
  611. {block:Tags}
  612. <a href="{TagURL}">#{Tag}</a>
  613. {/block:Tags}</div>
  614. {/block:Text}
  615. <div class="espa"></div>
  616.  
  617.  
  618.  
  619. <div style="margin-left:0px;">
  620. {block:Photo}
  621. {block:IndexPage} <a href="{Permalink}"> {/block:IndexPage}
  622. {block:PermalinkPage}
  623. {/block:PermalinkPage}
  624.  
  625.  
  626. {block:ifnot400px}<img src="{PhotoURL-500}">{/block:ifnot400px}
  627. {block:if400px}<img src="{PhotoURL-400}">{/block:if400px}
  628.  
  629. {block:IndexPage}</a>{/block:IndexPage}
  630. {block:PermalinkPage}{LinkCloseTag}{/block:PermalinkPage}
  631. <div class="postinfo">{block:Caption}{Caption}{/block:Caption}</div>
  632.  
  633. <div class="tagsposts">
  634. {block:NoteCount}<a href="{Permalink}">{NoteCount}</a> /{/block:NoteCount}
  635. <a href="{Permalink}" title="{TimeAgo}">{Month}, {DayOfMonth}</a>
  636. <div class="cora2">
  637. <div style="margin-left:-70px; margin-top:12px;">{LikeButton size="13"}</div>
  638. <div style="margin-left:-54px; margin-top:-17px;">{ReblogButton size="13"}</div></div></div>
  639. <div class="tags">
  640. {block:Tags}
  641. <a href="{TagURL}">#{Tag}</a>
  642. {/block:Tags}</div>
  643. <div class="espa"></div>
  644. {/block:Photo}
  645.  
  646. <div style="margin-left:0px;">
  647. {block:Photoset}
  648. {block:ifnot400px}{Photoset-500}{/block:ifnot400px}{block:if400px}{Photoset-400}{/block:if400px}
  649. <div class="postinfo">{block:Caption}{Caption}{/block:Caption}</div>
  650. <div class="tagsposts">
  651. {block:NoteCount}<a href="{Permalink}">{NoteCount}</a> /{/block:NoteCount}
  652. <a href="{Permalink}" title="{TimeAgo}">{Month}, {DayOfMonth}</a>
  653. <div class="cora2">
  654. <div style="margin-left:-75px; margin-top:12px;">{LikeButton size="13"}</div>
  655. <div style="margin-left:-59px; margin-top:-17px;">{ReblogButton size="13"}</div></div></div>
  656. <div class="tags">
  657. {block:Tags}
  658. <a href="{TagURL}">#{Tag}</a>
  659. {/block:Tags}</div>
  660. {/block:Photoset} <div class="espa"></div>
  661.  
  662. {block:Quote}
  663. <a href="{Permalink}"><div class="t">{Quote}</div></a>
  664. <div class="tagsposts">
  665. {block:NoteCount}<a href="{Permalink}">{NoteCount}</a> /{/block:NoteCount}
  666. <a href="{Permalink}" title="{TimeAgo}">{Month}, {DayOfMonth}</a>
  667. <div class="cora2">
  668. <div style="margin-left:-70px; margin-top:12px;">{LikeButton size="13"}</div>
  669. <div style="margin-left:-54px; margin-top:-17px;">{ReblogButton size="13"}</div></div></div>
  670. <div class="tags">
  671. {block:Tags}
  672. <a href="{TagURL}">#{Tag}</a>
  673. {/block:Tags}</div>
  674. {/block:Quote} <div class="espa"></div>
  675.  
  676. {block:Link}
  677. <a href="{URL}" target="_blank"> <div class="t">{Name}</div></a>
  678. {block:Description}{Description}{/block:Description}
  679. <div class="tagsposts">
  680. {block:NoteCount}<a href="{Permalink}">{NoteCount}</a> /{/block:NoteCount}
  681. <a href="{Permalink}" title="{TimeAgo}">{Month}, {DayOfMonth}</a>
  682. <div class="cora2">
  683. <div style="margin-left:-70px; margin-top:12px;">{LikeButton size="13"}</div>
  684. <div style="margin-left:-54px; margin-top:-17px;">{ReblogButton size="13"}</div></div></div>
  685. <div class="tags">
  686. {block:Tags}
  687. <a href="{TagURL}">#{Tag}</a>
  688. {/block:Tags}</div>
  689.  
  690. {/block:Link} <div class="espa"></div>
  691.  
  692.  
  693.  
  694.  
  695. {block:Chat}
  696. {block:Title}<h1>{Title}</h1>{/block:Title} <div class="chat">
  697. <a href="{Permalink}">{Title}</a>{/block:Title}
  698. {block:Lines}<div class="{Alt}">{block:Label}{Label}{/block:Label} {Line}</div>{/block:Lines}
  699. <div class="tagsposts">
  700. {block:NoteCount}<a href="{Permalink}">{NoteCount}</a> /{/block:NoteCount}
  701. <a href="{Permalink}" title="{TimeAgo}">{Month}, {DayOfMonth}</a>
  702. <div class="cora2">
  703. <div style="margin-left:-70px; margin-top:12px;">{LikeButton size="13"}</div>
  704. <div style="margin-left:-54px; margin-top:-17px;">{ReblogButton size="13"}</div></div></div>
  705. <div class="tags">
  706. {block:Tags}
  707. <a href="{TagURL}">#{Tag}</a>
  708. {/block:Tags}</div>
  709. {/block:Chat}</div> <div class="espa"></div>
  710.  
  711.  
  712.  
  713. {block:Audio}
  714. {AudioPlayerGrey}
  715. <div class="postinfo">{block:Caption}{Caption}{/block:Caption}</div>
  716. {/block:Audio} <div class="espa"></div>
  717.  
  718. {block:Video}{block:ifnot400px}{Video-500}{/block:ifnot400px}{block:if400px}{Video-400}{/block:if400px}
  719. <div class="postinfo">{block:Caption}<a href="{Permalink}">{Caption}</a>{/block:Caption}</div>
  720. <div class="tagsposts">
  721. {block:NoteCount}<a href="{Permalink}">{NoteCount}</a> /{/block:NoteCount}
  722. <a href="{Permalink}" title="{TimeAgo}">{Month}, {DayOfMonth}</a>
  723. <div class="cora2">
  724. <div style="margin-left:-70px; margin-top:12px;">{LikeButton size="13"}</div>
  725. <div style="margin-left:-54px; margin-top:-17px;">{ReblogButton size="13"}</div></div></div>
  726. <div class="tags">
  727. {block:Tags}
  728. <a href="{TagURL}">#{Tag}</a>
  729. {/block:Tags}</div>
  730. {/block:Video} <div class="espa"></div>
  731.  
  732.  
  733.  
  734.  
  735.  
  736.  
  737. {block:Answer}
  738. <div class="postinfo"><div class="pergunta"><g>{Asker} said</g>: {Question}<br></div>
  739. {Answer}</div>
  740. <div class="tagsposts">
  741. {block:NoteCount}<a href="{Permalink}">{NoteCount}</a> /{/block:NoteCount}
  742. <a href="{Permalink}" title="{TimeAgo}">{Month}, {DayOfMonth}</a>
  743. <div class="cora2">
  744. <div style="margin-left:-65px; margin-top:12px;">{LikeButton size="13"}</div>
  745. <div style="margin-left:-45px; margin-top:-17px;">{ReblogButton size="13"}</div></div></div>
  746. <div class="tags">
  747. {block:Tags}
  748. <a href="{TagURL}">#{Tag}</a>
  749. {/block:Tags}</div>
  750. {/block:Answer} <div class="espa"></div>
  751.  
  752.  
  753.  
  754. {block:PostNotes}<div id="post_notes">{PostNotes}</div>{/block:PostNotes}
  755. {/block:Posts}
  756.  
  757. <br>
  758. <br>
  759. <br></div></div></div></div></div></div></div></div></div></div></div>
  760. </body>
  761. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement