Advertisement
manon15

rooiish theme code

Oct 8th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!--code by manon/butscrewmefirst. don't take as your own!-->
  5.  
  6. <head>
  7.  
  8.  
  9. <title>{Title}</title>
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  13.  
  14.  
  15. <link href='http://fonts.googleapis.com/css?family=IM+Fell+Double+Pica+SC' rel='stylesheet' type='text/css'>
  16. <link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
  17. <link href='http://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
  18. <link href='http://fonts.googleapis.com/css?family=Prata' rel='stylesheet' type='text/css'>
  19. <link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
  20. <link href='http://fonts.googleapis.com/css?family=Tillana' rel='stylesheet' type='text/css'>
  21. <link href='http://fonts.googleapis.com/css?family=Aguafina+Script' rel='stylesheet' type='text/css'>
  22. <link href='http://fonts.googleapis.com/css?family=Petit+Formal+Script' rel='stylesheet' type='text/css'>
  23. <link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>
  24. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  25. <link href='http://fonts.googleapis.com/css?family=Calligraffitti' rel='stylesheet' type='text/css'>
  26. <link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
  27. <link href='http://fonts.googleapis.com/css?family=Six+Caps' rel='stylesheet' type='text/css'>
  28. <link href='http://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'>
  29. <link href='http://fonts.googleapis.com/css?family=Fondamento' rel='stylesheet' type='text/css'>
  30. <link href='http://fonts.googleapis.com/css?family=Bangers' rel='stylesheet' type='text/css'>
  31. <link href='http://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet' type='text/css'>
  32. <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
  33. <link href='https://fonts.googleapis.com/css?family=Homemade+Apple' rel='stylesheet' type='text/css'>
  34. <link href='https://fonts.googleapis.com/css?family=Great+Vibes' rel='stylesheet' type='text/css'>
  35. <link href='https://fonts.googleapis.com/css?family=Bad+Script' rel='stylesheet' type='text/css'>
  36. <link href='https://fonts.googleapis.com/css?family=Roboto:700' rel='stylesheet' type='text/css'>
  37. <link href='https://fonts.googleapis.com/css?family=Ubuntu:700' rel='stylesheet' type='text/css'>
  38. <link href='https://fonts.googleapis.com/css?family=Nothing+You+Could+Do' rel='stylesheet' type='text/css'>
  39. <link href='https://fonts.googleapis.com/css?family=Meddon' rel='stylesheet' type='text/css'>
  40. <link href='https://fonts.googleapis.com/css?family=Khand' rel='stylesheet' type='text/css'>
  41. <link href='https://fonts.googleapis.com/css?family=Black+Ops+One' rel='stylesheet' type='text/css'>
  42. <link href='https://fonts.googleapis.com/css?family=Kristi' rel='stylesheet' type='text/css'>
  43. <link href='https://fonts.googleapis.com/css?family=Waiting+for+the+Sunrise' rel='stylesheet' type='text/css'>
  44. <link href='https://fonts.googleapis.com/css?family=Dancing+Script' rel='stylesheet' type='text/css'>
  45. <link href='https://fonts.googleapis.com/css?family=Rock+Salt' rel='stylesheet' type='text/css'>
  46. <link href='https://fonts.googleapis.com/css?family=Yellowtail' rel='stylesheet' type='text/css'>
  47. <link href='https://fonts.googleapis.com/css?family=Alex+Brush' rel='stylesheet' type='text/css'>
  48. <link href="https://fonts.googleapis.com/css?family=Over+the+Rainbow" rel='stylesheet' type='text/css'>
  49. <link href="https://fonts.googleapis.com/css?family=Reenie+Beanie" rel='stylesheet' type='text/css'>
  50.  
  51.  
  52. <script type="text/javascript"
  53. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  54. <script>
  55. $(document).ready(function() {
  56. //
  57. $('a.poplight[href^=#]').click(function() {
  58. var popID = $(this).attr('rel'); //Get Popup Name
  59. var popURL = $(this).attr('href'); //Get Popup href to define size
  60. var query= popURL.split('?');
  61. var dim= query[1].split('&');
  62. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  63. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  64. var popMargTop = ($('#' + popID).height() + 80) / 2;
  65. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  66. //Apply Margin to Popup
  67. $('#' + popID).css({
  68. 'margin-top' : -popMargTop,
  69. 'margin-left' : -popMargLeft
  70. });
  71. $('body').append('<div id="fade"></div>');
  72. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  73. return false;
  74. });
  75. $('a.close, #fade').live('click', function() {
  76. $('#fade , .popup_block, .question_block').fadeOut(function() {
  77. $('#fade, a.close').remove(); //fade them both out
  78. });
  79. return false;
  80. });
  81. });
  82. </script>
  83.  
  84.  
  85. <style type="text/css">
  86.  
  87. .popup_block{
  88. display:none;
  89. float:left;
  90. background-image: url('http://i.imgur.com/931yo7T.png');
  91. background-color: #fff;
  92. height:500px;
  93. position:fixed;
  94. top:50%; left: 50%;
  95. z-index:9999999999999;
  96. opacity:1;
  97. }
  98.  
  99.  
  100. *html #fade {position: absolute;}
  101. *html .popup_block {position: absolute;}
  102. #fade {
  103. display:none;
  104. position:fixed;
  105. left:0px;
  106. top:0px;
  107. width:100%;
  108. height:100%;
  109. z-index:999999;
  110. background:#000001;
  111. opacity:.5;
  112. }
  113.  
  114.  
  115. #text {
  116. top:50%; *
  117. left:50%; *
  118. margin-top:50px; *
  119. margin-left:450px; *
  120. width:270px; **
  121. height:200px; **
  122. overflow:scroll; **
  123. text-align:justify;
  124. font-family:calibri;
  125. font-size:10px;
  126. color:#fff;
  127. background:transparent;
  128. }
  129.  
  130. #heading {
  131. top:50%;
  132. left:50%;
  133. margin-top:10px;
  134. text-align:left;
  135. margin-left:0px;
  136. font-family:"prata";
  137. font-size:40px;
  138. color:#fff;
  139. background:transparent;
  140. text-shadow: 0px 0px 14px #fff;
  141. }
  142.  
  143. #poptext2 {
  144. margin-top:273px;
  145. margin-left:185px;
  146. width:260px;
  147. height:195px;
  148. font-family:'calibri';
  149. font-size:12px;
  150. overflow:scroll;
  151. text-align:justify;
  152. }
  153.  
  154. #poptext {
  155. margin-top:272px;
  156. margin-left:172px;
  157. width:260px;
  158. height:196px;
  159. font-family:'calibri';
  160. font-size:12px;
  161. overflow:scroll;
  162. text-align:justify;
  163. }
  164.  
  165. .question_block{
  166. height:300px;
  167. display: none;
  168. float: left;
  169. position: fixed;
  170. top: 50%; left: 50%;
  171. z-index: 999999999999;
  172. }
  173.  
  174.  
  175.  
  176.  
  177.  
  178. para {
  179. font-family: 'Prata', serif;
  180. color:#000;
  181. text-shadow:0 0 2px #fff;
  182. font-size:15px;
  183.  
  184. }
  185.  
  186. /*edit scrollbar*/
  187.  
  188. ::-webkit-scrollbar-thumb {
  189. height:auto;
  190. }
  191.  
  192. ::-webkit-scrollbar {
  193. height:4px;
  194. width:3px;
  195. padding-right:2px;
  196. }
  197. /*edit the body this is what post text looks like, background color, etc.*/
  198.  
  199. body {
  200. background-image:url("http://i.imgur.com/g36Xmrb.png");
  201. background-position:left bottom;
  202. background-attachment:fixed;
  203. background-repeat:no-repeat;
  204. margin:0px;
  205. background-color:#bbbbbb;
  206. color:#fff;
  207. font-family:arial;
  208. font-size:16px;
  209. line-height:120%;
  210. overflow-x:hidden;
  211. overflow-y:hidden;
  212. }
  213.  
  214.  
  215. /*edit links*/
  216.  
  217. a {
  218. text-decoration:none;
  219. outline:none;
  220. -moz-outline-style:none;
  221. color:#a0564a;
  222. -moz-transition-duration:0.8s;
  223. -webkit-transition-duration:0.8s;
  224. -o-transition-duration:0.8s;
  225. text-transform:uppercase;
  226. }
  227.  
  228. /*edit link hover*/
  229.  
  230. a:hover {
  231. color:#000;
  232. outline:none;
  233. -moz-outline-style:none;
  234. text-decoration:none;
  235. border-radius: 20px 20px 20px 20px #851e1a;
  236. -webkit-filter: blur(0px);
  237. }
  238.  
  239. img {
  240. opacity:.8;
  241. -webkit-filter: Grayscale(50%);
  242. -webkit-transition-duration: 0.8s;
  243. -moz-transition-duration:0.8s;
  244. transition-duration:0.8s;
  245. -o-transition-duration:0.8s;
  246. -webkit-filter: blur(0px);
  247. border-radius: 20px 20px 20px 20px #000;
  248. }
  249.  
  250. img:hover {
  251. opacity:1;
  252. -webkit-filter: Grayscale(0%);
  253. -webkit-transition: all 0.8s ease-out;
  254. -moz-transition: all 0.8s ease-out;
  255. transition: all 0.8s ease-out;
  256. -webkit-filter: blur(0px);
  257. border-radius: 20px 20px 20px 20px #000;
  258.  
  259. }
  260.  
  261. blockquote {
  262. padding-left:5px;
  263. border-left:1px solid #7e5952;
  264. border-radius:6px;
  265.  
  266. }
  267.  
  268. blockquote blockquote {
  269. padding-left:5px;
  270. border-left:2px solid;
  271. }
  272.  
  273. h1 {
  274. font-size:15px;
  275. text-align:left;
  276. font-family:"prata";
  277. text-align:center;
  278. line-height:115%;
  279. letter-spacing:1px;
  280. color:#fff;
  281. text-transform:uppercase;
  282. }
  283.  
  284. h2 {
  285. font-size:20px;
  286. text-align:left;
  287. font-family:"dancing script";
  288. text-align:center;
  289. line-height:110%;
  290. letter-spacing:1px;
  291. color:#aaa2a6;
  292. }
  293.  
  294. h3 {
  295. font-size:20px;
  296. text-align:left;
  297. font-family:"Reenie Beanie";
  298. text-align:center;
  299. line-height:110%;
  300. letter-spacing:1px;
  301. color:#fff;
  302. }
  303.  
  304. h4 {
  305. font-size:16px;
  306. text-align:left;
  307. font-family:"Yellowtail";
  308. text-align:center;
  309. line-height:110%;
  310. letter-spacing:1px;
  311. color:#fff;
  312. }
  313.  
  314. h5 { /*this is for home link*/
  315. font-size:20px;
  316. text-align:left;
  317. font-family:"prata";
  318. text-align:center;
  319. line-height:110%;
  320. letter-spacing:1px;
  321. color:#fff;
  322. }
  323.  
  324. h6 { /*this is for pagination*/
  325. font-size:8px;
  326. font-family:"prata";
  327. text-align:center;
  328. line-height:110%;
  329. letter-spacing:1px;
  330. width:250px;
  331. color:#fff;
  332. }
  333.  
  334. pre {
  335. font-family:calibri;
  336. font-size:9px;
  337. color:#fff;
  338. text-shadow:0px 0px 1px #222;
  339. letter-spacing:1px;
  340. text-align:center;
  341. text-transform:uppercase;
  342. padding:5px;
  343. background:url('http://i.imgur.com/JjjXk9i.png');
  344. background-position:top center;
  345. border-radius:10px 3px 10px 3px;
  346. border:3px double #222;
  347. }
  348.  
  349.  
  350.  
  351. #title {
  352. color:#fff;
  353. font-family:arial;
  354. font-size:16px;
  355. text-transform:lowercase;
  356. font-weight:bold;
  357. letter-spacing:0px;
  358. padding:4px;
  359. margin-top:-20px;
  360. margin-left:-14px;
  361. position:fixed;
  362. text-align:left;
  363. }
  364.  
  365.  
  366. #navi {
  367. float:left;
  368. width:115px;
  369. padding:3px;
  370. }
  371.  
  372. #muses {
  373. width:125px;
  374. float:left;
  375. overflow:auto;
  376. margin:1px 2px;
  377. }
  378.  
  379. .muses text {
  380. height:50px;
  381. overflow:scroll;
  382. }
  383.  
  384.  
  385. /*sidebar links*/
  386.  
  387. .links {
  388. position: fixed;
  389. font-style:none;
  390. bottom:430px;
  391. margin-left:250px;
  392. font-size:20px;
  393. line-height: 850%;
  394. text-align: left;
  395. width:300px;
  396. margin-right: auto;
  397. -ms-transform: rotate(10deg); /* IE 9 */
  398. -webkit-transform: rotate(10deg); /* Safari */
  399. transform: rotate(10deg)
  400.  
  401. }
  402.  
  403. .links a {
  404. -webkit-filter:blur(0px);
  405. letter-spacing: 1px;
  406. padding:3px;
  407. text-shadow: 1px 0px 1px #5b0000;
  408.  
  409. }
  410.  
  411. .links a:hover {
  412. color:#5b0000;
  413. opacity:1;
  414. -webkit-transition: all 0.8s ease-out;
  415. -moz-transition: all 0.8s ease-out;
  416. transition: all 0.8s ease-out;
  417. -webkit-filter:blur(3px);
  418. }
  419.  
  420. .alinks {
  421. position: fixed;
  422. font-style:none;
  423. bottom:360px;
  424. margin-left:320px;
  425. font-size:24px;
  426. word-spacing:2px;
  427. line-height: 850%;
  428. text-align: left;
  429. width:20px;
  430. margin-right: auto;
  431. -ms-transform: rotate(-30deg); /* IE 9 */
  432. -webkit-transform: rotate(-30deg); /* Safari */
  433. transform: rotate(-30deg)
  434.  
  435.  
  436. }
  437.  
  438. .alinks a {
  439. -webkit-filter:blur(0px);
  440. letter-spacing: 1px;
  441. padding:3px;
  442. text-shadow: 1px 0px 1px #5b0000;
  443.  
  444. }
  445.  
  446. .alinks a:hover {
  447. color:#5b0000;
  448. opacity:1;
  449. -webkit-transition: all 0.8s ease-out;
  450. -moz-transition: all 0.8s ease-out;
  451. transition: all 0.8s ease-out;
  452. -webkit-filter:blur(3px);
  453. }
  454.  
  455. .blinks {
  456. position: fixed;
  457. font-style:none;
  458. bottom:280px;
  459. margin-left:140px;
  460. font-size:18px;
  461. word-spacing:2px;
  462. line-height: 850%;
  463. text-align: left;
  464. width:20px;
  465. margin-right: auto;
  466. -ms-transform: rotate(-10deg); /* IE 9 */
  467. -webkit-transform: rotate(-10deg); /* Safari */
  468. transform: rotate(-10deg)
  469.  
  470. }
  471.  
  472. .blinks a {
  473. -webkit-filter:blur(0px);
  474. letter-spacing: 1px;
  475. padding:3px;
  476. text-shadow: 1px 0px 1px #5b0000;
  477. }
  478.  
  479. .blinks a:hover {
  480. color:#5b0000;
  481. opacity:1;
  482. -webkit-transition: all 0.8s ease-out;
  483. -moz-transition: all 0.8s ease-out;
  484. transition: all 0.8s ease-out;
  485. -webkit-filter:blur(3px);
  486. }
  487.  
  488. .clinks {
  489. position: fixed;
  490. font-style:none;
  491. bottom:375px;
  492. margin-left:165px;
  493. font-size:26px;
  494. word-spacing:2px;
  495. line-height: 850%;
  496. text-align: left;
  497. width:20px;
  498. margin-right: auto;
  499. -ms-transform: rotate(-50deg); /* IE 9 */
  500. -webkit-transform: rotate(-50deg); /* Safari */
  501. transform: rotate(-50deg)
  502. }
  503.  
  504. .clinks a {
  505. -webkit-filter:blur(0px);
  506. letter-spacing: 1px;
  507. padding:3px;
  508. text-shadow: 1px 0px 1px #5b0000;
  509. }
  510.  
  511. .clinks a:hover {
  512. color:#5b0000;
  513. opacity:1;
  514. -webkit-transition: all 0.8s ease-out;
  515. -moz-transition: all 0.8s ease-out;
  516. transition: all 0.8s ease-out;
  517. -webkit-filter:blur(3px);
  518. }
  519.  
  520. .dlinks {
  521. position: fixed;
  522. font-style:none;
  523. bottom:570px;
  524. margin-left:370px;
  525. font-size:20px;
  526. word-spacing:2px;
  527. line-height: 850%;
  528. text-align: left;
  529. width:20px;
  530. margin-right: auto;
  531. -ms-transform: rotate(-40deg); /* IE 9 */
  532. -webkit-transform: rotate(-40deg); /* Safari */
  533. transform: rotate(-40deg)
  534. }
  535.  
  536. .dlinks a {
  537. -webkit-filter:blur(0px);
  538. letter-spacing: 1px;
  539. padding:3px;
  540. text-shadow: 1px 0px 1px #5b0000;
  541. }
  542.  
  543. .dlinks a:hover {
  544. color:#5b0000;
  545. opacity:1;
  546. -webkit-transition: all 0.8s ease-out;
  547. -moz-transition: all 0.8s ease-out;
  548. transition: all 0.8s ease-out;
  549. -webkit-filter:blur(3px);
  550. }
  551.  
  552. .elinks {
  553. position: fixed;
  554. font-style:none;
  555. bottom:520px;
  556. margin-left:190px;
  557. font-size:20px;
  558. word-spacing:2px;
  559. line-height: 850%;
  560. text-align: left;
  561. width:20px;
  562. margin-right: auto;
  563. -ms-transform: rotate(30deg); /* IE 9 */
  564. -webkit-transform: rotate(30deg); /* Safari */
  565. transform: rotate(30deg)
  566.  
  567. }
  568.  
  569. .elinks a {
  570. -webkit-filter:blur(0px);
  571. letter-spacing: 1px;
  572. padding:3px;
  573. text-shadow: 1px 0px 1px #27282e;
  574.  
  575. }
  576.  
  577. .elinks a:hover {
  578. color:#000;
  579. opacity:1;
  580. -webkit-transition: all 0.8s ease-out;
  581. -moz-transition: all 0.8s ease-out;
  582. transition: all 0.8s ease-out;
  583. -webkit-filter:blur(3px);
  584. }
  585.  
  586. .flinks {
  587. position: fixed;
  588. font-style:none;
  589. bottom:600px;
  590. margin-left:110px;
  591. font-size:20px;
  592. word-spacing:2px;
  593. line-height: 850%;
  594. text-align: left;
  595. width:20px;
  596. margin-right: auto;
  597. -ms-transform: rotate(50deg); /* IE 9 */
  598. -webkit-transform: rotate(50deg); /* Safari */
  599. transform: rotate(50deg)
  600.  
  601. }
  602.  
  603. .flinks a {
  604. -webkit-filter:blur(0px);
  605. letter-spacing: 1px;
  606. padding:3px;
  607. text-shadow: 1px 0px 1px #5b0000;
  608.  
  609. }
  610.  
  611. .flinks a:hover {
  612. color:#5b0000;
  613. opacity:1;
  614. -webkit-transition: all 0.8s ease-out;
  615. -moz-transition: all 0.8s ease-out;
  616. transition: all 0.8s ease-out;
  617. -webkit-filter:blur(3px);
  618. }
  619.  
  620. #description {
  621. width:208px;
  622. font-size:11px;
  623. padding:5px;
  624. text-align:justify;
  625. letter-spacing:0px;
  626. line-height:90%;
  627. margin-left:-16px;
  628. margin-top:-2px;
  629. }
  630.  
  631. /* this is the box that comes up when you hover over something with a title*/
  632.  
  633. #s-m-t-tooltip {
  634. margin-left:15px;
  635. margin-top:-21px;
  636. letter-spacing:0px;
  637. font-family:"prata";
  638. text-transform:auto;
  639. font-size:12px;
  640. color:#fff;
  641. background:url('http://i.imgur.com/JjjXk9i.png');
  642. border:1px solid #fff;
  643. text-shadow:0px 0px 1px #fff;
  644. padding: 3px;
  645. z-index:99999999999999999999999;
  646. -webkit-transition:all 1.5s;
  647. -moz-transition:all 1.5s;
  648. -ms-transition:all 1.5s;
  649. -o-transition:all 1.5s;
  650. transition:all 1.5s;
  651. }
  652.  
  653. .buttons {
  654. display:inline-block;
  655. width:90px;
  656. border-top:1px solid #fff;
  657. border-bottom:1px solid #fff;
  658. margin:5px;
  659. padding:5px;
  660. text-align:center;
  661. }
  662.  
  663. .buttons:hover {
  664. background:url('http://i.imgur.com/JjjXk9i.png');
  665. }
  666.  
  667. /*next page and previous page*/
  668.  
  669. #pagination {
  670. bottom:226px;
  671. font-size:10px;
  672. margin-left:970px;
  673. color:#fff;
  674. position: absolute;
  675. font-family:"prata";
  676. text-align: left;
  677. letter-spacing:2px;
  678. padding-left:87px;
  679. width:300px;
  680. word-spacing:2px;
  681. text-transform:lowercase;
  682. -ms-transform: rotate(-90deg); /* IE 9 */
  683. -webkit-transform: rotate(-90deg); /* Safari */
  684. transform: rotate(-90deg)
  685.  
  686.  
  687. }
  688.  
  689. #pagination a {
  690. padding:0 3px;
  691. opacity:2;
  692. -webkit-filter: Grayscale(0%);
  693. -webkit-transition: all 0.8s ease-out;
  694. -moz-transition: all 0.8s ease-out;
  695. transition: all 0.8s ease-out;
  696. -webkit-filter: blur(0px)
  697.  
  698. }
  699.  
  700. #pagination a:hover {
  701. color:#18191b;
  702. opacity:1;
  703. -webkit-transition: all 0.8s ease-out;
  704. -moz-transition: all 0.8s ease-out;
  705. transition: all 0.8s ease-out;
  706. -webkit-filter:blur(.8px);
  707. }
  708.  
  709.  
  710. #container {
  711. position: fixed;
  712. width:255px;
  713. height:417px;
  714. bottom:141px;
  715. margin-left:688px;
  716. overflow: auto;
  717. text-align:justify;
  718. }
  719.  
  720. .content { /* --- Entries within the container --- */
  721. padding:5px;
  722. width:250px;
  723. height:315px;
  724. margin-left:-125px;
  725. margin-top:-150px;
  726. margin-bottom:40px;
  727. position:fixed;
  728. overflow:scroll;
  729. overflow-x:hidden;
  730. background-color:transparent;
  731. -webkit-mask-image: -webkit-linear-gradient(top, rgba(0,0,0,1), rgba(0,0,0,0));
  732.  
  733. }
  734.  
  735. #post {
  736. width:250px;
  737. margin-top:5px;
  738. font-size:12px;
  739. line-height:110%;
  740. padding-top:10px;
  741. margin-bottom:20px;
  742. margin-left:auto;
  743. margin-right:auto;
  744. }
  745.  
  746. #post blockquote {
  747. padding-left:10px;
  748. margin-left:10px;
  749. border-left:#7e5952 1px solid;
  750. }
  751.  
  752.  
  753. /*italics and bold stuffs. here is where you can put new fonts, many i have already supplied you with!*/
  754.  
  755. b, strong, bold {
  756. color:#a0564a;
  757. text-shadow:0px 0px 2px #a0564a;
  758. font-size:12px;
  759. font-family:"helvetica";
  760. letter-spacing:2px;
  761. line-height:115%;
  762. font-weight: bold;
  763. text-transform:none;
  764. }
  765.  
  766. i, em, italic {
  767. color: #fff;
  768. text-shadow:0px 0px 2px #fff;
  769. font-size:15px;
  770. line-height:115%;
  771. font-family:"verdana";
  772. text-transform:lowercase;
  773. letter-spacing:2px;
  774.  
  775. }
  776.  
  777. /*time posted, note count, via and source*/
  778.  
  779. #info {
  780. width:200px;
  781. font-size:16px;
  782. padding:4px 0px 1px 0px;
  783. margin:0px 0px 40px 0px;
  784. letter-spacing:4px;
  785. font-size:22px;
  786. color:#fff;
  787. }
  788.  
  789. #info a {
  790. color:#b4b0b0;
  791. text-shadow:none;
  792. }
  793.  
  794. #info a:hover {
  795. color:#000;
  796. text-shadow:0px 0px 1px #b4b0b0;
  797. }
  798.  
  799.  
  800. /*tags*/
  801.  
  802. .tags {
  803. width:200px;
  804. margin:-20px 0px 0px 30px;
  805. line-height:115%;
  806. padding:5px;
  807. font-size:10px;
  808. word-break:keep-all;
  809. text-align:center;
  810. font-family:calibri;
  811. background:#fff;
  812. border-top:dashed 1px #5b0000;
  813. border-radius:3px 3px 8px 8px;
  814. background:url('http://i.imgur.com/JjjXk9i.png');
  815. }
  816.  
  817. .tags a {
  818. color:#fff;
  819. text-shadow:0px 0px 1px #222;
  820. }
  821.  
  822. .tags a:hover {
  823. color:#6d6d6d;
  824. text-shadow:0px 0px 1px #6d6d6d;
  825. }
  826.  
  827. .postnote {
  828. width:350px;
  829. margin-top:40px;
  830. font-family:arial;
  831. text-transform:lowercase;
  832. font-style:normal;
  833. letter-spacing:0px;
  834. font-size:10px;
  835. text-align:left;
  836. }
  837.  
  838. .verses img {
  839. float:center;
  840. -webkit-filter: grayscale(0%);
  841. width:260px;
  842. height:100px;
  843. }
  844.  
  845. .pic img {
  846. float: center;
  847. padding: 0px;
  848. margin-right: 10px;
  849. width: 100px;
  850. height: 100px;
  851. }
  852.  
  853. /*here go asks*/
  854.  
  855. #ask {
  856. width:220px;
  857. margin-left:5px;
  858. font-size:15px;
  859. text-align:center;
  860. font-family:arial;
  861. font-style:italic;
  862. text-transform:lowercase;
  863. color:#fff;
  864. }
  865.  
  866. #ask a {
  867. color:#fff;
  868. text-transform:lowercase;
  869. }
  870.  
  871. #ask a:hover {
  872. color:#6d6d6d;
  873. letter-spacing:2px;
  874. }
  875.  
  876. #q {
  877. width:220px;
  878. margin-left:5px;
  879. padding:10px;
  880. text-align:center;
  881. font-family:calibri;
  882. font-size:12px;
  883. color:#6d6d6d;
  884. border-radius:3px 5px 3px 5px;
  885. border:1px solid #1d1d1d;
  886. background:url('http://i.imgur.com/JjjXk9i.png');
  887. }
  888.  
  889. #ans {
  890. text-align:justify;
  891. padding:5px;
  892. }
  893.  
  894.  
  895.  
  896.  
  897. /*audio player container*/
  898.  
  899. .playercontainer {
  900. text-align:left;
  901. padding:10px;
  902. padding-left:0px;
  903. background-color:#191919;
  904. width:220px;
  905. }
  906.  
  907. /*artist, song, etc.*/
  908.  
  909. .musicinfo {
  910. padding-top:7px;
  911. padding-left:50px;
  912. color:#fff;
  913. text-align:justify;
  914. }
  915.  
  916. #updates {
  917. position:fixed;
  918. width:150px;
  919. height:408px;
  920. bottom:140px;
  921. margin-left:988px;
  922. font-size:11px;
  923. padding:5px;
  924. overflow:scroll;
  925. text-align:center;
  926. }
  927.  
  928. /*credit. only change this if you actually make the code your own*/
  929.  
  930. #credit {
  931. position:fixed;
  932. font-size:18px;
  933. color:#b3b3b3;
  934. font-weight:none;
  935. line-height:50%;
  936. letter-spacing:2px;
  937. font-family:'prata';
  938. right:20px;
  939. bottom:15px;
  940. text-transform:none;
  941. text-align:left;
  942. -webkit-transition: all 0.5s ease-in-out;
  943. -moz-transition: all 0.5s ease-in-out;
  944. -o-transition: all 0.5s ease-in-out;
  945. }
  946.  
  947. #credit a {
  948. letter-spacing: 0px;
  949. padding:3px;
  950. color:#b3b3b3;
  951. }
  952.  
  953. #credit a:hover {
  954. background:#000;
  955. color:#fff;
  956. }
  957.  
  958.  
  959.  
  960.  
  961. {CustomCSS}
  962.  
  963. }
  964.  
  965. </style></head><body>
  966. <script src=“http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js”></script>
  967. <script src=“http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js”></script>
  968. <script>
  969. (function($){
  970. $(document).ready(function(){
  971. $("a[title]").style_my_tooltips({
  972. tip_follows_cursor:true,
  973. tip_delay_time:7,
  974. tip_fade_speed:7,
  975. attribute:"title"
  976. });
  977. });
  978. })(jQuery);
  979. </script>
  980.  
  981.  
  982. <!-- YOUR UPDATES TAB -->
  983. <div id="updates">
  984. this is where you put your
  985. <pre>UPDATES</pre>
  986. <b>aren't they beautiful?</b>
  987. <HR WIDTH="30%">
  988. <i>some more cool stuff</i><br>
  989. <marquee>moving text now eyy</marquee>
  990. <h2>isn't this pretty</h2><br>
  991. and then you can do another special font!<br>
  992. <h3>lots of cool fonts tbh</h3>
  993. and here's more font so i can make sure it scrolls down<br>
  994. lmfao let's keep going<br>
  995. let's do it again
  996.  
  997. </div>
  998. <!-- END UPDATES TAB -->
  999.  
  1000.  
  1001. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  1002. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  1003. <script>
  1004.  
  1005. (function($){
  1006.  
  1007. $(document).ready(function(){
  1008.  
  1009. $("a[title]").style_my_tooltips({
  1010.  
  1011. tip_follows_cursor:true,
  1012.  
  1013. tip_delay_time:50,
  1014.  
  1015. tip_fade_speed:600,
  1016.  
  1017. attribute:"title"
  1018.  
  1019. });
  1020.  
  1021. });
  1022.  
  1023. })(jQuery);
  1024.  
  1025. </script>
  1026.  
  1027.  
  1028.  
  1029.  
  1030. <div class="links">
  1031. <a href="/" title="manhole">✧</a></div>
  1032.  
  1033. <div class="alinks">
  1034. <a href="#?w=400" title="questions" rel="box1" class="poplight">✧</a></div>
  1035.  
  1036. <div class="blinks">
  1037. <a href="#?w=600" title="ninja code" rel="box2" class="poplight">✧</a></div>
  1038.  
  1039. <div class="clinks">
  1040. <a href="#?w=600" title="file" rel="box6" class="poplight">✧</a></div>
  1041.  
  1042. <div class="dlinks">
  1043. <a href="#?w=600" title="lair" rel="box4" class="poplight">✧</a></div>
  1044.  
  1045. <div class="elinks">
  1046. <a href="#?w=600" title="verses" rel="box3" class="poplight">✧</a></div>
  1047.  
  1048. <div class="flinks">
  1049. <a href="#?w=400" title="submission" rel="box8" class="poplight">✧</a></div>
  1050.  
  1051.  
  1052.  
  1053.  
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060.  
  1061.  
  1062.  
  1063. </div>
  1064.  
  1065. <div id="description">{Description}</div>
  1066.  
  1067.  
  1068. <div id="pagination">
  1069. {block:Pagination}
  1070. {block:PreviousPage}
  1071. <a href="{PreviousPage}">back</a>
  1072. {/block:PreviousPage}
  1073.  
  1074.  
  1075. {block:NextPage}
  1076. <a href="{NextPage}">/ forth</a>
  1077. {/block:NextPage}
  1078. {/block:Pagination}
  1079. </div>
  1080.  
  1081.  
  1082.  
  1083. </div>
  1084.  
  1085.  
  1086. <div id="container">
  1087. <div id="content">
  1088.  
  1089. {block:Posts}<div id="post">
  1090.  
  1091. {block:Text}
  1092. {block:Title}<b><center>{Title}</center></b>{/block:Title}
  1093. {Body}
  1094. {/block:Text}
  1095.  
  1096. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1097.  
  1098. <center>{block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}</center>
  1099.  
  1100. {block:Quote}
  1101. <h2>{Quote}</h2>
  1102. <h1>—{Source}</h1>
  1103. {/block:Quote}
  1104.  
  1105. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  1106.  
  1107. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  1108.  
  1109. {block:Audio}<div class="audio">{AudioPlayerBlack}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  1110.  
  1111. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1112.  
  1113. {block:Answer}
  1114.  
  1115. <div id="ask">{Asker}</div>
  1116. <div id="q">{Question}</div>
  1117. <br/>{Answer}{/block:Answer}
  1118.  
  1119. {block:Date}
  1120. <div id="info">
  1121. <a href="{Permalink}" title="{ShortMonth} {DayOfMonthWithZero} - {TimeAgo}" style="position:absolute; margin-left:25px; margin-top:6px;-webkit-transform: rotate(-20deg);-ms-transform: rotate(-20deg);transform: rotate(-20deg);">*</a>
  1122. <a href="{Permalink}" title="{NoteCountWithLabel}" style="position:absolute; margin-left:3px; margin-top:5px;font-size:25px;-webkit-transform: rotate(20deg);-ms-transform: rotate(20deg);transform: rotate(20deg);">△</a>
  1123. <a href={ReblogURL} target=”_blank” class=”details” title="Reblog" style="position:absolute; margin-left:5px; margin-top:23px;font-size:17px;-webkit-transform: rotate(-50deg);-ms-transform: rotate(-50deg);transform: rotate(-50deg);">▲</a>
  1124. {block:ContentSource}<!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->{/block:ContentSource}
  1125. <!-- {block:NoRebloggedFrom}{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}{/block:NoRebloggedFrom} -->
  1126. </div>
  1127. {/block:Date}
  1128.  
  1129.  
  1130. {block:HasTags}
  1131. <div class="tags">
  1132. {block:Tags} <a href="{TagURL}" title="{Tag}">&nbsp;#{Tag}&nbsp;</a> {/block:Tags}</div>
  1133. {/block:HasTags}
  1134.  
  1135.  
  1136. <div class="postnote">
  1137. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1138. </div>
  1139. </div>
  1140. {/block:Posts}
  1141. </div>
  1142. </div>
  1143. </div>
  1144. </div></div>
  1145.  
  1146.  
  1147.  
  1148.  
  1149. </div></div></div></div>
  1150. </div>
  1151.  
  1152. <div id="credit"><a href="http://butscrewmefirst.tumblr.com" title="theme by manon"><big>Ⓜ</big></a></div>
  1153.  
  1154. </body>
  1155.  
  1156. </div></div></div></div></div></div></div></div></div></div>
  1157. <div id="box1" class="question_block">
  1158. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  1159. </div>
  1160. </div></div></div></div></div></div></div></div></div></div>
  1161.  
  1162. <div id="box8" class="question_block" style="height:450px; padding:0px; background:url(); background-repeat:no repeat; overflow-x:hidden;">
  1163. <iframe frameborder="0" height="200" id="submit_form" scrolling="yes" src="http://www.tumblr.com/submit_form/{Name}.tumblr.com" width="100%"></iframe>
  1164. </div>
  1165. </div></div>
  1166.  
  1167. <div id="box2" class="popup_block">
  1168. <div id="heading">GUIDELINES</div>
  1169. <div id="poptext">
  1170. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<p>
  1171. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  1172. </div>
  1173. </div>
  1174.  
  1175. </div></div></div></div></div></div></div></div></div></div>
  1176.  
  1177.  
  1178.  
  1179. <div id="box3" class="popup_block">
  1180. <div id="heading">VERSES</div>
  1181. <div id="poptext">
  1182. <center><img src="http://i.imgur.com/aB1KCnl.gif" class="verses"></center>
  1183. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  1184.  
  1185. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  1186. <HR WIDTH="90%">
  1187. <center><img src="http://i.imgur.com/aB1KCnl.gif" class="verses"></center>
  1188. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  1189.  
  1190. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  1191. <HR WIDTH="90%">
  1192.  
  1193. <center><img src="http://i.imgur.com/aB1KCnl.gif" class="verses"></center>
  1194. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  1195.  
  1196. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  1197. <HR WIDTH="90%">
  1198.  
  1199.  
  1200. </center>
  1201. </div>
  1202. </div>
  1203. </div>
  1204. </div></div></div></div></div></div></div></div></div></div>
  1205.  
  1206.  
  1207.  
  1208. <div id="box4" class="popup_block">
  1209. <div id="heading">NAVIGATION</div>
  1210. <div id="poptext2">
  1211. <div id="navi">
  1212. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1213. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1214. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1215. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1216. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1217. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1218. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1219. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1220. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1221.  
  1222. </div>
  1223. <div id="navi">
  1224. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1225. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1226. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1227. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1228. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1229. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1230. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1231. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1232. <a href="/LINK HERE" class="buttons">TITLE HERE</a><br>
  1233.  
  1234. </div>
  1235. </div>
  1236. </div>
  1237.  
  1238. </div></div></div></div></div></div></div></div></div></div>
  1239.  
  1240.  
  1241.  
  1242. <div id="box6" class="popup_block">
  1243. <div id="heading">BIOGRAPHY</div>
  1244. <div id="poptext">
  1245. <img src="http://i.imgur.com/aB1KCnl.gif" class="verses"></center><br>
  1246. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
  1247. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<p>
  1248. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  1249.  
  1250. </div>
  1251. </div>
  1252. </div>
  1253.  
  1254. </div></div></div></div></div></div></div></div></div></div>
  1255.  
  1256.  
  1257.  
  1258. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement