Advertisement
fuadiefuzzball

Untitled

Oct 26th, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.99 KB | None | 0 0
  1. <!--
  2.  
  3. Trouble on Paradise by Evy
  4. ohmyklaus.tumblr.com
  5.  
  6. EEEEEE EE EE EE EE
  7. EE EE EE EE EE
  8. EE EE EE EE EE
  9. EEEEE EE EE EEEE
  10. EE EEEE EE
  11. EE EEEE EE
  12. EEEEEEE EE EE
  13.  
  14. DO NOT REMOVE THE CREDIT!
  15. DO NOT CLAIM AS YOUR OWN!
  16. -->
  17.  
  18.  
  19.  
  20. <html><head>
  21. <script type='text/javascript'>
  22.  
  23. //<![CDATA[
  24.  
  25. var rate = 20;
  26.  
  27. if (document.getElementById)
  28. window.onerror=new Function("return true")
  29.  
  30. var objActive; // The object which event occured in
  31. var act = 0; // Flag during the action
  32. var elmH = 0; // Hue
  33. var elmS = 128; // Saturation
  34. var elmV = 255; // Value
  35. var clrOrg; // A color before the change
  36. var TimerID; // Timer ID
  37.  
  38. if (document.all) {
  39. document.onmouseover = doRainbowAnchor;
  40. document.onmouseout = stopRainbowAnchor;
  41. }
  42. else if (document.getElementById) {
  43. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  44. document.onmouseover = Mozilla_doRainbowAnchor;
  45. document.onmouseout = Mozilla_stopRainbowAnchor;
  46. }
  47.  
  48. function doRainbow(obj)
  49. {
  50. if (act == 0) {
  51. act = 1;
  52. if (obj)
  53. objActive = obj;
  54. else
  55. objActive = event.srcElement;
  56. clrOrg = objActive.style.color;
  57. TimerID = setInterval("ChangeColor()",100);
  58. }
  59. }
  60.  
  61.  
  62. function stopRainbow()
  63. {
  64. if (act) {
  65. objActive.style.color = clrOrg;
  66. clearInterval(TimerID);
  67. act = 0;
  68. }
  69. }
  70.  
  71.  
  72. function doRainbowAnchor()
  73. {
  74. if (act == 0) {
  75. var obj = event.srcElement;
  76. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  77. obj = obj.parentElement;
  78. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  79. break;
  80. }
  81.  
  82. if (obj.tagName == 'A' && obj.href != '') {
  83. objActive = obj;
  84. act = 1;
  85. clrOrg = objActive.style.color;
  86. TimerID = setInterval("ChangeColor()",100);
  87. }
  88. }
  89. }
  90.  
  91.  
  92. function stopRainbowAnchor()
  93. {
  94. if (act) {
  95. if (objActive.tagName == 'A') {
  96. objActive.style.color = clrOrg;
  97. clearInterval(TimerID);
  98. act = 0;
  99. }
  100. }
  101. }
  102.  
  103.  
  104. function Mozilla_doRainbowAnchor(e)
  105. {
  106. if (act == 0) {
  107. obj = e.target;
  108. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  109. obj = obj.parentNode;
  110. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  111. break;
  112. }
  113.  
  114. if (obj.nodeName == 'A' && obj.href != '') {
  115. objActive = obj;
  116. act = 1;
  117. clrOrg = obj.style.color;
  118. TimerID = setInterval("ChangeColor()",100);
  119. }
  120. }
  121. }
  122.  
  123.  
  124. function Mozilla_stopRainbowAnchor(e)
  125. {
  126. if (act) {
  127. if (objActive.nodeName == 'A') {
  128. objActive.style.color = clrOrg;
  129. clearInterval(TimerID);
  130. act = 0;
  131. }
  132. }
  133. }
  134.  
  135.  
  136. function ChangeColor()
  137. {
  138. objActive.style.color = makeColor();
  139. }
  140.  
  141.  
  142. function makeColor()
  143. {
  144. // Don't you think Color Gamut to look like Rainbow?
  145.  
  146. // HSVtoRGB
  147. if (elmS == 0) {
  148. elmR = elmV; elmG = elmV; elmB = elmV;
  149. }
  150. else {
  151. t1 = elmV;
  152. t2 = (255 - elmS) * elmV / 255;
  153. t3 = elmH % 60;
  154. t3 = (t1 - t2) * t3 / 60;
  155.  
  156. if (elmH < 60) {
  157. elmR = t1; elmB = t2; elmG = t2 + t3;
  158. }
  159. else if (elmH < 120) {
  160. elmG = t1; elmB = t2; elmR = t1 - t3;
  161. }
  162. else if (elmH < 180) {
  163. elmG = t1; elmR = t2; elmB = t2 + t3;
  164. }
  165. else if (elmH < 240) {
  166. elmB = t1; elmR = t2; elmG = t1 - t3;
  167. }
  168. else if (elmH < 300) {
  169. elmB = t1; elmG = t2; elmR = t2 + t3;
  170. }
  171. else if (elmH < 360) {
  172. elmR = t1; elmG = t2; elmB = t1 - t3;
  173. }
  174. else {
  175. elmR = 0; elmG = 0; elmB = 0;
  176. }
  177. }
  178.  
  179. elmR = Math.floor(elmR).toString(16);
  180. elmG = Math.floor(elmG).toString(16);
  181. elmB = Math.floor(elmB).toString(16);
  182. if (elmR.length == 1) elmR = "0" + elmR;
  183. if (elmG.length == 1) elmG = "0" + elmG;
  184. if (elmB.length == 1) elmB = "0" + elmB;
  185.  
  186. elmH = elmH + rate;
  187. if (elmH >= 360)
  188. elmH = 0;
  189.  
  190. return '#' + elmR + elmG + elmB;
  191. }
  192.  
  193.  
  194.  
  195. //]]>
  196.  
  197. </script>
  198.  
  199.  
  200. <script language=”javascript”>
  201. var titletext=”electra heart”
  202. var repeat=true; // SET TO true TO REPEAT, false TO “TYPE” OUT TITLE ONLY ONCE.
  203. set=setTimeout;
  204. var index=0;
  205. function scrolltitle(){
  206. if(index<=titletext.length){
  207. document.title=titletext.substring(0,index);
  208. index++;
  209. set(‘scrolltitle()’, 200);
  210. }else{
  211. index=0;
  212. if(repeat)set(‘scrolltitle()’,1000);
  213. }}
  214. window.onload=function(){
  215. if(!document.layers)set(‘scrolltitle()’,1000);
  216. }
  217. </script>
  218.  
  219. <noscript></noscript><!-- --><script type="text/javascript" src="http://www.freewebs.com/p.js"></script><script type="text/javascript">
  220. // <![CDATA[
  221. var colour="#FDD017";
  222. var sparkles=50;
  223.  
  224. /****************************
  225. * Tinkerbell Magic Sparkle *
  226. * (c) 2005 mf2fm web-design *
  227. * http://www.mf2fm.com/rv *
  228. * DON'T EDIT BELOW THIS BOX *
  229. ****************************/
  230. var x=ox=400;
  231. var y=oy=300;
  232. var swide=800;
  233. var shigh=600;
  234. var sleft=sdown=0;
  235. var tiny=new Array();
  236. var star=new Array();
  237. var starv=new Array();
  238. var starx=new Array();
  239. var stary=new Array();
  240. var tinyx=new Array();
  241. var tinyy=new Array();
  242. var tinyv=new Array();
  243.  
  244. window.onload=function() { if (document.getElementById) {
  245. var i, rats, rlef, rdow;
  246. for (var i=0; i<sparkles; i++) {
  247. var rats=createDiv(3, 3);
  248. rats.style.visibility="hidden";
  249. document.body.appendChild(tiny[i]=rats);
  250. starv[i]=0;
  251. tinyv[i]=0;
  252. var rats=createDiv(5, 5);
  253. rats.style.backgroundColor="transparent";
  254. rats.style.visibility="hidden";
  255. var rlef=createDiv(1, 5);
  256. var rdow=createDiv(5, 1);
  257. rats.appendChild(rlef);
  258. rats.appendChild(rdow);
  259. rlef.style.top="2px";
  260. rlef.style.left="0px";
  261. rdow.style.top="0px";
  262. rdow.style.left="2px";
  263. document.body.appendChild(star[i]=rats);
  264. }
  265. set_width();
  266. sparkle();
  267. }}
  268.  
  269. function sparkle() {
  270. var c;
  271. if (x!=ox || y!=oy) {
  272. ox=x;
  273. oy=y;
  274. for (c=0; c<sparkles; c++) if (!starv[c]) {
  275. star[c].style.left=(starx[c]=x)+"px";
  276. star[c].style.top=(stary[c]=y)+"px";
  277. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  278. star[c].style.visibility="visible";
  279. starv[c]=50;
  280. break;
  281. }
  282. }
  283. for (c=0; c<sparkles; c++) {
  284. if (starv[c]) update_star(c);
  285. if (tinyv[c]) update_tiny(c);
  286. }
  287. setTimeout("sparkle()", 40);
  288. }
  289.  
  290. function update_star(i) {
  291. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  292. if (starv[i]) {
  293. stary[i]+=1+Math.random()*3;
  294. if (stary[i]<shigh+sdown) {
  295. star[i].style.top=stary[i]+"px";
  296. starx[i]+=(i%5-2)/5;
  297. star[i].style.left=starx[i]+"px";
  298. }
  299. else {
  300. star[i].style.visibility="hidden";
  301. starv[i]=0;
  302. return;
  303. }
  304. }
  305. else {
  306. tinyv[i]=50;
  307. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  308. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  309. tiny[i].style.width="2px";
  310. tiny[i].style.height="2px";
  311. star[i].style.visibility="hidden";
  312. tiny[i].style.visibility="visible"
  313. }
  314. }
  315.  
  316. function update_tiny(i) {
  317. if (--tinyv[i]==25) {
  318. tiny[i].style.width="1px";
  319. tiny[i].style.height="1px";
  320. }
  321. if (tinyv[i]) {
  322. tinyy[i]+=1+Math.random()*3;
  323. if (tinyy[i]<shigh+sdown) {
  324. tiny[i].style.top=tinyy[i]+"px";
  325. tinyx[i]+=(i%5-2)/5;
  326. tiny[i].style.left=tinyx[i]+"px";
  327. }
  328. else {
  329. tiny[i].style.visibility="hidden";
  330. tinyv[i]=0;
  331. return;
  332. }
  333. }
  334. else tiny[i].style.visibility="hidden";
  335. }
  336.  
  337. document.onmousemove=mouse;
  338. function mouse(e) {
  339. set_scroll();
  340. y=(e)?e.pageY:event.y+sdown;
  341. x=(e)?e.pageX:event.x+sleft;
  342. }
  343.  
  344. function set_scroll() {
  345. if (typeof(self.pageYOffset)=="number") {
  346. sdown=self.pageYOffset;
  347. sleft=self.pageXOffset;
  348. }
  349. else if (document.body.scrollTop || document.body.scrollLeft) {
  350. sdown=document.body.scrollTop;
  351. sleft=document.body.scrollLeft;
  352. }
  353. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  354. sleft=document.documentElement.scrollLeft;
  355. sdown=document.documentElement.scrollTop;
  356. }
  357. else {
  358. sdown=0;
  359. sleft=0;
  360. }
  361. }
  362.  
  363. window.onresize=set_width;
  364. function set_width() {
  365. if (typeof(self.innerWidth)=="number") {
  366. swide=self.innerWidth;
  367. shigh=self.innerHeight;
  368. }
  369. else if (document.documentElement && document.documentElement.clientWidth) {
  370. swide=document.documentElement.clientWidth;
  371. shigh=document.documentElement.clientHeight;
  372. }
  373. else if (document.body.clientWidth) {
  374. swide=document.body.clientWidth;
  375. shigh=document.body.clientHeight;
  376. }
  377. }
  378.  
  379. function createDiv(height, width) {
  380. var div=document.createElement("div");
  381. div.style.position="absolute";
  382. div.style.height=height+"px";
  383. div.style.width=width+"px";
  384. div.style.overflow="hidden";
  385. div.style.backgroundColor=colour;
  386. return (div);
  387. }
  388. // ]]>
  389. </script>
  390.  
  391.  
  392.  
  393. </script>
  394.  
  395.  
  396. <meta name="color:Background" content="#fdf5e6"/>
  397. <meta name="color:Font" content="#eb96b2"/>
  398. <meta name="color:Links" content="#e79e86"/>
  399. <meta name="color:Links Hover" content="#eb96b2"/>
  400. <meta name="color:Bold" content="#eb96b2"/>
  401. <meta name="color:Posts Title" content="#eb96b2"/>
  402. <meta name="color:Blog Title" content="#e79e86"/>
  403. <meta name="color:Posts Background" content="#fdf5e6"/>
  404. <meta name="color:Posts Info Background" content="#fdf5e6"/>
  405. <meta name="color:Sidebar Image Border" content="#eb96b2"/>
  406. <meta name="color:Scrollbar" content="#eb96b2"/>
  407.  
  408. <meta name="text:Blog Title" content="Trouble in Paradise"/>
  409.  
  410. <meta name="text:Link 1 url" content="/"/>
  411. <meta name="text:Link 1 title" content="home"/>
  412. <meta name="text:Link 2 url" content="/ask"/>
  413. <meta name="text:Link 2 title" content="message"/>
  414. <meta name="text:Link 3 url" content=""/>
  415. <meta name="text:Link 3 title" content=""/>
  416. <meta name="text:Link 4 url" content=""/>
  417. <meta name="text:Link 4 title" content=""/>
  418. <meta name="text:Link 5 url" content=""/>
  419. <meta name="text:Link 5 title" content=""/>
  420. <meta name="text:Link 6 url" content=""/>
  421. <meta name="text:Link 6 title" content=""/>
  422. <meta name="text:Link 7 url" content=""/>
  423. <meta name="text:Link 7 title" content=""/>
  424. <meta name="text:Link 8 url" content=""/>
  425. <meta name="text:Link 8 title" content=""/>
  426. <meta name="text:Link 9 url" content=""/>
  427. <meta name="text:Link 9 title" content=""/>
  428. <meta name="text:Link 10 url" content=""/>
  429. <meta name="text:Link 10 title" content=""/>
  430.  
  431. <meta name="image:Sidebar Image" content="
  432. http://store.picbg.net/pubpic/0F/54/3ca4a46f45ff0f54.png"/>
  433. <meta name="image:Background Image" content=""/>
  434.  
  435.  
  436. <title>{Title}</title>
  437. <link rel="shortcut icon" href="{Favicon}">
  438.  
  439.  
  440.  
  441.  
  442.  
  443. <style type="text/css">
  444.  
  445.  
  446.  
  447. /* --- BASICS --- */
  448.  
  449.  
  450. body {
  451. font-family: Calibri;
  452. font-size: 11px;
  453. line-height: 100%;
  454. text-align: justify;
  455. color: {color:Font};
  456. background-color: {color:Background};
  457. background-image: url('{image:Background Image}');
  458. background-attachment: fixed;
  459. background-position: left top;
  460. background-repeat: no-repeat; }
  461.  
  462.  
  463. a:link, a:visited, a:active {
  464. text-decoration: none;
  465. color: {color:Links};
  466. -webkit-transition: all 0.4s ease-in-out;
  467. -moz-transition: all 0.4s ease-in-out;
  468. -o-transition: all 0.4s ease-in-out;
  469. transition: all 0.4s ease-in-out;
  470. border-bottom: 0px solid transparent; }
  471.  
  472. a:hover {
  473. border-bottom: 1px solid {color:Links Hover};
  474. color: {color:Links Hover};
  475. -webkit-transition: all 0.4s ease-in-out;
  476. -moz-transition: all 0.4s ease-in-out;
  477. -o-transition: all 0.4s ease-in-out;
  478. transition: all 0.4s ease-in-out; }
  479.  
  480.  
  481. l {
  482. padding: 1px 3px 2px 3px;
  483. text-decoration: none;
  484. color: {color:Links};
  485. border: 1px solid {color:Background};
  486. -webkit-transition: all 0.4s ease-in-out;
  487. -moz-transition: all 0.4s ease-in-out;
  488. -o-transition: all 0.4s ease-in-out;
  489. transition: all 0.4s ease-in-out;
  490. border-bottom: 0px solid transparent; }
  491.  
  492. l:hover {
  493. color: {color:Links Hover};
  494. background: {color:Background};
  495. border: 1px solid {color:Links Hover};
  496. -webkit-transition: all 0.4s ease-in-out;
  497. -moz-transition: all 0.4s ease-in-out;
  498. -o-transition: all 0.4s ease-in-out;
  499. transition: all 0.4s ease-in-out; }
  500.  
  501.  
  502. b, strong {
  503. color: {color:Bold}; }
  504.  
  505.  
  506. blockquote {
  507. margin-left: 0px;
  508. padding-left:4px;
  509. border-left: 4px solid {color:Bold}; }
  510.  
  511.  
  512. #title {
  513. margin-top: 5px;
  514. margin-bottom: 5px;
  515. padding-bottom: 4px;
  516. font-size: 16px;
  517. text-align: center; }
  518.  
  519. #link {
  520. margin-top: 5px;
  521. padding-bottom: 4px;
  522. font-size: 16px;
  523. text-align: center; }
  524.  
  525.  
  526. h1 {
  527. font-size: 19px;
  528. line-height: 15px;
  529. letter-spacing: 0px;
  530. text-transform: none;
  531. font-weight: normal;
  532. text-align: left;
  533. margin-top: 0px;
  534. margin-bottom: -5px;
  535. padding: 0px;
  536. color: {color:Posts Title}; }
  537.  
  538.  
  539.  
  540. /* --- POSTS --- */
  541.  
  542. #entries {
  543. position: absolute;
  544. margin-left: 300px;
  545. top: 20px;
  546. width: 520px; }
  547.  
  548. #posts {
  549. overflow: hidden;
  550. margin-bottom: 40px;
  551. padding: 10px 10px 0px 10px;
  552. background-color: {color:Posts Background}; }
  553.  
  554.  
  555.  
  556. /* --- POST INFO --- */
  557.  
  558. #info {
  559. position: absolute;
  560. opacity: 1;
  561. margin-top: 2px;
  562. margin-left: -10px;
  563. width: 510px;
  564. padding: 1px 5px 3px 5px;
  565. font-family: mane;
  566. font-size: 8px;
  567. line-height:120%;
  568. text-transform: uppercase;
  569. text-align: center;
  570. color: {color:Links};
  571. background-color: {color:Posts Info Background};
  572. -webkit-transition: 0.4s linear; }
  573.  
  574. #info a {
  575. color: {color:Links}; }
  576.  
  577. #info a:hover {
  578. color: {color:Links Hover}; }
  579.  
  580.  
  581.  
  582. /* --- QUOTE --- */
  583.  
  584. #quote {
  585. margin: 10px 32px;
  586. font-family: Calibri;
  587. font-size: 16px; }
  588.  
  589. #source {
  590. font-size: 11px; }
  591.  
  592. #speechmark {
  593. position: absolute;
  594. margin: 10px 0 0 -35px;
  595. padding-right: 10px;
  596. font-family: Calibri;
  597. font-size: 50px;
  598. font-weight: bold;
  599. color: {color:Bold}; }
  600.  
  601. #speechmarkk {
  602. position: absolute;
  603. margin: 7px 0 0 450px;
  604. padding-right: 10px;
  605. font-family: Calibri;
  606. font-size: 50px;
  607. font-weight: bold;
  608. color: {color:Bold}; }
  609.  
  610.  
  611.  
  612. /* --- AUDIO --- */
  613.  
  614. #audio {
  615. padding: 0px; }
  616.  
  617. .qu {
  618. opacity: 0.7;
  619. font-family: georgia;
  620. font-size: 25px;
  621. font-weight: bold;
  622. line-height: 33px;}
  623.  
  624. .ote {
  625. opacity: 0.9;
  626. margin-top: -34px;
  627. text-indent: 15px; }
  628.  
  629. .audio {
  630. background-color :white;
  631. display: block; }
  632.  
  633.  
  634.  
  635. /* --- QUESTION --- */
  636.  
  637. .asker {
  638. width: 490px;
  639. padding: 5px;
  640. font-size: 11px;
  641. text-transform: normal;
  642. line-height: 11px;
  643. font-weight: normal;
  644. color:{color:Font};
  645. background-color: {color:Posts Info Background};}
  646.  
  647. .asker img {
  648. float: left;
  649. padding: 0px 5px 0px 0px; }
  650.  
  651. .asker a {
  652. margin: 0;
  653. padding: 0;
  654. font-size: 11px;
  655. line-height: 11px
  656. font-weight: bold;
  657. text-transform: normal;
  658. color: {color:Links};;}
  659.  
  660. .asker a:hover {
  661. margin: 0;
  662. padding: 0;
  663. font-size: 11px;
  664. line-height:11px;
  665. font-weight: bold;
  666. text-transform: normal;
  667. color: {color:Links Hover};
  668. background-color: transparent; }
  669.  
  670. .question {
  671. font-size: 10px;
  672. font-weight: normal;
  673. text-transform: none;
  674. color:{color:Font}; }
  675.  
  676. .answer {
  677. padding-top: 0px;
  678. padding-left: 4px;
  679. padding-right: 4px; }
  680.  
  681. .answer img {
  682. max-width: 500px; }
  683.  
  684. img a {
  685. border:none;
  686. width:100%; }
  687.  
  688.  
  689.  
  690. /* --- CHAT --- */
  691.  
  692. .user_1 .label {color:{color:links}; font-weight:bold;}
  693. .user_2 .label {color:{color:links}; font-weight:bold;}
  694. .user_3 .label {color:{color:links}; font-weight:bold;}
  695. .user_4 .label {color:{color:links}; font-weight:bold;}
  696. .user_5 .label {color:{color:links}; font-weight:bold;}
  697. .user_6 .label {color:{color:links}; font-weight:bold;}
  698. .user_7 .label {color:{color:links}; font-weight:bold;}
  699. .user_8 .label {color:{color:links}; font-weight:bold;}
  700. .user_9 .label {color:{color:links}; font-weight:bold;}
  701. .user_10 .label {color:{color:links}; font-weight:bold;}
  702. .user_11 .label {color:{color:links}; font-weight:bold;}
  703. .user_12 .label {color:{color:links}; font-weight:bold;}
  704. .user_13 .label {color:{color:links}; font-weight:bold;}
  705. .user_14 .label {color:{color:links}; font-weight:bold;}
  706. .user_15 .label {color:{color:links}; font-weight:bold;}
  707. .user_16 .label {color:{color:links}; font-weight:bold;}
  708. .user_17 .label {color:{color:links}; font-weight:bold;}
  709. .user_18 .label {color:{color:links}; font-weight:bold;}
  710. .user_19 .label {color:{color:links}; font-weight:bold;}
  711. .user_20 .label {color:{color:links}; font-weight:bold;}
  712.  
  713. ul.chat, .chat ol, .chat li {
  714. margin:0px;
  715. padding:0px;
  716. list-style:none;}
  717.  
  718.  
  719.  
  720.  
  721.  
  722. /* --- SCROLLBAR --- */
  723.  
  724.  
  725. ::-webkit-scrollbar-thumb:vertical {
  726. height:10px;
  727. background-color: {color:Scrollbar}; }
  728.  
  729. ::-webkit-scrollbar-thumb:horizontal {
  730. height:10px;
  731. background-color: {color:Scrollbar}; }
  732.  
  733. ::-webkit-scrollbar {
  734. height: 10px;
  735. width: 5px;
  736. background-color: {color:Background}; }
  737.  
  738.  
  739.  
  740.  
  741.  
  742. /* --- PERMALINK NOTES PAGE --- */
  743.  
  744.  
  745. #postnotes {
  746. margin:0px 0px 0px 0px;
  747. width:510px;
  748. padding:5px;
  749. font-size:10px;
  750. background-color: none; }
  751.  
  752. #postnotes a {
  753. margin-top:1px; }
  754.  
  755. ol.notes li.note {
  756. padding:1px;
  757. border-bottom: solid 0px;}
  758.  
  759. ol.notes li.note img.avatar {
  760. vertical-align:-4px;
  761. margin-right:0px;
  762. width:16px;
  763. height:16px; }
  764.  
  765.  
  766.  
  767.  
  768.  
  769. /* --- SIDEBAR --- */
  770.  
  771.  
  772. #center {
  773. margin-left: auto;
  774. margin-right: auto;
  775. width: 800px; }
  776.  
  777. #position {
  778. position: fixed;
  779. top: 74px;
  780. width: 210px; }
  781.  
  782.  
  783. .sidebar {
  784. margin-left: 40px;
  785. width: 200px;
  786. padding: 5px 5px 3px 5px;
  787. font: 8px mane;
  788. text-align: justify;
  789. color: {color:Font};
  790. background: {color:Sidebar Image Border}; }
  791.  
  792.  
  793. .ttl {
  794. margin-left: 40px;
  795. width:200px;
  796. font: 9px 'Orator Std';
  797. letter-spacing: 2px;
  798. text-transform: uppercase;
  799. color: {color:Blog Title}; }
  800.  
  801.  
  802. #description {
  803. position: fixed;
  804. opacity: 0.9;
  805. overflow: hidden;
  806. margin-top: 5px;
  807. margin-left: -5px;
  808. width: 210px;
  809. padding: 6px 0px 4px 0px;
  810. text-align: justify;
  811. color: {color:Font};
  812. background: none;
  813. border: 5px solid none;
  814. -webkit-transition-duration: .90s;}
  815.  
  816.  
  817.  
  818.  
  819.  
  820. /* --- PAGES --- */
  821.  
  822.  
  823. #prev {
  824. position: fixed;
  825. top: 250px;
  826. left: 0;
  827. width: 100px;
  828. -webkit-transition-duration: .90s; }
  829.  
  830. #next {
  831. position: fixed;
  832. top: 250px;
  833. right: 0;
  834. width: 100px;
  835. -webkit-transition-duration: .90s; }
  836.  
  837.  
  838. .pages {
  839. display: block;
  840. width: 30px;
  841. padding: 0px 4px 4px 4px;
  842. font: 35px tahoma;
  843. text-align: center;
  844. color: {color:Links};
  845. background: none;
  846. -webkit-transition-duration: .90s; }
  847. .pages a, a {
  848. text-decoration: none;
  849. text-transform: none;
  850. color: {color:Links}; }
  851. .pages:hover {
  852. color: {color:Links Hover};
  853. background: {color:Nav Links Hover Background}; }
  854.  
  855.  
  856.  
  857.  
  858.  
  859. /* --- CREDIT --- */
  860.  
  861.  
  862. #credit {
  863. position: fixed;
  864. bottom: 10px;
  865. right: 10px;
  866. width: 45px;
  867. -webkit-transition-duration: .90s; }
  868.  
  869. .crdt {
  870. display: block;
  871. width: 40px;
  872. padding: 2px 0px 4px 0px;
  873. font: 8px mane;
  874. text-align: center;
  875. color: {color:Links};
  876. background: {color:Background};
  877. border: 1px solid {color:Background};
  878. -webkit-transition-duration: .90s; }
  879. .crdt a, a {
  880. text-decoration: none;
  881. text-transform: none;
  882. color: {color:Links}; }
  883. .crdt:hover {
  884. color: {color:Links Hover};
  885. background: {color:Background};
  886. border: 1px solid {color:Links Hover}; }
  887.  
  888.  
  889.  
  890.  
  891.  
  892. /* --- FONT FACE --- */
  893.  
  894.  
  895. @font-face {
  896. font-family: mane;
  897. src: url('http://static.tumblr.com/amm1lw6/Mwqm2qtbb/pfarmafive.ttf');}
  898.  
  899.  
  900.  
  901.  
  902.  
  903. </style>
  904.  
  905. </head>
  906.  
  907.  
  908.  
  909.  
  910.  
  911. <body>
  912.  
  913.  
  914.  
  915.  
  916.  
  917.  
  918.  
  919.  
  920.  
  921.  
  922. <div id="credit">
  923. <a href="http://ohmyklaus.tumblr.com/tagged/themes" target="_blank">
  924. <div class="crdt">theme</div></a>
  925. </div>
  926.  
  927.  
  928. <div id="center">
  929.  
  930.  
  931. <div id="position">
  932.  
  933. <div class="ttl"><br>
  934. <center>
  935. {text:Blog Title}
  936. </center>
  937. </div>
  938.  
  939. <div class="sidebar">
  940.  
  941.  
  942. <img src="{image:Sidebar Image}" width="200px">
  943.  
  944. <div id="description">
  945. <center>
  946.  
  947. {block:ifLink1title}
  948. <a href="{text:Link 1 url}"><l>{text:Link 1 title}</l></a>
  949. {/block:ifLink1title}
  950.  
  951. {block:ifLink2title}
  952. <a href="{text:Link 2 url}"><l>{text:Link 2 title}</l></a>
  953. {/block:ifLink2title}
  954.  
  955. {block:ifLink3title}
  956. <a href="{text:Link 3 url}"><l>{text:Link 3 title}</l></a>
  957. {/block:ifLink3title}
  958.  
  959. {block:ifLink4title}
  960. <a href="{text:Link 4 url}"><l>{text:Link 4 title}</l></a>
  961. {/block:ifLink4title}
  962.  
  963. {block:ifLink5title}
  964. <a href="{text:Link 5 url}"><l>{text:Link 5 title}</l></a>
  965. {/block:ifLink5title}
  966.  
  967. {block:ifLink6title}
  968. <a href="{text:Link 6 url}"><l>{text:Link 6 title}</l></a>
  969. {/block:ifLink6title}
  970.  
  971. {block:ifLink7title}
  972. <a href="{text:Link 7 url}"><l>{text:Link 7 title}</l></a>
  973. {/block:ifLink7title}
  974.  
  975. {block:ifLink8title}
  976. <a href="{text:Link 8 url}"><l>{text:Link 8 title}</l></a>
  977. {/block:ifLink8title}
  978.  
  979. {block:ifLink9title}
  980. <a href="{text:Link 9 url}"><l>{text:Link 9 title}</l></a>
  981. {/block:ifLink9title}
  982.  
  983. {block:ifLink10title}
  984. <a href="{text:Link 10 url}"><l>{text:Link 10 title}</l></a>
  985. {/block:ifLink10title}
  986.  
  987. <br><br>
  988.  
  989. {description}
  990. </center>
  991. <script>window.jQuery || document.write('<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"><\/script>')</script><script src="http://www.totallylayouts.com/online-users-counter/online.js?public_key=4bda029b9b7a1c9eac9000f43cea0b16&style=text&label1=with+nothing+better+to+do&label2=hot+babes"></script>
  992. </center>
  993.  
  994.  
  995. </div>
  996. </div>
  997. </div>
  998.  
  999.  
  1000. <div id="prev"><center>
  1001. {block:Pagination}
  1002. {block:PreviousPage}
  1003. <a href="{PreviousPage}"> <div class="pages">«</div></a>
  1004. {/block:PreviousPage}
  1005. {/block:Pagination}
  1006. </center></div>
  1007.  
  1008. <div id="next"><center>
  1009. {block:Pagination}
  1010. {block:NextPage}
  1011. <a href="{NextPage}"> <div class="pages">»</div></a>
  1012. {/block:NextPage}
  1013. {/block:Pagination}
  1014. </center></div>
  1015.  
  1016.  
  1017.  
  1018. <div id="entries">
  1019. {block:Posts}
  1020. <div id="posts">
  1021.  
  1022.  
  1023. {block:Title}
  1024. <h1>{Title}&nbsp;</h1>
  1025. {/block:Title}
  1026.  
  1027. {block:Text}
  1028. {Body}
  1029. {/block:Text}
  1030.  
  1031. {block:Quote}
  1032. <div id="quote">
  1033. <div id="speechmark">“</div>
  1034. <center>
  1035. {Quote}
  1036. </center>
  1037. <div id="speechmarkk">”</div>
  1038. </div>
  1039. {block:Source}
  1040. <div id="source">
  1041. <center>
  1042. {Source}
  1043. </center>
  1044. </div>{/block:Source}
  1045. {/block:Quote}
  1046.  
  1047. {block:Link}
  1048. <a href="{URL}" class="link" {Target}><h1>{Name}&nbsp;</h1></a>
  1049. {block:Description}{Description}{/block:Description}
  1050. {/block:Link}
  1051.  
  1052. {block:Photo}
  1053. {LinkOpenTag}
  1054. <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
  1055. {LinkCloseTag}<br>
  1056. {block:Caption}
  1057. {Caption}
  1058. {/block:Caption}
  1059. {/block:Photo}
  1060.  
  1061. {block:Photoset}
  1062. {Photoset-500}
  1063. {block:Caption}
  1064. {Caption}
  1065. {/block:Caption}
  1066. {/block:Photoset}
  1067.  
  1068. {block:Chat}
  1069. <ul class="chat">
  1070. {block:Lines}
  1071. <li class="user_{UserNumber}">
  1072. {block:Label}
  1073. <span class="label">{Label}</span>
  1074. {/block:Label}
  1075. &nbsp;{Line}</li>
  1076. {/block:Lines}</ul>
  1077. {/block:Chat}
  1078.  
  1079. {block:Video}
  1080. {Video-500}
  1081. {block:Caption}
  1082. {Caption}
  1083. {/block:Caption}
  1084. {/block:Video}
  1085.  
  1086. {block:Answer}
  1087. <div class="asker">
  1088. <img src="{AskerPortraitURL-24}"><b>{Asker}</b> asked:
  1089. <div class="questions">
  1090. {Question}
  1091. </div></div>
  1092. <div class="answer">
  1093. {Answer}
  1094. </div>
  1095. {/block:Answer}
  1096.  
  1097. {block:Audio}
  1098. <div id="audio">
  1099. {block:AlbumArt}
  1100. <img src="{AlbumArtURL}" width="55px" height="55px" align="left" style="margin-right:10px" />
  1101. {/block:AlbumArt}
  1102. {block:TrackName}
  1103. Song: <b>{TrackName}</b><br>
  1104. {/block:TrackName}
  1105. {block:Artist}
  1106. Artist: <b>{Artist}</b><br><br>
  1107. {/block:Artist}
  1108. {AudioPlayerBlack}<br>
  1109. </div>
  1110. {block:Caption}
  1111. {Caption}
  1112. {/block:Caption}
  1113. {/block:Audio}
  1114.  
  1115.  
  1116. <br><div id="info">
  1117. {block:Date}
  1118. <a href="{Permalink}">{TimeAgo}</a>
  1119. {/block:Date}
  1120. {block:NoteCount}
  1121. | <a href="{Permalink}">{NoteCount} notes</a>
  1122. {/block:NoteCount}
  1123. | <a href="{ReblogURL}" target="_blank">reblog</a><br>
  1124. {block:RebloggedFrom}
  1125. via: <a href="{ReblogParentURL}">
  1126. <a href="{ReblogParentURL}">{ReblogParentName}</a> |
  1127. {/block:RebloggedFrom}
  1128. {block:ContentSource}
  1129. source: <a href="{SourceURL}">{SourceLink}</a><br>
  1130. {/block:ContentSource}
  1131. {block:HasTags}
  1132. - {block:Tags}<a href="/tagged/{Tag}">{Tag}</a> - {/block:Tags}
  1133. {/block:HasTags}
  1134. </div>
  1135.  
  1136.  
  1137. </div>
  1138. {/block:Posts}
  1139.  
  1140. {block:PostNotes}
  1141. <div id="postnotes">{PostNotes}</div>
  1142. {/block:PostNotes}
  1143.  
  1144. </div>
  1145.  
  1146.  
  1147. </body>
  1148. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement