Advertisement
tiffxny21

h4 black theme

May 14th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.68 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3.  
  4.  
  5.  
  6. <!----
  7. __ _______ _______ _ _ _____ _ _
  8. \ \ / /_ _|__ __| | | |/ ____| /\ | | | |
  9. \ \ /\ / / | | | | | |__| | | __ / \ | | | |
  10. \ \/ \/ / | | | | | __ | | |_ | / /\ \ | | | |
  11. \ /\ / _| |_ | | | | | | |__| |/ ____ \| |____| |____
  12. ___\/__\/ |_____|__|_| |_|__|_|\_____/_/ __ \_\______|______|
  13. |__ __| | | | ____| \/ | ____| / _ \/_ |
  14. | | | |__| | |__ | \ / | |__ | | | || |
  15. | | | __ | __| | |\/| | __| | | | || |
  16. | | | | | | |____| | | | |____ | |_| || |
  17. |_| |_| |_|______|_| |_|______| \___/ |_|
  18.  
  19. CREDIT FOR THE TOOLTIP TITLES & POPUPS GOES TO TUTORIAL-BABY. EVERYTHING ELSE IS MY OWN CODE, INCLUDING THE UPDATE TAB. PLEASE DO NOT STEAL ANY PART OF THIS THEME. FEEL FREE TO EDIT THIS THEME AS MUCH AS YOU WANT, SO LONG AS YOU DO NOT REMOVE OR MOVE THE CREDIT. PUTTING IT IN A POP-UP OR A PAGE COUNTS AS MOVING OR REMOVING IT. DON'T DO IT.
  20. --->
  21.  
  22.  
  23.  
  24.  
  25. <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  26. <head>
  27.  
  28. <script type="text/javascript"
  29. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  30. <script>
  31. $(document).ready(function() {
  32. //
  33. $('a.poplight[href^=#]').click(function() {
  34. var popID = $(this).attr('rel'); //Get Popup Name
  35. var popURL = $(this).attr('href'); //Get Popup href to define size
  36. var query= popURL.split('?');
  37. var dim= query[1].split('&');
  38. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  39. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend;
  40. var popMargTop = ($('#' + popID).height() + 80) / 2;
  41. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  42. //Apply Margin to Popup
  43. $('#' + popID).css({
  44. 'margin-top' : -popMargTop,
  45. 'margin-left' : -popMargLeft
  46. });
  47. $('body').append('<div id="fade"></div>');
  48. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  49. return false;
  50. });
  51. $('a.close, #fade').live('click', function() {
  52. $('#fade , .popup_block').fadeOut(function() {
  53. $('#fade, a.close').remove(); //fade them both out
  54. });
  55. return false;
  56. });
  57. });
  58. </script>
  59.  
  60. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  61.  
  62. <script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  63.  
  64. <script>
  65. (function($){
  66. $(document).ready(function(){
  67. $("a[title]").style_my_tooltips({
  68. tip_follows_cursor:true,
  69. tip_delay_time:0,
  70. tip_fade_speed:0,
  71. attribute:"title"
  72. });
  73. });
  74. })(jQuery);
  75.  
  76. </script>
  77.  
  78. <!--basic tooltip from tutorial-baby! Enjoy-->
  79. <style>
  80.  
  81.  
  82.  
  83. .tooltip{
  84. display: inline;
  85. position: relative;
  86. }
  87. #s-m-t-tooltip {
  88. font-family:'times';
  89. max-width:300px; /*how big the tooltip can be at most*/
  90. border-radius: 0px; /*change your border radius*/
  91. font-weight:bold;
  92. border-left:2px solid {color:background};
  93. padding:5px 6px 5px 6px; /*padding inside tooltip*/
  94. margin:30px 10px -20px 20px; /*distance from word*/
  95. background-color:{color:text}; /*background color*/
  96. font-size:9px; /*tooltip font size*/
  97. letter-spacing:2px; /*tooltip letter spacing*/
  98. text-transform:uppercase; /*makes the tooltip title uppercase*/
  99. color:{color:background}; /*tooltip font color*/
  100. z-index:99999999999999999999999999999999999999999;
  101. -o-transition:.5s;
  102. -ms-transition:.5s;
  103. -moz-transition:.5s;
  104. -webkit-transition:.5s;
  105. transition:.5s;
  106. }
  107.  
  108. .playerbuttonbg {
  109. position: absolute;
  110. left: 20px;
  111. top: 20px;
  112. width: 19px;
  113. height: 19px;
  114. background-color: #ffffff;
  115. padding: 10px;
  116. -webkit-border-radius: 40px;
  117. -moz-border-radius: 40px;
  118. border-radius: 40px;
  119. opacity: .4;
  120. filter: alpha(opacity=40);
  121. -moz-opacity: 0.4;
  122. -khtml-opacity: 0.4;
  123. transition: opacity .7s ease-in-out;
  124. -moz-transition: opacity .7s ease-in-out;
  125. -webkit-transition: opacity .7s ease-in-out;
  126. }
  127.  
  128. .playerbuttonbg:hover {
  129. opacity: 1;
  130. filter: alpha(opacity=100);
  131. -moz-opacity: 1;
  132. -khtml-opacity: 1;
  133. }
  134.  
  135. .newplayerbutton {
  136. position: relative;
  137. width: 19px;
  138. height: 19px;
  139. overflow: hidden;
  140. }
  141.  
  142. .playerbuttonhug {
  143. position: absolute;
  144. top: -18px;
  145. left: -7px;
  146. }
  147.  
  148. .tumblr_audio_player {
  149. height: 90px;
  150. width: 270px;
  151. -moz-transform: scale(0.60, 0.60);
  152. -webkit-transform: scale(0.60, 0.60);
  153. -o-transform: scale(0.60, 0.60);
  154. -ms-transform: scale(0.60, 0.60);
  155. transform: scale(0.60, 0.60);
  156. -moz-transform-origin: top left;
  157. -webkit-transform-origin: top left;
  158. -o-transform-origin: top left;
  159. -ms-transform-origin: top left;
  160. transform-origin: top left;
  161. }
  162.  
  163. .audioimgwrapper {
  164. position: absolute;
  165. left: 0px;
  166. top: 0px;
  167. -webkit-border-radius: 40px;
  168. -moz-border-radius: 40px;
  169. border-radius: 40px;
  170. overflow: hidden;
  171. width: 79px;
  172. height: 79px;
  173. }
  174.  
  175. .audioimgwrapper img {
  176. width: 100%;
  177. height: auto;
  178. -webkit-border-radius: 40px;
  179. -moz-border-radius: 40px;
  180. border-radius: 40px;
  181. }
  182.  
  183. .trackdetails {
  184. width: auto;
  185. display:inline-block;
  186. margin-left: 90px;
  187. min-height: 85px;
  188. }
  189.  
  190. .audiowrapper {
  191. position: relative;
  192. display:inline-block;
  193. }
  194. </style>
  195.  
  196.  
  197.  
  198.  
  199. <title>{Title}</title>
  200.  
  201.  
  202.  
  203. <link rel="shortcut icon" href="{Favicon}">
  204. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  205. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  206.  
  207. <meta name="color:Background" content="#ffffff"/>
  208. <meta name="color:Entries" content="#eeeeee"/>
  209. <meta name="color:Text" content="#838282"/>
  210. <meta name="color:Headertitle" content="#b8b8b8"/>
  211. <meta name="color:Postnotes" content="#ffffff"/>
  212. <meta name="color:Bold" content="#ffffff"/>
  213. <meta name="color:Main" content="#ffffff"/>
  214. <meta name="color:Postlinks" content="#ffffff"/>
  215. <meta name="color:Posthover" content="#ffffff"/>
  216. <meta name="color:Taglink" content="#ffffff"/>
  217. <meta name="color:Em" content="#ffffff"/>
  218. <meta name="color:Sidelink" content="#ffffff"/>
  219. <meta name="color:Hover" content="#ffffff"/>
  220.  
  221. <style type="text/css">
  222.  
  223.  
  224.  
  225. /* POP UP */
  226.  
  227. #fade { /*--Transparent background layer--*/
  228. display: none; /*--hidden by default--*/
  229. background: {color:background};
  230. position: fixed; left: 0; top: 0;
  231. width: 100%; height: 100%;
  232. opacity: .80;
  233. z-index: 9999;
  234. }
  235.  
  236. .popup_block{
  237. display: none; /*--hidden by default--*/
  238. background: transparent;
  239. padding: 20px;
  240. float: left;
  241. position: fixed;
  242. top:50%;
  243. left:50%;
  244. z-index: 99999;
  245. height:347px;
  246. }
  247.  
  248. .poptext {
  249. margin-left:auto;
  250. margin-right:auto;
  251. margin-top:-15px;
  252. width:250px;
  253. padding:10px;
  254. margin-left:170px;
  255. height:450px;
  256. overflow:auto;
  257. text-align:justify;
  258. color:{color:background};
  259. background-color:#dddddd;
  260. }
  261.  
  262. .poptext a {
  263. color:{color:bold};
  264. }
  265.  
  266. .popask {
  267. margin-left:auto;
  268. margin-right:auto;
  269. margin-top:-10px;
  270. width:400px;
  271. padding:40px 40px 40px 40px;
  272. margin-left:160px;
  273. font-weight:bold;
  274. overflow:hidden;
  275. text-align:justify;
  276. font-size:14px;
  277. }
  278.  
  279.  
  280. .popnav {
  281. margin-left:auto;
  282. margin-right:auto;
  283. margin-top:-70px;
  284. width:360px;
  285. padding:40px 40px 40px 40px;
  286. margin-left:150px;
  287. font-weight:bold;
  288. overflow:auto;
  289. text-align:justify;
  290. color:{color:text};
  291. font-size:14px;
  292. background-repeat:no-repeat;
  293. }
  294.  
  295. img.btn_close {
  296. float: right;
  297. margin: -5px -5px 0 0;
  298. }
  299. /*--Making IE6 Understand Fixed Positioning--*/
  300. *html #fade {
  301. position: absolute;
  302. }
  303. *html .popup_block {
  304. position: absolute;
  305. }
  306.  
  307. /* POPUP NAVIGATION */
  308.  
  309. #table {
  310. display: block;
  311. font-size: 12px;
  312. font-family: 'times';
  313. text-align: center;
  314. margin-left:-30px;
  315. margin-top:100px;
  316. }
  317.  
  318. #links {
  319. display: block;
  320. font-decoration: none;
  321. width: 400px;
  322.  
  323. }
  324.  
  325. #links a {
  326. display: block;
  327. padding: 6px;
  328. color: white;
  329. background-color:#202020;
  330. -moz-transition-duration:1s;
  331. -webkit-transition-duration:1s;
  332. -o-transition-duration:1s;
  333. text-decoration: none;
  334. }
  335.  
  336. #links a:hover {
  337. display: block;
  338. padding: 6px;
  339. color:{color:em};
  340. -moz-transition-duration:1s;
  341. -webkit-transition-duration:1s;
  342. -o-transition-duration:1s;
  343. text-decoration: none;
  344. }
  345.  
  346. /* WEBKIT SCROLLBAR */
  347.  
  348. ::-webkit-scrollbar-thumb:vertical {
  349. height:4px;
  350. background-color:{color:main};
  351. }
  352. ::-webkit-scrollbar-thumb:horizontal {
  353. background-color:#fff;
  354. }
  355.  
  356. ::-webkit-scrollbar {
  357. width:2px;
  358. height:4px;
  359. background-color:transparent;
  360. }
  361. ::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment{
  362. display:block;
  363. height:4px;
  364. background-color:transaprent;
  365. }
  366.  
  367. /* MAIN BLOG */
  368.  
  369. body {
  370. background-color:{color:Background};
  371. margin:0px;
  372. color:{color:text};
  373. font-family:'Helvetica';
  374. font-weight:100;
  375. line-height:17px;
  376. font-size:11px;
  377. }
  378.  
  379. ul,ol,li {
  380. list-style-type:default';
  381. }
  382.  
  383. u, underline {
  384. color:#202020;
  385. font-size:13px;
  386. }
  387.  
  388. a {
  389. color: {color:hover};
  390. text-decoration: none;
  391. text-shadow:0px 0px 2px {color:hover};
  392. }
  393.  
  394. small {
  395. font-size:11px;
  396. line-height:20px;
  397. }
  398.  
  399. sub {
  400. font-size:11px;
  401. }
  402.  
  403. hr {
  404. display: block;
  405. height: 1px;
  406. border: 0;
  407. border-top: 1px solid {color:em};
  408. padding: 0;
  409. }
  410.  
  411. blockquote {
  412. padding-left:5px;
  413. border-left:1px solid {color:bold};
  414. margin-left:5px;
  415. width:235px;
  416. }
  417.  
  418. blockquote blockquote {
  419. border-left:1px solid {color:bold};
  420. width:225px;
  421. }
  422.  
  423. b, bold, strong {
  424. font-family:'times';
  425. color: {color:bold};
  426. font-size:14px;
  427. text-shadow:0px 0px 2px {color:bold};
  428. }
  429.  
  430.  
  431. h4 {
  432. background-image: url(https://static.tumblr.com/nrbotot/0Etofalx2/h4_small.png);
  433. background-size: 190px 28px;
  434. background-repeat: no-repeat;
  435. background-position: center;
  436. border: 1px solid transparent;
  437. border-radius: 85px;
  438. overflow: hidden;
  439. padding: 0px;
  440. color: white;
  441. text-shadow: 0px 0px 2px white;
  442. font-size: 9px;
  443. font-family: helvetica;
  444. text-transform: uppercase;
  445. letter-spacing: 1px;
  446. text-align: center;
  447. }
  448.  
  449.  
  450.  
  451.  
  452.  
  453. h2 {
  454. color: {color:main};
  455. font-family:'times';
  456. font-size:15px;
  457. }
  458.  
  459. h1 {
  460. color: {color:bold};
  461. font-family:'times';
  462. font-size:15px;
  463. text-align:center;
  464. }
  465.  
  466. i, em {
  467. color:{color:em};
  468. font-family:'times';
  469. letter-spacing:1px;
  470. font-size:14px;
  471. text-shadow:0px 0px 2px {color:em};
  472. }
  473.  
  474. s, strike {
  475. color:{color:em};
  476. font-size:13px;
  477. letter-spacing:2px;
  478. font-family:'times';
  479. text-shadow:0px 0px 2px {color:bold};
  480. }
  481.  
  482. /* POST */
  483.  
  484. #container {
  485. /* feel free to use the image below as a template */
  486. background-image:url('https://i.imgur.com/37rehxa.png');
  487. margin:auto;
  488. position:absolute;
  489. bottom: 0; left: 0; top: 0; right: 0;
  490. /* resize your container to the size of your background image */
  491. height:500px;
  492. width:500px;
  493. }
  494.  
  495. #entries {
  496. position:absolute;
  497. width:270px;
  498. /* leave the width alone unless you're going to change post size, but feel free to fiddle with the margins when you have your background image in place */
  499. margin-left:125px;
  500. margin-top:50px;
  501. height:399px;
  502. overflow-x: hidden;
  503. overflow-y: auto;
  504. }
  505.  
  506. #sidelinks {
  507. position:absolute;
  508. z-index:999;
  509. font-family:'times';
  510. font-weight:bold;
  511. width:10px;
  512. letter-spacing:4px;
  513. font-size:15px;
  514. margin-top:50px;
  515. margin-left:410px;
  516. }
  517.  
  518. #sidelinks a {
  519. color:{color:Sidelink};
  520. -o-transition:.5s;
  521. -ms-transition:.5s;
  522. -moz-transition:.5s;
  523. -webkit-transition:.5s;
  524. transition:.5s;
  525. -webkit-filter: blur(0px); -moz-filter: blur(0px); -o-filter: blur(0px); -ms-filter: blur(0px); filter: blur(0px);
  526. }
  527.  
  528. #sidelinks a:hover {
  529. color:{color:Hover};
  530. -o-transition:.5s;
  531. -ms-transition:.5s;
  532. -moz-transition:.5s;
  533. -webkit-transition:.5s;
  534. transition:.5s;
  535. text-shadow:none;
  536. opacity:0.6;
  537. }
  538.  
  539. #sidenext {
  540. /* this is your pagination. it's part of the sidelinks so if you move the sidelinks, this will move as well */
  541. font-size:20px;
  542. font-family:'times';
  543. position:absolute;
  544. margin-top:-472px;
  545. margin-left:-120px;
  546. }
  547.  
  548.  
  549. /* POSTS */
  550.  
  551. #post {
  552. width:250px;
  553. padding: 5px 0px 5px 0px;
  554. text-align: justify;
  555. margin-bottom:30px;
  556. margin-top:30px;
  557. }
  558.  
  559. img, embed, object, video {
  560. max-width: 100%;
  561. width: auto;
  562. height: auto;
  563. border: none;
  564. }
  565.  
  566. #post:img {
  567. width:100;
  568. }
  569.  
  570. #post a {
  571. color: {color:Postlinks};
  572. font-weight:bold;
  573. -o-transition:.5s;
  574. -ms-transition:.5s;
  575. -moz-transition:.5s;
  576. -webkit-transition:.5s;
  577. transition:.5s;
  578. font-family:'times';
  579. text-shadow:none;
  580. font-size:14px;
  581. }
  582.  
  583. #post a:hover {
  584. -o-transition:.5s;
  585. -ms-transition:.5s;
  586. -moz-transition:.5s;
  587. -webkit-transition:.5s;
  588. transition:.5s;
  589. color:{color:posthover};
  590. }
  591.  
  592. #posttitle {
  593. font-family:'times';
  594. text-align: center;
  595. font-size: 15px;
  596. color: {color:Headertitle};
  597. letter-spacing:2px;
  598. text-transform:uppercase;
  599. margin-bottom:-10px;
  600. padding:5px;
  601. -o-transition:.5s;
  602. -ms-transition:.5s;
  603. -moz-transition:.5s;
  604. -webkit-transition:.5s;
  605. transition:.5s;
  606. text-shadow:none;
  607. }
  608.  
  609. #posttitle:hover {
  610. -o-transition:.5s;
  611. -ms-transition:.5s;
  612. -moz-transition:.5s;
  613. -webkit-transition:.5s;
  614. transition:.5s;
  615. }
  616.  
  617. /* AUDIO POST */
  618.  
  619. #audio {
  620. margin-bottom:10px;
  621. padding:10px;
  622. background-color:{color:Blockquote};
  623. height:80px;}
  624.  
  625. .cover {
  626. width:80px;
  627. height:80px;
  628. position:absolute;}
  629.  
  630. .cover img {
  631. z-index:10;
  632. width:70px;
  633. height:70px;
  634. border:5px solid {color:Main};}
  635.  
  636. .player {
  637. margin:15px 0px 0px 100px;}
  638.  
  639. .audioinfo {
  640. margin:10px 0px 0px 110px;}
  641.  
  642. /* QUOTE POST */
  643.  
  644. #quotey {
  645. background-color:transparent;
  646. font-size:10px;
  647. padding:20px;
  648. }
  649.  
  650. #quotes {
  651. background-color:transparent;
  652. font-size:20px;
  653. padding:20px;
  654. color:{color:Bold};
  655. font-weight:bold;
  656. font-style: italic;
  657. text-shadow: 0 1px 0.2em {color:bold};
  658. }
  659.  
  660. /* ASK POST */
  661.  
  662. #noicest {
  663. background-repeat:no-repeat;
  664. width:250px;
  665. height:auto;
  666. border-bottom:1px solid {color:main};
  667. }
  668.  
  669. #noiceask {
  670. font-family:'times';
  671. font-size:25px;
  672. text-align:center;
  673. text-transform:uppercase;
  674. margin-top:10px;
  675. letter-spacing:2px;
  676. }
  677.  
  678. #noiceask a {
  679. color:{color:main};
  680. -moz-transition-duration:1s;
  681. -webkit-transition-duration:1s;
  682. -o-transition-duration:1s;
  683. }
  684.  
  685. #noiceask a:hover {
  686. letter-spacing:3px;
  687. -moz-transition-duration:1s;
  688. -webkit-transition-duration:1s;
  689. -o-transition-duration:1s;
  690. -webkit-transition: all 0.5s ease-out;
  691. -moz-transition: all 0.5s ease-out;
  692. transition: all 0.5s ease-out;
  693. }
  694.  
  695. #noicer {
  696. width:250px;
  697. margin-left:auto;
  698. margin-right:auto;
  699. margin-top:0px;
  700. height:auto;
  701. text-align:center;
  702. overflow:auto;
  703. padding-top:10px;
  704. padding-bottom:10px;
  705. font-weight:bold;
  706. font-size:10px;
  707. }
  708.  
  709. /* TAGS */
  710.  
  711. #infotext {
  712. letter-spacing:2px;
  713. font-size:15px;
  714. margin-top:10px;
  715. color:{color:em};
  716. text-align:center;
  717. padding:10px;
  718. border-bottom:1px solid white;
  719. }
  720.  
  721. #infotext a {
  722. color:{color:Sidelink};
  723. -o-transition:.5s;
  724. -ms-transition:.5s;
  725. -moz-transition:.5s;
  726. -webkit-transition:.5s;
  727. transition:.5s;
  728. }
  729.  
  730. #infotext a:hover {
  731. color:{color:hover};
  732. -o-transition:.5s;
  733. -ms-transition:.5s;
  734. -moz-transition:.5s;
  735. -webkit-transition:.5s;
  736. transition:.5s;
  737. }
  738.  
  739. #info a {
  740. color: {color:Postnotes};
  741. -o-transition:.5s;
  742. -ms-transition:.5s;
  743. -moz-transition:.5s;
  744. -webkit-transition:.5s;
  745. transition:.5s;
  746. }
  747.  
  748. #info a:hover {
  749. opacity:0.5;
  750. -o-transition:.5s;
  751. -ms-transition:.5s;
  752. -moz-transition:.5s;
  753. -webkit-transition:.5s;
  754. transition:.5s;
  755. }
  756.  
  757. #iinfo {
  758. font-size:9px;
  759. text-align:justify;
  760. letter-spacing:1px;
  761. text-transform:none;
  762. text-shadow:none;
  763. margin-top:-24px;
  764. color:{color:bold};
  765. width:250px;
  766. margin-bottom:40px;
  767. -ms-transform: rotate(.5deg); /* IE 9 */
  768. -webkit-transform: rotate(.5deg); /* Chrome, Safari, Opera */
  769. transform: rotate(.5deg);
  770. }
  771.  
  772. #iinfo a {
  773. color:{color:taglink};
  774. -o-transition:.5s;
  775. -ms-transition:.5s;
  776. -moz-transition:.5s;
  777. -webkit-transition:.5s;
  778. transition:.5s;
  779. }
  780.  
  781. #iinfo a:hover {
  782. opacity:0.5;
  783. -o-transition:.5s;
  784. -ms-transition:.5s;
  785. -moz-transition:.5s;
  786. -webkit-transition:.5s;
  787. transition:.5s;
  788. }
  789.  
  790. #reblog {
  791. text-transform:uppercase;
  792. font-size:9px;
  793. letter-spacing:3px;
  794. color:{color:Postnotes};
  795. }
  796.  
  797. #reblog a{
  798. color:{color:Postnotes};
  799. }
  800.  
  801. #nnotes {
  802. width:360;
  803. overflow:hidden;
  804. height:auto;
  805. margin-left:15px;
  806. padding-left:20px;
  807. text-transform:uppercase;
  808. font-size:5px;
  809. color:{color:Text};
  810. }
  811.  
  812. #nnotes a {
  813. color:{color:Postnotes};
  814. text-transform:lowercase;
  815. letter-spacing:1px;
  816. font-weight:bold;
  817. font-style:italic;
  818. }
  819.  
  820. /* UPDATE TAB */
  821.  
  822. #update {
  823. width:150px;
  824. position:fixed;
  825. margin-left:50px;
  826. margin-top:50px;
  827. transition:0.5s ease-in-out;
  828. -webkit-transition:0.5s ease-in-out;
  829. -moz-transition:0.5s ease-in-out;
  830. text-align:justify;
  831. z-index:99;
  832.  
  833. }
  834.  
  835. #updatetitle {
  836. color:{color:text};
  837. font-weight:bold;
  838. z-index:99;
  839. opacity:1;
  840. font-size:7px;
  841. letter-spacing:2px;
  842. }
  843.  
  844. #updatetext {
  845. opacity:0;
  846. padding-top:200px;
  847. margin-top:-15px;
  848. color:{color:text};
  849. font-size:10px;
  850. transition:0.5s ease-in-out;
  851. -webkit-transition:0.5s ease-in-out;
  852. -moz-transition:0.5s ease-in-out;
  853. z-index:9;
  854.  
  855. }
  856.  
  857. #updatetext:hover {
  858. opacity:1;
  859. padding-top:20px;
  860. transition:0.5s ease-in-out;
  861. -webkit-transition:0.5s ease-in-out;
  862. -moz-transition:0.5s ease-in-out;
  863. }
  864.  
  865. #uptext {
  866. background-color:#121212;;
  867. padding:10px;
  868. width:110px;
  869. }
  870.  
  871. #uptext a {
  872. color:{color:bold};
  873. font-weight:bold;
  874. }
  875.  
  876. /* CREDITS */
  877.  
  878. #creda {
  879. position:fixed;
  880. bottom:5px;
  881. right:30px;
  882. width:20px;
  883. height:20px;
  884. font-size:7px;
  885. font-style:italic;
  886. text-shadow:none;
  887. }
  888.  
  889. #creda a {
  890. color:{color:bold};
  891. text-shadow:none;
  892. }
  893.  
  894. {CustomCSS}</style></head><body>
  895.  
  896.  
  897. <div id="update"><div id="updatetitle">HOVER</div>
  898. <div id="updatetext"><div id="uptext">
  899.  
  900.  
  901. <h4>semi-hiatus</h4>
  902. #WITHGALL
  903. frederick chilton
  904. CANON DIVERGENT AFTER YAKIMONO. CONSULT RULES + CANON PAGES FOR MORE INFO.
  905.  
  906. &
  907. HIGHLY SELECTIVE + PRIVATE, MUTUALS ONLY. SLOW REPLY. NO HEADCANONS, ICONS, CODE, GRAPHICS, ETC. ARE FOR PUBLIC USE.
  908.  
  909.  
  910. </div></div></div>
  911.  
  912.  
  913.  
  914.  
  915.  
  916.  
  917.  
  918.  
  919. </div>
  920. </div>
  921.  
  922.  
  923.  
  924.  
  925. <div id="container">
  926.  
  927. <div id="sidelinks">
  928. <a href="/" title="home">●</a>
  929. <a href="#?w=460" rel="01" title="ask" class="poplight">●</a>
  930. <a href="#?w=460" rel="02" title="title" class="poplight">●</a>
  931. <a href="#?w=460" rel="03" title="title" class="poplight">●</a>
  932. <a href="#?w=460" rel="04" title="title" class="poplight">●</a>
  933. <a href="#?w=460" rel="05" title="navigation" class="poplight">●</a>
  934. <p>
  935. <div id="sidenext">{block:NextPage}<a href="{NextPage}" title="next">»</a>{/block:NextPage}
  936. <p>{block:PreviousPage}<a href="{PreviousPage}" title="back">«</a>{/block:PreviousPage}
  937. </div>
  938.  
  939. </div>
  940.  
  941. <div id="entries">{block:Posts}<!-- {block:NoRebloggedFrom}
  942. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  943. {/block:NoRebloggedFrom} -->{block:ContentSource}<!-- {SourceURL}
  944. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  945. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  946. {/block:ContentSource}<div id="post">
  947.  
  948. {block:Text}<h1>{block:Title}<div id="posttitle">{Title}</div>{/block:Title}</h1>{Body}<div id="photo" class="photo"><img src="{PhotoURL-250}">{LinkCloseTag}</div>{block:More} <a href="{Permalink}"><center><b>READ MORE</b></center></a> {/block:More}{/block:Text}
  949.  
  950. {block:Photo}{LinkOpenTag}<div id="photo" class="photo"><img src="{PhotoURL-250}">{LinkCloseTag}</div>{block:Caption}{Caption}{block:More} <a href="{Permalink}"><center><b>READ MORE</b></center></a> {/block:More}{/block:Caption}{/block:Photo}
  951.  
  952. {block:Photoset}<div id="photo" class="photo">{Photoset-250}</div>{block:Caption}{Caption}{block:More} <a href="{Permalink}"><center><b>READ MORE</b></center></a> {/block:More}{/block:Caption}{/block:Photoset}
  953.  
  954. {block:Quote}<div id="quotes">{Quote}</div>{block:Source}<div class="quotey">- {Source}</div>{/block:Source}{/block:Quote}
  955.  
  956. {block:Link}<a href="{URL}" {Target}><div id="posttitle">{Name}</div></a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  957.  
  958. {block:Chat}
  959. {block:Title}<div id="posttitle">{Title}</div>
  960. {/block:Title}<br>
  961. {block:Lines}{block:Label}<strong>{Label}</strong></span>{/block:Label}
  962. {Line}<br></li>{/block:Lines}</ul>
  963. {/block:Chat}
  964.  
  965. {block:Audio}{block:AudioPlayer}
  966. <div class="audiowrapper">
  967. {block:AlbumArt}
  968. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  969. {/block:AlbumArt}
  970.  
  971. <div class="playerbuttonbg">
  972. <div class="newplayerbutton">
  973. <div class="playerbuttonhug">
  974.  
  975. {AudioPlayerWhite}
  976.  
  977. </div>
  978. </div>
  979. </div>
  980.  
  981. <div class="trackdetails">
  982.  
  983. {block:TrackName}{TrackName}{/block:TrackName}<br/>
  984. {block:Artist}Artist: {Artist}{/block:Artist}<br/>
  985. {block:Album}Album: {Album}{/block:Album}<br/>
  986. {PlayCountWithLabel}
  987.  
  988. </div>
  989. </div>
  990. {/block:AudioPlayer}
  991.  
  992. {block:Caption}{Caption}{/block:Caption}{/block:Audio}
  993.  
  994.  
  995. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  996.  
  997. {block:Answer}<div id="noicest"><div id="noiceask">{Asker}</div><div id="noicer">{Question}</div></div><p>{Answer}{Photo-250}{block:More} <a href="{Permalink}"><center><b>READ MORE</b><br>&nbsp;</center></a> {/block:More}{/block:Answer}
  998.  
  999.  
  1000. <div id="infotext">{block:Date}<a title="{TimeAgo}"><big>●</big></a></span>{/block:Date} <a href="{Permalink}" title="{NoteCountWithLabel}"><big>●</big>
  1001. </a>{block:RebloggedFrom} <a href="{ReblogParentURL}"
  1002. title="{ReblogParentTitle}"><big>●</big></a>{/block:RebloggedFrom}</div></div><div id="iinfo">{block:HasTags}{block:Tags} ● <a href="{TagURL}">{Tag} </a>{/block:Tags}{/block:HasTags}
  1003.  
  1004. </div>
  1005. {block:PostNotes}<div id="postnotes"><div id="nnotes">{PostNotes}</div></div>{/block:PostNotes}
  1006.  
  1007.  
  1008. {/block:Posts}</div></div>
  1009.  
  1010.  
  1011.  
  1012. <div id="creda"><a href="https://withgall.tumblr.com">WITHGALL</a></div>
  1013.  
  1014.  
  1015. </body>
  1016.  
  1017. <div id="01" class="popup_block">
  1018. <div class="popask">
  1019.  
  1020. <p><iframe frameborder="0" scrolling="no" width="100%" height="190" src="https://www.tumblr.com/ask_form/USERNAME.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]--></p>
  1021.  
  1022. </div>
  1023. </div>
  1024.  
  1025.  
  1026. <div id="02" class="popup_block">
  1027. <div class="poptext">
  1028.  
  1029. maybe some rules??
  1030.  
  1031.  
  1032. </div>
  1033. </div>
  1034.  
  1035. <div id="03" class="popup_block">
  1036. <div class="poptext">
  1037.  
  1038. an about page or something idk
  1039.  
  1040.  
  1041. </div>
  1042. </div>
  1043.  
  1044. <div id="04" class="popup_block">
  1045. <div class="poptext">
  1046.  
  1047. verses, whatever, whatever
  1048.  
  1049.  
  1050. </div>
  1051. </div>
  1052.  
  1053.  
  1054. <div id="05" class="popup_block">
  1055. <div class="popnav"><div id="links"><table id="table" table border="0" cellspacing="" cellpadding="2"><center>
  1056.  
  1057. <tr>
  1058. <td><a href="/">LINK</a></td>
  1059. <td><a href="/">LINK</a></td>
  1060. <td><a href="/">LINK</a></td>
  1061. </tr>
  1062.  
  1063. <td><a href="/">LINK</a></td>
  1064. <td><a href="/">LINK</a></td>
  1065. <td><a href="/">LINK</a></td>
  1066. </tr>
  1067.  
  1068. <tr>
  1069. <td><a href="/">LINK</a></td>
  1070. <td><a href="/">LINK</a></td>
  1071. <td><a href="/">LINK</a></td>
  1072. </tr>
  1073.  
  1074.  
  1075. </center></table></div></div></div>
  1076.  
  1077.  
  1078.  
  1079.  
  1080.  
  1081.  
  1082.  
  1083.  
  1084. </div>
  1085.  
  1086. </div>
  1087.  
  1088. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement