Advertisement
Daichi-Sama

Nina's Theme

Feb 2nd, 2017
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.59 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4.  
  5.  
  6.  
  7. <!--- Theme 2 by wehrmxcht. Edit as much as you like, but do not use as a base, and do not claim as your own --->
  8.  
  9.  
  10. <!--- CUSTOM FONTS --->
  11.  
  12. <link href='https://fonts.googleapis.com/css?family=Bad+Script' rel='stylesheet' type='text/css'>
  13. <link href='https://fonts.googleapis.com/css?family=Roboto:700' rel='stylesheet' type='text/css'>
  14. <link href='https://fonts.googleapis.com/css?family=Ubuntu:700' rel='stylesheet' type='text/css'>
  15. <link href='https://fonts.googleapis.com/css?family=Petit+Formal+Script' rel='stylesheet' type='text/css'>
  16. <link href='https://fonts.googleapis.com/css?family=Lobster+Two:400italic' rel='stylesheet' type='text/css'>
  17.  
  18. <!--- TOOLTIP --->
  19. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  20. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  21. <script>
  22. (function($){
  23. $(document).ready(function(){
  24. $("a[title]").style_my_tooltips({
  25.  
  26. tip_follows_cursor:true,
  27. tip_delay_time:400,
  28. tip_fade_speed:500,
  29. attribute:"title"
  30.  
  31. });
  32. });
  33. })(jQuery);
  34. </script>
  35.  
  36. <!---POP UP ASK BOX--->
  37. <script type="text/javascript"
  38. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  39. <script>
  40. $(document).ready(function() {
  41. //
  42. $('a.poplight[href^=#]').click(function() {
  43. var popID = $(this).attr('rel'); //Get Popup Name
  44. var popURL = $(this).attr('href'); //Get Popup href to define size
  45. var query= popURL.split('?');
  46. var dim= query[1].split('&');
  47. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  48. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  49. var popMargTop = ($('#' + popID).height() + 80) / 2;
  50. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  51. //Apply Margin to Popup
  52. $('#' + popID).css({
  53. 'margin-top' : -popMargTop,
  54. 'margin-left' : -popMargLeft
  55. });
  56. $('body').append('<div id="fade"></div>');
  57. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  58. return false;
  59. });
  60. $('a.close, #fade').live('click', function() {
  61. $('#fade , .popup_block').fadeOut(function() {
  62. $('#fade, a.close').remove(); //fade them both out
  63. });
  64. return false;
  65. });
  66. });
  67. </script>
  68. <!---END--->
  69.  
  70. <!---POP UP LINKS--->
  71. <script>
  72. $(document).ready(function() {
  73. //When you click on a link with class of poplight and the href starts with a #
  74. $('a.poplight[href^=#]').click(function() {
  75. var popID = $(this).attr('rel'); //Get Popup Name
  76. var popURL = $(this).attr('href'); //Get Popup href to define size
  77.  
  78. //Pull Query & Variables from href URL
  79. var query= popURL.split('?');
  80. var dim= query[1].split('&');
  81. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  82.  
  83. //Fade in the Popup and add close button
  84. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://media.corporate-ir.net/media_files/IROL/12/129751/images/2015/icon-close.png" class="btn_close" title="Close Window" alt="Close" /></a>');
  85.  
  86. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  87. var popMargTop = ($('#' + popID).height(200) + 80) / 2;
  88. var popMargLeft = ($('#' + popID).width(500) + 80) / 2;
  89.  
  90. //Apply Margin to Popup
  91. $('#' + popID).css({
  92. 'margin-top' : -popMargTop,
  93. 'margin-left' : -popMargLeft
  94. });
  95.  
  96. //Fade in Background
  97. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  98. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  99.  
  100. return false;
  101. });
  102.  
  103. //Close Popups and Fade Layer
  104. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  105. $('#fade , .popup_block').fadeOut(function() {
  106. $('#fade, a.close').remove(); //fade them both out
  107. });
  108. return false;
  109. });
  110. });
  111. </script>
  112. <!---POPUP LINKS END--->
  113.  
  114. <title>{title}</title>
  115. <link rel="shortcut icon" href="{Favicon}">
  116. <link rel="altertnate" type="application/rss+xml" href="{RSS}">
  117. <meta name="description" content="" />
  118. <meta http-equiv="x-dns-prefetch-control" content="off"/>
  119.  
  120. <!--- COLOR OPTIONS --->
  121. <meta name="color:Background" content="#000000"/>
  122. <meta name="color:Posts BG" content="#222222"/>
  123. <meta name="color:Text" content="#ffffff"/>
  124. <meta name="color:Post Bold" content="#aaaaaa"/>
  125. <meta name="color:Post Italic" content="#cccccc"/>
  126. <meta name="color:Link" content="#0099ff"/>
  127. <meta name="color:Link Hover" content="#00ffdd"/>
  128. <meta name="color:Scrollthumb" content="#ffffff"/>
  129. <meta name="color:Info BG" content="#000000"/>
  130. <meta name="color:Tooltip BG" content="#000000"/>
  131. <meta name="color:Tooltip Font" content="#ffffff"/>
  132.  
  133. <!--- IMAGE OPTIONS --->
  134. <meta name="if:Cover BG" content="1"/>
  135. <meta name="image:Background" content=""/>
  136.  
  137. <!--- LINKS --->
  138. <meta name="text:link 1" content="Link 1 Title"/>
  139. <meta name="text:link 1 url" content="/"/>
  140. <meta name="text:link 2" content="Link 2 Title"/>
  141. <meta name="text:link 2 url" content="/"/>
  142. <meta name="text:link 3" content="Link 3 Title"/>
  143. <meta name="text:link 3 url" content="/"/>
  144. <meta name="text:link 4" content="Link 4 Title"/>
  145. <meta name="text:link 4 url" content="/"/>
  146. <meta name="text:link 5" content="Link 5 Title"/>
  147. <meta name="text:link 5 url" content="/"/>
  148. <meta name="text:link 6" content="Link 6 Title"/>
  149. <meta name="text:link 6 url" content="/"/>
  150.  
  151. <style type="text/css">
  152.  
  153. /* --- THEME BASICS --- */
  154.  
  155.  
  156. html {
  157. background-image: url('http://static.tumblr.com/1gz9eba/ucwohvpkp/yuffie.png'); /* --- CHANGE YOUR BACKGROUND HERE --- */
  158. background-position: center;
  159. background-repeat: no-repeat;
  160. background-attachment: fixed;
  161.  
  162. }
  163.  
  164. ::-webkit-scrollbar {
  165. width: 1px;
  166. height: 4px;
  167. padding:2px;
  168. background: transparent;
  169. }
  170.  
  171. ::-webkit-scrollbar-thumb {
  172. background-color: #866051;
  173. }
  174.  
  175. body {
  176. margin:0px;
  177. color:#3a1338;
  178. font-family:tahoma;
  179. text-transform:uppercase;
  180. font-size:9px;
  181. text-align: justify;
  182. line-height:1.25em;
  183. letter-spacing:0px;
  184. margin-left:435px;
  185. }
  186.  
  187. h1 {
  188. font-family:tahoma;
  189. font-weight:normal;
  190. font-size:12px;
  191. text-align:center;
  192. font-style:normal;
  193. line-height:100%;
  194. letter-spacing:1px;
  195. color:#3a1338;
  196. }
  197.  
  198. h2 {
  199. font-family:tahoma;
  200. font-size:16px;
  201. text-align:center;
  202. font-style:italic;
  203. line-height:100%;
  204. letter-spacing:1px;
  205. color:#3a1338;
  206. padding:5px;
  207. padding-bottom:2px;
  208. }
  209.  
  210. h3 {
  211. font-family: tahoma;
  212. font-size:16px;
  213. text-align:center;
  214. line-height:100%;
  215. letter-spacing:1px;
  216. color:#3a1338;
  217. padding:5px;
  218. padding-bottom:2px;
  219. }
  220.  
  221. a {
  222. color: #a86c52;
  223. text-decoration: none;
  224. -moz-transition-duration: 0.5s;
  225. -o-transition-duration: 0.5s;
  226. -webkit-transition-duration: 0.5s;
  227. transition-duration: 0.5s;
  228. }
  229.  
  230. a:hover {
  231. color: #795e5f;
  232. -moz-transition-duration: 0.5s;
  233. -o-transition-duration: 0.5s;
  234. -webkit-transition-duration: 0.5s;
  235. transition-duration: 0.5s;
  236. }
  237.  
  238. blockquote {
  239. padding-left:5px;
  240. border-left:2px solid;
  241. }
  242.  
  243. blockquote blockquote {
  244. padding-left:5px;
  245. border-left:2px solid;
  246. }
  247.  
  248. blockquote {
  249. border-left: solid;
  250. border-radius: 0px;
  251. border-left-width: 2px;
  252. border-color:#181818;
  253. padding:5px;
  254. padding-left: 7px;
  255. margin-left: 10px; }
  256.  
  257. #post {
  258. width:400px;
  259. padding-bottom:20px;
  260. padding-right:10px;
  261. }
  262.  
  263. #post b, strong {
  264. color: #866051;
  265. font-family:times;
  266. text-shadow: 1px 1px 1px none;
  267. font-size:10px;
  268. letter-spacing:2px;
  269. }
  270.  
  271.  
  272. #post i, em {
  273. color: #795e5f;
  274. font-family: 'Lobster Two', cursive;
  275. text-shadow: 0px 0px 3px none;
  276. text-transform:none;
  277. font-size:12px;
  278. letter-spacing:0px;
  279. }
  280.  
  281. #post pre {
  282. font-family: times;
  283. color:#866051;
  284. white-space: pre-wrap;
  285. white-space: -moz-pre-wrap;
  286. white-space: -pre-wrap;
  287. white-space: -o-pre-wrap;
  288. word-wrap: break-word;
  289. }
  290.  
  291.  
  292. small {
  293.  
  294. word-spacing:0px;
  295. font-size:8px;
  296. letter-spacing:0px;
  297. line-height:180%;
  298. }
  299.  
  300. small small {
  301. font-size:7px;
  302. }
  303.  
  304. sup, sub {
  305. word-spacing:0px;
  306. font-size:8px;
  307. }
  308.  
  309.  
  310. big {
  311. font-size:12px;
  312. line-height:110%;
  313. text-shadow:1px 1px 0px #a77c62;
  314. }
  315.  
  316.  
  317. big big {
  318. font-size:14px;
  319. font-weight:800;
  320. line-height:110%;
  321. font-family:times;
  322. text-transform:uppercase;
  323. text-shadow:1px 1px 0px #a77c62;
  324. }
  325.  
  326. big big big {
  327. font-size:16px;
  328. font-weight:800;
  329. line-height:110%;
  330. text-shadow:1px 1px 0px #a77c62;
  331. }
  332.  
  333. /* --- THIS IS HERE TO KEEP IMAGES IN TEXT
  334. POSTS FROM GETTING BIGGER THAN THE CONTAINER,
  335. SO DON'T MESS WITH IT UNLESS YOU KNOW YOUR HTML. --- */
  336.  
  337. #post img.main_photo {
  338. width: 100%;
  339. }
  340.  
  341. #post img {
  342. max-width: 100%;
  343. height: auto;
  344. }
  345.  
  346. #post .photo img {
  347. opacity: 1;
  348. -webkit-transition: all 0.5s ease;
  349. -moz-transition: all 0.5s ease;
  350. -o-transition: all 0.5s ease;
  351. transition: all 0.5s ease;
  352. margin: 0;
  353. line-height: 0;
  354. }
  355.  
  356. .tumblr_post.photo p {
  357. display: none;
  358. }
  359.  
  360. /* --- BACK TO YOUR REGULARLY-SCHEDULED CSS --- */
  361.  
  362. .content {
  363. padding:5px;
  364. width:500px;
  365. height:500px;
  366. margin-left:5px;
  367. margin-top:1px;
  368. margin-bottom:40px;
  369. position:fixed;
  370. overflow:scroll;
  371. overflow-x:hidden;
  372. background-color:transparent;
  373. }
  374.  
  375. .backcont {
  376. padding:2px;
  377. width:500px;
  378. height:500px;
  379. left:750px;
  380. top:40px;
  381. position:fixed;
  382. background-color:transparent;
  383. }
  384.  
  385.  
  386. /* --- JUMBLE LINKS --- */
  387.  
  388. /* --- MOVING LINK 'A' WILL MOVE ALL THE LINKS. PUT LINK 'A' WHERE YOU'D LIKE, THEN MOVE THE OTHERS AROUND IT --- */
  389.  
  390. .anavlinks {
  391. transform: rotate(20deg);
  392. text-shadow:1px 1px 3px #000;
  393. color:#866051;
  394. background: transparent;
  395. padding: 2px;
  396. position: fixed;
  397. height:auto;
  398. width: 50px;
  399. top:30px;
  400. left:650px;
  401. font-family: tahoma;
  402. text-transform:uppercase;
  403. text-align: right;
  404. font-size: 20px;
  405. letter-spacing:0.5px;
  406. line-height:130%;
  407. padding-top: 2px;
  408. }
  409.  
  410. .navlinks a {
  411. color:#a86c52;
  412. }
  413.  
  414. .navlinks a:hover {
  415. color: #866051;
  416. text-transform: uppercase;
  417. text-shadow:3px 3px 3px none;
  418. }
  419.  
  420.  
  421. .bnavlinks {
  422. transform: rotate(20deg);
  423. color:#866051;
  424. background: transparent;
  425. padding: 2px;
  426. position: fixed;
  427. height:auto;
  428. width: 100px;
  429. top:50px;
  430. left:40px;
  431. font-family: tahoma;
  432. text-transform:uppercase;
  433. text-align: left;
  434. font-size: 20px;
  435. letter-spacing:0.5px;
  436. line-height:130%;
  437. padding-top: 2px;
  438. }
  439.  
  440. .navlinks a {
  441. color:#a86c52;
  442. }
  443.  
  444. .navlinks a:hover {
  445. color: #866051;
  446. text-transform: uppercase;
  447. }
  448.  
  449.  
  450. .cnavlinks {
  451. color:#866051;
  452. background: transparent;
  453. padding: 2px;
  454. position: fixed;
  455. height:auto;
  456. width: 100px;
  457. top:73px;
  458. left:60px;
  459. font-family: tahoma;
  460. text-transform:uppercase;
  461. text-align: left;
  462. font-size: 20px;
  463. letter-spacing:0.5px;
  464. line-height:130%;
  465. padding-top: 2px;
  466. }
  467.  
  468. .navlinks a {
  469. color:#a86c52;
  470. }
  471.  
  472. .navlinks a:hover {
  473. color: #795e5f;
  474. text-transform: uppercase;
  475. }
  476.  
  477.  
  478. .dnavlinks {
  479. color:#866051;
  480. background: transparent;
  481. padding: 2px;
  482. position: fixed;
  483. height:auto;
  484. width: 100px;
  485. top:115px;
  486. left:75px;
  487. font-family: tahoma;
  488. text-transform:uppercase;
  489. text-align: left;
  490. font-size: 20px;
  491. letter-spacing:0.5px;
  492. line-height:130%;
  493. padding-top: 2px;
  494. }
  495.  
  496. .navlinks a {
  497. color:#a86c52;
  498. }
  499.  
  500. .navlinks a:hover {
  501. color: #795e5f;
  502. text-transform: uppercase;
  503. }
  504.  
  505.  
  506. .enavlinks {
  507. color:#866051;
  508. background: transparent;
  509. padding: 2px;
  510. position: fixed;
  511. height:auto;
  512. width: 100px;
  513. top:160px;
  514. left:93px;
  515. font-family: tahoma;
  516. text-transform:uppercase;
  517. text-align: left;
  518. font-size: 20px;
  519. letter-spacing:0.5px;
  520. line-height:130%;
  521. padding-top: 2px;
  522. }
  523.  
  524. .navlinks a {
  525. color:#a86c52;
  526. }
  527.  
  528. .navlinks a:hover {
  529. color: #795e5f;
  530. text-transform: uppercase;
  531. }
  532.  
  533.  
  534. .fnavlinks {
  535. color:#866051;
  536. background: transparent;
  537. padding: 2px;
  538. position: fixed;
  539. height:auto;
  540. width: 100px;
  541. top:205px;
  542. left:108px;
  543. font-family: tahoma;
  544. text-transform:uppercase;
  545. text-align: left;
  546. font-size: 20px;
  547. letter-spacing:0.5px;
  548. line-height:130%;
  549. padding-top: 2px;
  550. }
  551.  
  552. .navlinks a {
  553. color:#a86c52;
  554. }
  555.  
  556. .navlinks a:hover {
  557. color: #795e5f;
  558. text-transform: uppercase;
  559. }
  560.  
  561. /* --- JUMBLE LINKS END --- */
  562.  
  563. .navlinks {
  564. color:#866051;
  565. background: transparent;
  566. padding: 2px;
  567. position: fixed;
  568. height:auto;
  569. width: 100px;
  570. top:200px;
  571. left:190px;
  572. font-family: times;
  573. text-transform:uppercase;
  574. text-align: right;
  575. font-size: 13px;
  576. letter-spacing:0.5px;
  577. line-height:130%;
  578. padding-top: 2px;
  579. }
  580.  
  581. .navlinks a {
  582. color:#a86c52;
  583. }
  584.  
  585. .navlinks a:hover {
  586. color: #795e5f;
  587. text-transform: uppercase;
  588. }
  589.  
  590. .navigation {
  591. font-family: times;
  592. width:120px;
  593. font-size:18px;
  594. margin-top:155px;
  595. margin-left:265px;
  596. padding-left:5px;
  597. letter-spacing:1px;
  598. font-style:italic;
  599. text-align:center;
  600. }
  601.  
  602. .navigation a {
  603. color:#000;
  604. }
  605. .navigation a:hover {
  606. color:#795e5f;
  607. }
  608.  
  609. #info {
  610. font-family: verdana;
  611. width:60px;
  612. margin-top:5px;
  613. margin-bottom:5px;
  614. padding-top:3px;
  615. font-size:10px;
  616. background:transparent;
  617. padding:2px;
  618. margin-top:5px;
  619. margin-left:172px;
  620. color:#3a1338;
  621. text-transform:uppercase;
  622. font-style:normal;
  623. text-align:left;
  624. -moz-transition-duration:0.5s;
  625. -webkit-transition-duration:0.5s;
  626. -o-transition-duration:0.5s;
  627. }
  628.  
  629. #info a {
  630. color:#a86c52;
  631. font-style:normal;
  632. }
  633.  
  634. #info a:hover {
  635. color:#795e5f;
  636. }
  637.  
  638. .tags {
  639. font-family:tahoma;
  640. font-style:normal;
  641. width:240px;
  642. text-transform:normal;
  643. background:transparent;
  644. font-style:normal;
  645. line-height:120%;
  646. padding-left:5px;
  647. font-size:8px;
  648. margin-top:1px;
  649. margin-left:75px;
  650. text-align:center;
  651. padding-top:2px;
  652. padding-bottom:8px;
  653. -moz-transition-duration:0.2s;
  654. -webkit-transition-duration:0.2s;
  655. -o-transition-duration:0.2s;
  656. }
  657.  
  658. #post:hover .tags { opacity:1; -moz-transition-duration:1s; -webkit-transition-duration:1s; -o-transition-duration:1s; }
  659.  
  660. .tags a{
  661. color:#a86c52;
  662. -moz-transition-duration:0.2s;
  663. -webkit-transition-duration:0.2s;
  664. -o-transition-duration:0.2s;
  665. }
  666. .tags a:hover{
  667. color:#795e5f;
  668. -moz-transition-duration:0.2s;
  669. -webkit-transition-duration:0.2s;
  670. -o-transition-duration:0.2s;
  671. }
  672.  
  673. .audio{
  674. overflow:hidden;
  675. }
  676.  
  677. #ask {
  678. float:left;
  679. color:#3a1338;
  680. }
  681.  
  682. #s-m-t-tooltip {
  683. max-width:150px;
  684. padding:5px 10px 5px 10px;
  685. margin:20px 14px 7px 10px;
  686. background-color:#baa48e;
  687. font-family:tahoma;
  688. font-style: bold;
  689. font-size:7px;
  690. line-height:11px;
  691. letter-spacing:1px;
  692. text-transform:uppercase;
  693. color:#866051;
  694. z-index:999;
  695. }
  696.  
  697. #credit {
  698. font-size:9px;
  699. font-family:verdana;
  700. font-style:italic;
  701. letter-spacing:1px;
  702. -moz-transition-duration:0.5s;
  703. -webkit-transition-duration:0.5s;
  704. -o-transition-duration:0.5s;
  705. }
  706.  
  707. #credit a {
  708. background-color:#baa48e;
  709. padding:5px;
  710. position:fixed;
  711. right:15px;
  712. bottom:10px
  713. }
  714.  
  715. #credit a:hover {
  716. color:#baa48e;
  717. background-color:#795e5f;
  718. }
  719.  
  720. /* --- POPUP CSS --- */
  721.  
  722. #fade { /*--Transparent background layer--*/
  723. display: none; /*--hidden by default--*/
  724. background: #000;
  725. position: fixed; left: 0; top: 0;
  726. width: 100%; height: 100%;
  727. opacity: .80;
  728. z-index: 9999;
  729. }
  730. .popup_block{
  731. width: 300px;
  732. height: 300px;
  733. overflow-y:scroll;
  734. overflow-x:hidden;
  735. display: none; /*--hidden by default--*/
  736. background:#000;
  737. padding: 30px;
  738. border: 0px solid #ddd;
  739. float: left;
  740. font-size: 9px;
  741. word-spacing:2px;
  742. position: fixed;
  743. top: 55%; left: 50%;
  744. z-index: 99999;
  745. /*--CSS3 Box Shadows--*/
  746. -webkit-box-shadow: 0px 0px 20px #000;
  747. -moz-box-shadow: 0px 0px 20px #000;
  748. box-shadow: 0px 0px 20px #000;
  749. /*--CSS3 Rounded Corners--*/
  750. -webkit-border-radius: 0px;
  751. -moz-border-radius: 0px;
  752. border-radius: 0px;
  753. }
  754. img.btn_close {
  755. float: right;
  756. margin: 0px 0px 0 0;
  757. }
  758. /*--Making IE6 Understand Fixed Positioning--*/
  759. *html #fade {
  760. position: absolute;
  761. }
  762. *html .popup_block {
  763. position: absolute;
  764. }
  765.  
  766. h2 {
  767. font-size: 10px;
  768. font-family: arial;
  769. font-weight:normal;
  770. line-height:15px;
  771. margin:0px;
  772. text-decoration: none;
  773. color: {color:Post Text};
  774. }
  775.  
  776. h2 a {
  777. text-decoration: none;
  778. color: #6f2d49;
  779. }
  780.  
  781. .popup_block b, strong {
  782. color: #866051;
  783. font-family:times;
  784. text-shadow: none;
  785. font-size:11px;
  786. letter-spacing:2px;
  787. }
  788.  
  789.  
  790. .popup_block i, em {
  791. color: #795e5f;
  792. font-family: 'Lobster Two', cursive;
  793. text-shadow: 0px 0px 3px #a6a290;
  794. text-transform:none;
  795. font-size:12px;
  796. letter-spacing:1px;
  797. }
  798.  
  799. /* --- POPUP CSS END --- */
  800.  
  801. {CustomCSS}
  802.  
  803.  
  804. </style></head><body>
  805.  
  806. <div class="anavlinks">
  807. <a href="/" title="return">★</a></a><br /><br />
  808. <div class="bnavlinks">
  809. <a href="#?w=500" rel="askbox" class="poplight" title="message">★</a><br /><br /></div>
  810. <div class="cnavlinks">
  811. <a href="#?w=500" rel="03" class="poplight" title="rules">★</a><br /><br /></div>
  812. <div class="dnavlinks">
  813. <a href="#?w=500" rel="04" class="poplight" title="about">★</a><br /><br /></div>
  814. <div class="enavlinks">
  815. <a href="#?w=500" rel="06" class="poplight" title="verses">★</a><br /><br /></div>
  816. <div class="fnavlinks">
  817. <a href="#?w=500" rel="05" class="poplight" title="behind the blog">★</a><br /><br /></div></div>
  818.  
  819. <div class="navigation">
  820. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"> ☚ </a>{/block:PreviousPage} {block:NextPage}<a href="{NextPage}"> ☛ </a>{/block:NextPage}{/block:Pagination}</div>
  821.  
  822.  
  823.  
  824. <div class="backcont">
  825. <div class="content">
  826.  
  827. <div class="postcol">
  828. {block:Posts}<div id="post">
  829.  
  830. {block:Text}<h1>{block:Title}<a href={Permalink}>{Title}</a>{/block:Title}</h1>{Body}{/block:Text}
  831.  
  832. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  833.  
  834. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  835.  
  836. {block:Quote}<div style="padding:4px;font-size:20px;line-height:1.5em;color:#3a1338;text-align:center;font-family: times;font-style:italic;">{Quote}</div>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  837.  
  838. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  839.  
  840. {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}
  841.  
  842. {block:Audio}<div class="audio">{AudioPlayerBlack}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  843.  
  844. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  845.  
  846. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}" style="margin-left:7px;margin-right:13px;border:1px solid #e3e3e3;padding:2px;"></div> <em>{Asker}:</em><br>{Question}<br><br>{Answer}{/block:Answer}
  847.  
  848. {block:Date}<div id="info"> <a href="{Permalink}" title="{TimeAgo}">✖</a>
  849. {/block:Date} {block:NoteCount}<a href="{Permalink}" title={NoteCount}>✖</a> {/block:NoteCount} <div style="float:right;">
  850.  
  851. {block:RebloggedFrom}<a title="{ReblogParentName}" href="{ReblogParentURL}">✖ </a> {/block:RebloggedFrom}{block:ContentSource}<a title="source" href="{SourceURL}">✖</a>{/block:ContentSource} {/block:RebloggedFrom}<a href={ReblogURL} title=REBLOG>✖</a></a></div>
  852. </div>
  853.  
  854.  
  855. {block:HasTags}
  856. <div class="tags">
  857. {block:Tags} <a href="{TagURL}">&nbsp; #{Tag}</a> {/block:Tags}</div>
  858. {/block:HasTags}
  859. <div class="postnote">
  860. {block:PostNotes}{PostNotes}{/block:PostNotes}
  861. </div>
  862. </div>
  863. {/block:Posts}
  864. </div>
  865. </div>
  866. </div>
  867. </div></div>
  868.  
  869. <div id="credit"><a href="http://wehrmxcht.tumblr.com">x</a></div> </div></div>
  870.  
  871. <div id="03" class="popup_block">
  872.  
  873. <body>
  874.  
  875.  
  876. RULES HERE
  877.  
  878.  
  879.  
  880.  
  881.  
  882. <p></div>
  883.  
  884.  
  885. </body>
  886. </html>
  887.  
  888.  
  889. </div>
  890.  
  891.  
  892. <div id="04" class="popup_block">
  893.  
  894. <body>
  895.  
  896.  
  897. ABOUT/BIO HERE
  898.  
  899.  
  900.  
  901.  
  902. </body>
  903. </html>
  904.  
  905.  
  906. </div>
  907. </div>
  908.  
  909. <div id="06" class="popup_block">
  910. <body>
  911.  
  912. VERSES HERE
  913.  
  914.  
  915.  
  916.  
  917.  
  918. </div>
  919. </body>
  920. </html>
  921.  
  922. </div>
  923.  
  924.  
  925. <div id="05" class="popup_block">
  926. <p>
  927.  
  928. ANYTHING ELSE YOU'D LIKE HERE! MUN INFO, LINKS, TAGS, ETC
  929.  
  930. </div>
  931.  
  932. <div id="askbox" class="popup_block">
  933. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{name}.tumblr.com" width="100%"></iframe>
  934. </div>
  935.  
  936. </div></div></div></div></div></div></div></div></div></div>
  937.  
  938. </body>
  939. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement