Guest User

Untitled

a guest
May 20th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.82 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}
  7. <meta name="description" content="{MetaDescription}" />
  8. {/block:Description}
  9. </head>
  10.  
  11. <!-- ~ V A R A D E R O T H E M E
  12. ~ code created by AWOKENHOPE.TUMBLR.COM
  13. ~ do not steal this code
  14. ~ do not use as a base code for new codes
  15. ~ feel free to ask any questions -->
  16.  
  17. <!---------------------POPUP------------------->
  18.  
  19. <script type="text/javascript"
  20. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  21. <script>
  22. $(document).ready(function() {
  23. //
  24. $('a.poplight[href^=#]').click(function() {
  25. var popID = $(this).attr('rel'); //Get Popup Name
  26. var popURL = $(this).attr('href'); //Get Popup href to define size
  27. var query= popURL.split('?');
  28. var dim= query[1].split('&');
  29. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  30. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  31. var popMargTop = ($('#' + popID).height() + 80) / 2;
  32. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  33. //Apply Margin to Popup
  34. $('#' + popID).css({
  35. 'margin-top' : -popMargTop,
  36. 'margin-left' : -popMargLeft
  37. });
  38. $('body').append('<div id="fade"></div>');
  39. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  40. return false;
  41. });
  42. $('a.close, #fade').live('click', function() {
  43. $('#fade , .popup_block').fadeOut(function() {
  44. $('#fade, a.close').remove(); //fade them both out
  45. });
  46. return false;
  47. });
  48. });
  49. </script>
  50.  
  51. <!--------------------- FONT AWESOME --------------------->
  52.  
  53. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  54.  
  55. <!---------------------TOOLTIP------------------->
  56.  
  57. </script><!--START TOOLTIP BY MALIHU--><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script><script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script><script>
  58. (function($){
  59. $(document).ready(function(){
  60. $("a[title]").style_my_tooltips({
  61. tip_follows_cursor:true,
  62. tip_delay_time:90,
  63. tip_fade_speed:600,
  64. attribute:"title"
  65. });
  66. });
  67. })(jQuery);
  68.  
  69. </script>
  70.  
  71. <!---------------------TABBED POP UP------------------->
  72.  
  73. <script>
  74.  
  75. $(document).ready(function(){
  76. $("ul#tabs li").click(function(e){
  77. if (!$(this).hasClass("active")) {
  78. var tabNum = $(this).index();
  79. var nthChild = tabNum+1;
  80. $("ul#tabs li.active").removeClass("active");
  81. $(this).addClass("active");
  82. $("ul#tab li.active").removeClass("active");
  83. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  84. }
  85. });
  86. });
  87. </script>
  88.  
  89. <!---------------------DROP DOWN VERSES ------------------->
  90.  
  91. <script type="text/javascript" src="http://static.tumblr.com/3ikgvxs/0TGl4zgpu/jquery.min.js"></script>
  92. <script type="text/javascript">
  93. $(document).ready(function(){
  94. $(".links_body").hide();
  95. $(".links_head").click(function(){
  96. $(this).next(".links_body").slideToggle('fast');
  97. }); }); </script>
  98.  
  99.  
  100. <!---------------------GOOGLE FONTS ------------------->
  101.  
  102. <!--font-family: 'Karma', serif; -->
  103. <link href="https://fonts.googleapis.com/css?family=Karma" rel="stylesheet">
  104.  
  105. <!--font-family: 'Abel', sans-serif; -->
  106. <link href="https://fonts.googleapis.com/css?family=Abel" rel="stylesheet">
  107.  
  108. <!--font-family: 'Lovers Quarrel', cursive; -->
  109. <link href="https://fonts.googleapis.com/css?family=Lovers+Quarrel" rel="stylesheet">
  110.  
  111. <!--font-family: 'Parisienne', cursive; -->
  112. <link href="https://fonts.googleapis.com/css?family=Parisienne" rel="stylesheet">
  113.  
  114.  
  115.  
  116.  
  117. <style type="text/css">
  118.  
  119. /* --------------------SCROLLBAR------------------ */
  120.  
  121. ::-webkit-scrollbar-thumb{
  122. background-color: transparent;
  123. border: 1px solid transparent;
  124. height:0px; }
  125.  
  126. ::-webkit-scrollbar {
  127. height:0px;
  128. width: 0px;
  129. background-color: transparent; }
  130.  
  131. /* --------------------BODY------------------ */
  132.  
  133. body {
  134. background-color:#000;
  135. background-image:url('https://static.tumblr.com/v91qshw/eD6p91ge2/untitled.png');
  136. background-repeat:no-repeat;
  137. background-position:fixed;
  138. background-attachment:fixed;
  139. font-family:'Karma', serif;
  140. text-align:justify;
  141. font-size:11px;
  142. color:#aeaeae;
  143. font-weight:100%; }
  144.  
  145.  
  146. /* --------------------SMALL/SUB/SUP------------------ */
  147.  
  148. small, sub, sup {
  149. font-size:100%;
  150. }
  151.  
  152.  
  153. /* --------------------CONTAINER------------------ */
  154.  
  155. #container {
  156. position:absolute;
  157. background:transparent;
  158. left:638px;
  159. top:147px;
  160. height:450px;
  161. width:348px;
  162. text-align:justify;
  163. line-height:200%;
  164. word-spacing:3px;
  165. margin:auto;
  166. position:fixed;
  167. overflow-y:scroll;
  168. overflow-x:hidden;
  169. -webkit-mask-image: -webkit-gradient( /* GRADIENT ON THE BOTTOM */
  170. linear, center 75%, center bottom,
  171. from(rgba(0,0,0,20)),
  172. to(rgba(20,0,0,0)));
  173. opacity:1;
  174. opacity:0;/*set this as '1' if you'd like the posts to always appear*/
  175. -webkit-transition: all 0.6s ease-out;
  176. -moz-transition: all 0.6s ease-out;
  177. transition: all 0.6s ease-out;
  178. -o-transition:all 0.6s ease;
  179. -ms-transition: all 0.6s ease-in-out;
  180. }
  181.  
  182. #container:hover {
  183. opacity: 1; /*this makes the posts appear on hover if you choose to keep them on '0' opacity when not on hover*/
  184. -webkit-transition: all 0.6s ease-out;
  185. -moz-transition: all 0.6s ease-out;
  186. transition: all 0.6s ease-out;
  187. -o-transition:all 0.6s ease;
  188. -ms-transition: all 0.6s ease-in-out;
  189. }
  190.  
  191.  
  192. /* --------------------POSTS------------------ */
  193.  
  194. .posts {
  195. width:330px;
  196. background-color:transparent;
  197. padding:10px;
  198. padding-top:20px;
  199. margin-bottom:30px; }
  200.  
  201. img {
  202. max-width:100%;
  203. border:none; }
  204.  
  205. .caption img {
  206. max-width:100%;
  207. height:auto; }
  208.  
  209. .posts img {
  210. max-width:100%;
  211. margin-top:5px;
  212. margin-bottom:5px;}
  213.  
  214.  
  215. /* --------------------LINKS IN POSTS------------------ */
  216.  
  217. a {
  218. text-decoration:none;
  219. font-family: 'Abel', sans-serif;
  220. font-size:14px;
  221. text-transform:none;
  222. outline:none;
  223. -moz-outline-style:none;
  224. color:#00aac4;
  225. text-shadow:1px 1px 1px #000;
  226. -moz-transition-duration:0.7s;
  227. -webkit-transition-duration:0.7s;
  228. -o-transition-duration:0.7s; }
  229.  
  230. a:hover {
  231. text-decoration:none;
  232. outline:none;
  233. -moz-outline-style:none;
  234. color:#000;
  235. text-shadow: #fff 0 0 3px;
  236. text-decoration:none; }
  237.  
  238. /* --------------------BOLD/ITALIC/BIG------------------ */
  239.  
  240. b, strong, u {
  241. font-size:14px;
  242. font-family: 'Abel', sans-serif;
  243. text-transform:uppercase;
  244. color:white;
  245. text-shadow: 1px 1px 1px #aeaeae; }
  246.  
  247. i, em {
  248. color:white;
  249. text-transform:lowercase;
  250. font-family: 'Parisienne', cursive;
  251. font-size:20px;
  252. line-height:120%;
  253. text-shadow: 1px 1px 1px #aeaeae; }
  254.  
  255. big {
  256. font-size:14px;
  257. text-transform:uppercase;
  258. letter-spacing:2px;
  259. font-family: 'Karma', serif;
  260. color:#aeaeae; }
  261.  
  262. /* --------------------BLOCKQUOTE------------------ */
  263.  
  264. blockquote {
  265. padding:5px;
  266. margin:1px 1px 1px 1px;
  267. border-left:1px solid #aeaeae; }
  268.  
  269. blockquote img {
  270. max-width:100%;
  271. height:auto; }
  272.  
  273. /* --------------------HEADERS------------------ */
  274.  
  275. h1 {
  276. font-weight:normal;
  277. font-size:22px;
  278. text-align:center;
  279. font-family: 'Abel', sans-serif;
  280. color:#aeaeae;
  281. line-height:18px;
  282. text-transform:uppercase;
  283. line-height:110%;
  284. text-shadow: 1px 1px 1px #000; }
  285.  
  286. h2 {
  287. font-weight:normal;
  288. font-size:15px;
  289. text-align:center;
  290. font-family: 'Abel', sans-serif;
  291. line-height:18px;
  292. text-transform:uppercase;}
  293.  
  294. /* --------------------INFO & TAGS------------------ */
  295.  
  296. #info {
  297. width:auto;
  298. height:25px;
  299. padding: 5px 5px 8px 5px;
  300. font-family: 'Abel', sans-serif; /* FONT FOR INFO */
  301. background-color:transparent; /* INFO BACKGROUND COLOR */
  302. background-image:url('https://static.tumblr.com/w5acv5l/nKtp5xa0p/veradero_bg.png'); /* INFO BACKGROUND */
  303. background-repeat:repeat;
  304. background-attachment:fixed;
  305. border:solid 1px #aeaeae; /* INFO BORDER */
  306. text-transform:uppercase;
  307. text-align:center;
  308. overflow-y:scroll;
  309. word-spacing:10px;
  310. font-size:12px;
  311. position:relative;, }
  312.  
  313. #info a {
  314. color:#fff;
  315. font-style:normal;}
  316.  
  317.  
  318. #info a:hover {
  319. color:#000;
  320. transition-duration:0.9s;
  321. -webkit-transition-duration:0.9s;
  322. -o-transition-duration:0.9s;}
  323.  
  324. .infooutline {
  325. width:auto;
  326. height:auto;
  327. padding:2px 2px;
  328. border:1px dashed #aeaeae;
  329. background:#fff;
  330. background-attachment:fixed;
  331. background-color:transparent;
  332. background-repeat:repeat;
  333. font-style:normal;
  334. line-height:120%;
  335. font-size:10px;
  336. opacity:1;
  337. text-align:right;
  338. -moz-transition-duration:0.5s;
  339. -webkit-transition-duration:0.5s;
  340. -o-transition-duration:0.5s;}
  341.  
  342. .tags {
  343. background:transparent;
  344. text-align:right;
  345. font-family: 'Abel', sans-serif;
  346. font-size:8px;
  347. padding-top:5px;
  348. padding-bottom:5px;
  349. word-spacing:3px;
  350. height:auto;
  351. width:auto; }
  352.  
  353.  
  354. .tags a{
  355. font-size:10px;
  356. font-family: 'Abel', sans-serif;
  357. text-transform:none;
  358. color:#fff;
  359. text-shadow: 1px 1px 1px #000;
  360. -moz-transition-duration:0.2s;
  361. -webkit-transition-duration:0.2s;
  362. -o-transition-duration:0.2s; }
  363.  
  364. .tags a:hover{
  365. color:#fff;
  366. text-decoration:none;
  367. -moz-transition-duration:0.2s;
  368. -webkit-transition-duration:0.2s;
  369. -o-transition-duration:0.2s; }
  370.  
  371.  
  372. /* --------------------LINK ANIMATIONS------------------ */
  373.  
  374.  
  375. .link2animated{
  376. -webkit-animation-name: scalex1;
  377. -webkit-animation-duration:2s;
  378. -webkit-animation-iteration-count:infinite;
  379. -webkit-animation-timing-function:ease-in-out;
  380. -moz-animation-name: scale;
  381. -moz-animation-duration:2s;
  382. -moz-animation-iteration-count:infinite;
  383. -moz-animation-timing-function:ease-in-out;
  384. }
  385.  
  386. @-webkit-keyframes scalex1{
  387. from {-webkit-transform: scale(3);}
  388. 45% {-webkit-transform: scale(2.5);}
  389. to {-webkit-transform: scale(3);}
  390. }
  391.  
  392. @-moz-keyframes scale1{
  393. from {-webkit-transform: scale(0);}
  394. 45% {-webkit-transform: scale(0);}
  395. to {-webkit-transform: scale(0);}
  396. }
  397.  
  398. .link3animated{
  399. -webkit-animation-name:scalex2;
  400. -webkit-animation-duration:3s;
  401. -webkit-animation-iteration-count:infinite;
  402. -webkit-animation-timing-function:ease-in-out;
  403. -moz-animation-name: scale;
  404. -moz-animation-duration:3s;
  405. -moz-animation-iteration-count:infinite;
  406. -moz-animation-timing-function:ease-in-out;
  407. }
  408.  
  409. @-webkit-keyframes scalex2{
  410. from {-webkit-transform: scale(2);}
  411. 45% {-webkit-transform: scale(3);}
  412. to {-webkit-transform: scale(2);}
  413. }
  414.  
  415. @-moz-keyframes scale2{
  416. from {-webkit-transform: scale(0);}
  417. 45% {-webkit-transform: scale(0);}
  418. to {-webkit-transform: scale(0);}
  419. }
  420.  
  421. .link4animated{
  422. -webkit-animation-name: scalex4;
  423. -webkit-animation-duration:4s;
  424. -webkit-animation-iteration-count:infinite;
  425. -webkit-animation-timing-function:ease-in-out;
  426. -moz-animation-name: scale;
  427. -moz-animation-duration:4s;
  428. -moz-animation-iteration-count:infinite;
  429. -moz-animation-timing-function:ease-in-out;
  430. }
  431.  
  432. @-webkit-keyframes scalex4{
  433. from {-webkit-transform: scale(3);}
  434. 45% {-webkit-transform: scale(2.5);}
  435. to {-webkit-transform: scale(3);}
  436. }
  437.  
  438. @-moz-keyframes scale4{
  439. from {-webkit-transform: scale(0);}
  440. 45% {-webkit-transform: scale(0);}
  441. to {-webkit-transform: scale(0);}
  442. }
  443.  
  444. .link5animated{
  445. -webkit-animation-name: scalex5;
  446. -webkit-animation-duration:3s;
  447. -webkit-animation-iteration-count:infinite;
  448. -webkit-animation-timing-function:ease-in-out;
  449. -moz-animation-name: scale;
  450. -moz-animation-duration:3s;
  451. -moz-animation-iteration-count:infinite;
  452. -moz-animation-timing-function:ease-in-out;
  453. }
  454.  
  455. @-webkit-keyframes scalex5{
  456. from {-webkit-transform: scale(1);}
  457. 45% {-webkit-transform: scale(.75);}
  458. to {-webkit-transform: scale(1);}
  459. }
  460.  
  461. @-moz-keyframes scale5{
  462. from {-webkit-transform: scale(0);}
  463. 45% {-webkit-transform: scale(0);}
  464. to {-webkit-transform: scale(0);}
  465. }
  466.  
  467. /* --------------------MOVEABLE LINKS------------------ */
  468.  
  469. /*THIS IS YOUR REFRESH AKA THE TEXT AT THE TOP OF THE CONTAINERS */
  470.  
  471.  
  472. #home {
  473. position:fixed;
  474. top:400px;
  475. left:200px;
  476. text-shadow:2px 1px 2px transparent;
  477. text-transform:lowercase;
  478. text-align:none;
  479. font-style:none;
  480. font-family:'Karma', serif;
  481. font-size:40px;
  482. line-height:0%;
  483. transform: rotate(20deg); }
  484.  
  485. #home a{
  486. margin-right:0px;
  487. color:#d0d0d0;
  488. text-shadow:2px 1px 2px transparent;
  489. -webkit-filter:blur(0px);
  490. -moz-transition-duration:.7s;
  491. -webkit-transition-duration:.7s;
  492. -o-transition-duration:.7s; }
  493.  
  494. #home a:hover {
  495. color: transparent;
  496. text-shadow: #d0d0d0 0 0 0px;
  497. -webkit-filter:blur(0px);
  498. -moz-transition-duration:1s;
  499. -webkit-transition-duration:1s;
  500. -o-transition-duration:1s; }
  501.  
  502. #asklink {
  503. position:fixed;
  504. top:600px;
  505. left:300px;
  506. text-shadow:2px 1px 2px transparent;
  507. text-transform:lowercase;
  508. text-align:none;
  509. font-style:none;
  510. font-family:'Karma', serif;
  511. font-size:40px;
  512. line-height:0%;
  513. transform: rotate(20deg); }
  514.  
  515. #asklink a{
  516. margin-right:0px;
  517. color:#d0d0d0;
  518. text-shadow:2px 1px 2px transparent;
  519. -webkit-filter:blur(0px);
  520. -moz-transition-duration:.7s;
  521. -webkit-transition-duration:.7s;
  522. -o-transition-duration:.7s; }
  523.  
  524. #asklink a:hover {
  525. color: transparent;
  526. text-shadow: #d0d0d0 0 0 0px;
  527. -webkit-filter:blur(0px);
  528. -moz-transition-duration:1s;
  529. -webkit-transition-duration:1s;
  530. -o-transition-duration:1s; }
  531.  
  532.  
  533. #law {
  534. position:fixed;
  535. top:530px;
  536. left:205px;
  537. text-shadow:2px 1px 2px transparent;
  538. text-transform:lowercase;
  539. text-align:none;
  540. font-style:none;
  541. font-family:'Karma', serif;
  542. font-size:35px;
  543. line-height:0%;
  544. transform: rotate(0deg); }
  545.  
  546. #law a{
  547. margin-right:0px;
  548. color:#d0d0d0;
  549. text-shadow:2px 1px 2px transparent;
  550. -webkit-filter:blur(0px);
  551. -moz-transition-duration:.7s;
  552. -webkit-transition-duration:.7s;
  553. -o-transition-duration:.7s; }
  554.  
  555. #law a:hover {
  556. color: transparent;
  557. text-shadow: #d0d0d0 0 0 0px;
  558. -webkit-filter:blur(0px);
  559. -moz-transition-duration:1s;
  560. -webkit-transition-duration:1s;
  561. -o-transition-duration:1s; }
  562.  
  563. #nav {
  564. position:fixed;
  565. top:500px;
  566. left:290px;
  567. text-shadow:2px 1px 2px transparent;
  568. text-transform:lowercase;
  569. text-align:none;
  570. font-style:none;
  571. font-family:'Karma', serif;
  572. font-size:30px;
  573. line-height:0%;
  574. transform: rotate(-20deg); }
  575.  
  576. #nav a{
  577. margin-right:0px;
  578. color:#d0d0d0;
  579. text-shadow:2px 1px 2px transparent;
  580. -webkit-filter:blur(px);
  581. -moz-transition-duration:.7s;
  582. -webkit-transition-duration:.7s;
  583. -o-transition-duration:.7s; }
  584.  
  585. #nav a:hover {
  586. color:#d0d0d0;
  587. text-shadow:2px 1px 2px transparent;
  588. -webkit-filter:blur(0px);
  589. -moz-transition-duration:1s;
  590. -webkit-transition-duration:1s;
  591. -o-transition-duration:1s; }
  592.  
  593.  
  594. #credit {
  595. position:absolute;
  596. position:fixed;
  597. font-family: Abel', sans-serif;
  598. text-transform:bold;
  599. width:auto;
  600. height:auto;
  601. bottom:25px;
  602. right:10px;
  603. padding: 2px 2px 2px;
  604. font-size:20px;
  605. line-height:100%;
  606. z-index:99999999;
  607. letter-spacing: 1px;}
  608.  
  609. /* --------------------CREDIT------------------ */
  610.  
  611. #credit a {
  612. width:30px;
  613. line-height:100%;
  614. margin-bottom:10px;
  615. opacity:1;
  616. color:#aeaeae;
  617. letter-spacing:0px;
  618. text-decoration:none; }
  619.  
  620. #credit a:hover {
  621. color: #696969;
  622. width:60px;
  623. text-shadow: 0 0 5px #eee;
  624. -webkit-filter: blur(1px) ;
  625. -webkit-transition: 0.7s ease-in;
  626. -moz-transition: }
  627.  
  628.  
  629. /* --------------------PAGINATION------------------ */
  630.  
  631. #pagination {
  632. position:fixed;
  633. font-size:40px;
  634. top:540px;
  635. left:250px;
  636. -webkit-transform: rotate(-75deg);}
  637.  
  638. #pagination a {
  639. width:140px;
  640. line-height:100%;
  641. color:#fff;
  642. font-size:30px;
  643. text-shadow:1px 1px 3px #aeaeae,
  644. text-decoration:none; }
  645.  
  646. #pagination a:hover {
  647. text-align:center;
  648. color:#8a8e91;
  649. width:40px;
  650. -moz-transition-duration:.9s;
  651. -webkit-transition-duration:.9s;
  652. -o-transition-duration:.9s; }
  653.  
  654. #paginationb {
  655. position:fixed;
  656. font-size:30px;
  657. top:540px;
  658. left:155px;
  659. -webkit-transform: rotate(-25deg);}
  660.  
  661. #paginationb a {
  662. width:140px;
  663. line-height:100%;
  664. color:#fff;
  665. font-size:30px;
  666. text-shadow:1px 1px 3px #aeaeae,
  667. text-decoration:none; }
  668.  
  669. #paginationb a:hover {
  670. text-align:center;
  671. color:#8a8e91;
  672. width:40px;
  673. -moz-transition-duration:.9s;
  674. -webkit-transition-duration:.9s;
  675. -o-transition-duration:.9s; }
  676.  
  677. /* --------------------ASKS------------------ */
  678.  
  679.  
  680. .ask {
  681. margin-top:10px;
  682. background-image:url('https://static.tumblr.com/w5acv5l/nKtp5xa0p/veradero_bg.png'); /* ASK BACKGROUND */
  683. background-repeat:repeat;
  684. background-attachment: fixed;
  685. border-top:solid 1px #aeaeae; }
  686.  
  687. .askerurl {
  688. height:15px;
  689. text-align:right;
  690. margin-top:-20px;}
  691.  
  692. .askerurl a {
  693. font-family: 'Lovers Quarrel', cursive;
  694. font-size:40px;
  695. text-transform:bold;
  696. letter-spacing:1px;
  697. color:#00aac4;
  698. text-align:right;
  699. text-shadow:1px 1px 3px #aeaeae, }
  700.  
  701. .askerurl a:hover {
  702. color:#000;
  703. text-shadow: #000 2px 0px 2px;
  704. letter-spacing: 1px;
  705. -moz-transition-duration:.9s;
  706. -webkit-transition-duration:.9s;
  707. -o-transition-duration:.9s; }
  708.  
  709. .question {
  710. text-align:right;
  711. height:35px;
  712. overflow-y:scroll;
  713. background-color:transparent;
  714. padding:5px 5px;
  715. letter-spacing: 2px;
  716. color:#fff; /* COLOR OF TEXT INSIDE ASK */
  717. text-shadow:1px 1px 1px #000;
  718. opacity: 1;
  719. padding-top:5px;
  720. margin-top:10px;
  721. margin-bottom:20px;
  722. border-bottom:solid center 1px #fff; }
  723.  
  724. /* --------------------QUOTES------------------ */
  725.  
  726. .quote {
  727. font-size:14px;
  728. letter-spacing:2px;
  729. text-align:center;
  730. border-bottom:solid 1px transparent;
  731. border-radius:25px;
  732. margin-bottom:5px;
  733. padding-bottom:5px; }
  734.  
  735. .quotesource {
  736. font-size:12px;
  737. letter-spacing:4px;
  738. text-align:right;
  739. margin-top:5px;
  740. margin-bottom:5px;
  741. text-transform:uppercase;
  742. font-style:bold;
  743. font-family: 'Karma', serif; }
  744.  
  745.  
  746. /* --------------------TABBED NAVIATION------------------ */
  747.  
  748. #tabbedpop {
  749. position:fixed;
  750. font-family: 'Abel', sans-serif;
  751. font-size:9px;
  752. margin-top:75px;
  753. margin-left:330px;
  754. width:200px;
  755. height:200px;
  756. color:#aeaeae;
  757. text-align:justify;
  758. opacity:1;
  759. padding: 5px 5px 5px;
  760. opacity:1;}
  761.  
  762. /* --------------------INFORMATION BOX------------------ */
  763.  
  764. #descriptionbox {
  765. background:transparent;
  766. top:54px;
  767. left:635px;
  768. position:fixed;
  769. font-family:'Abel', serif;
  770. font-size:12px;
  771. width:338px;
  772. height:62px;
  773. color:#aeaeae;
  774. text-align:center;
  775. opacity:1;
  776. overflow-y:scroll;
  777. padding: 5px 5px 5px;
  778. -moz-transition-duration:0.5s;
  779. -webkit-transition-duration:0.5s;
  780. -o-transition-duration:0.5s;}
  781.  
  782. #descriptionbox:hover {
  783. opacity:1;}
  784.  
  785. .descoutline {
  786. background:#fff;
  787. margin-top:40px;
  788. margin-left:40px;
  789. width:212px;
  790. height:162;
  791. padding:2px 2px;
  792. border:1px dashed #aeaeae;
  793. background:#fff;
  794. background-attachment:fixed;
  795. background-color:transparent;
  796. background-repeat:repeat;
  797. font-style:normal;
  798. line-height:120%;
  799. font-size:10px;
  800. opacity:1;
  801. text-align:right;
  802. -moz-transition-duration:0.5s;
  803. -webkit-transition-duration:0.5s;
  804. -o-transition-duration:0.5s;}
  805.  
  806. .descoutline:hover {
  807. opacity:1; }
  808.  
  809. /* --------------------TITLES------------------ */
  810.  
  811. #titles {
  812. font-family: 'Abel', sans-serif;
  813. height:auto;
  814. font-size:14px;
  815. padding: 3px 3px;
  816. margin: 5px 0px 0px;
  817. letter-spacing: 1px;
  818. text-shadow: 1px 1px 1px #000;
  819. background: url('https://static.tumblr.com/w5acv5l/nKtp5xa0p/veradero_bg.png');
  820. background-repeat:repeat;
  821. background-attachment:fixed;
  822. border:1px solid #aeaeae;
  823. line-height: normal;
  824. text-transform: uppercase;
  825. color: #fff;
  826. text-align: center;
  827. width:auto; }
  828.  
  829. #asktitle {
  830. font-family: 'Abel', sans-serif;
  831. font-size: 16px;
  832. padding: 3px 3px;
  833. margin: 5px 0px 0px;
  834. letter-spacing: 1px;
  835. text-shadow: 1px 1px 1px #000;
  836. background: url('https://static.tumblr.com/w5acv5l/nKtp5xa0p/veradero_bg.png');
  837. background-repeat:repeat;
  838. background-attachment:fixed;
  839. border:1px solid #aeaeae;
  840. line-height: normal;
  841. text-transform: uppercase;
  842. color:#fff;
  843. text-align: center;
  844. width:auto; }
  845.  
  846. /* --------------------PRE WRAP------------------ */
  847.  
  848. pre {
  849. font-family: 'Karma', serif;
  850. text-transform:uppercase;
  851. font-style:normal;
  852. white-space: pre-wrap;
  853. white-space: -moz-pre-wrap;
  854. white-space: -pre-wrap;
  855. white-space: -o-pre-wrap;
  856. word-wrap: break-word;
  857. }
  858.  
  859.  
  860. /* --------------------TOOL TIP------------------ */
  861.  
  862. #s-m-t-tooltip {
  863. max-width: 500px;
  864. padding: 5px 8px;
  865. margin: 10px;
  866. font-size: 10px;
  867. letter-spacing: 1px;
  868. font-family: 'Nightingale';
  869. text-transform:lowercase;
  870. background-repeat:repeat;
  871. background-attachment:fixed;
  872. color:#fff;
  873. z-index:9999999;
  874. transition: 0.5s ease-in-out;
  875. -webkit-transition: 0.5s ease-in-out;
  876. -moz-transition: 0.5s ease-in-out;
  877. -ms-transition: 0.5s ease-in-out;
  878. -o-transition: 0.5s ease-in-out; }
  879.  
  880.  
  881. /* --------------------POP UP BLOCK------------------ */
  882.  
  883. .popup_block{
  884. display:none;
  885. background:#000000;
  886. padding:20px;
  887. height:426px;
  888. width:288px;
  889. position:fixed;
  890. z-index:99999;
  891. top:401px;
  892. left:561px;
  893. overflow-y:scroll;
  894. overflow-x:hidden;
  895. font-family:'Karma', serif;
  896. font-size:12px;
  897. text-transform:lowercase;
  898. padding:10px;
  899. overflow-x:hidden;
  900. overflow-x:hidden; }
  901.  
  902. *html #fade {position: absolute;}
  903. *html .popup_block {position: absolute;}
  904. #fade {
  905. display:none;
  906. position:fixed;
  907. left:0px;
  908. top:0px;
  909. width:100%;
  910. height:100%; }
  911.  
  912.  
  913. /* --------------------TABBED TITLES ON POP UP------------------ */
  914.  
  915. ul#tabs {
  916. list-style-type: none;
  917. text-align:justify;
  918. font-size:11px;
  919. font-family: 'Abel', sans-serif;
  920. letter-spacing:1px; }
  921.  
  922. ul#tabs li {
  923. background:#000;
  924. background-image:url('');
  925. background-repeat:repeat;
  926. background-attachment:fixed;
  927. border:1px solid #aeaeae;
  928. width:75px;
  929. height:15px;
  930. display:inline-block;
  931. cursor: pointer;
  932. padding:5px 5px 5px;
  933. font-size:9px;
  934. font-family: 'Abel', sans-serif;
  935. text-transform:uppercase;
  936. text-align:center;
  937. line-height:200%;
  938. margin-bottom:5px;
  939. color:#fff;
  940. text-shadow: 1px 1px 1px #000; }
  941.  
  942. ul#tabs li:hover {
  943. background-color:#00aac4;
  944. border:1px solid #000;
  945. color:#fff; }
  946.  
  947. ul#tabs li.active {
  948. background:#00aac4;
  949. background-repeat:repeat;
  950. background-attachment:fixed;
  951. border:1px solid #000;
  952. color:#fff;
  953. display: inline-block;
  954. padding: 5px 5px 5px;
  955. font-size:9px;
  956. text-transform:uppercase; }
  957.  
  958. ul#tab {
  959. list-style-type: none;
  960. margin: 0;
  961. padding: 0; }
  962.  
  963. ul#tab li {
  964. display: none; }
  965.  
  966. ul#tab li.active {
  967. display: block; }
  968.  
  969. /* --------------------NAVIGATION LINKS------------------ */
  970.  
  971. .popuptags {
  972. padding-top:5px;
  973. text-align:center; }
  974.  
  975. .popuptags a {
  976. display:inline-block;
  977. width:75px;
  978. height:15px;
  979. margin:2px;
  980. padding:4px 2px 2px;
  981. text-align:center;
  982. background:transparent;
  983. background-position:fixed;
  984. background-repeat:repeat;
  985. background-image: url('');
  986. border:1px solid #aeaeae;
  987. font-size:9px;
  988. font-family: 'Abel', sans-serif;
  989. text-transform:uppercase; }
  990.  
  991.  
  992. .popuptags a:hover {
  993. background-color:transparent;
  994. color:#fff; }
  995.  
  996. /* --------------------DROP DOWN VERSE------------------ */
  997.  
  998. .links_list {
  999. margin:0px;
  1000. padding:0px;
  1001. width:100%; }
  1002.  
  1003. .links_head {
  1004. font-family: 'Abel', sans-serif;
  1005. height:auto;
  1006. font-size:14px;
  1007. padding: 3px 3px;
  1008. margin: 5px 0px 0px;
  1009. letter-spacing: 1px;
  1010. text-shadow: 1px 1px 1px #000;
  1011. background: url('https://static.tumblr.com/w5acv5l/nKtp5xa0p/veradero_bg.png');
  1012. background-repeat:repeat;
  1013. background-attachment:fixed;
  1014. border:1px solid #aeaeae;
  1015. line-height: normal;
  1016. text-transform: uppercase;
  1017. color:#fff;
  1018. text-align: center;
  1019. width:auto; }
  1020.  
  1021. .links_body {
  1022. padding:10px;
  1023. text-align:left;
  1024. display:none; }
  1025.  
  1026. /* --------------------FONT FACE------------------ */
  1027.  
  1028. @font-face {
  1029. font-family: 'Nightingale';
  1030. src: url('https://static.tumblr.com/b2tj7wo/77Dp47rtw/nightingale_sample.ttf');
  1031. }
  1032.  
  1033. @font-face {
  1034. font-family: 'fontface';
  1035. src: url(data:font/ttf;base64,[https://static.tumblr.com/b2tj7wo/VPWp47rsw/nightingale.css]) format('truetype');
  1036. font-weight: normal;
  1037. font-style: normal;
  1038. }
  1039.  
  1040.  
  1041.  
  1042. </style>
  1043.  
  1044.  
  1045. <body>
  1046.  
  1047. <!-- THIS IS THE INFORMATION IN THE HOVER TEXT BOX -->
  1048.  
  1049. <div id="descriptionbox">
  1050. selective & private<br>
  1051. <b>STARLORD</b><br>
  1052. of <small><i>guardians of the galaxy.</i></small><br>mcu based with comic influences.<br>
  1053. cherished by eli.<br>
  1054. please read <b>RULES & ABOUT</b> before interracting.<p>
  1055.  
  1056. </div></div></div>
  1057.  
  1058.  
  1059. <div id="askbox" class="popup_block">
  1060. <div id="asktitle">ASK PHRASE HERE</div><p>
  1061. <iframe frameborder="0" height="270" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  1062. </div>
  1063.  
  1064.  
  1065. <div id="rules" class="popup_block">
  1066. <div id="titles">RULES</div><p>
  1067.  
  1068. RULES CAN BE WRITTEN IN HERE
  1069.  
  1070.  
  1071. </div></div>
  1072.  
  1073. <!-- NAVIGATION / OR SECOND POP UP W/ TABS -->
  1074.  
  1075. <div id="navigation" class="popup_block">
  1076. <div id="tabbedpop"><p>
  1077. <ul id="tabs">
  1078.  
  1079. <li class="active">ABOUT.</li>
  1080.  
  1081. <li>VERSES.</li>
  1082.  
  1083. <li>LINKS.</li>
  1084.  
  1085. <li>MAINS.</li>
  1086.  
  1087. <li>MUN.</li>
  1088. </ul>
  1089. </div>
  1090.  
  1091. <ul id="tab">
  1092. <li class="active">
  1093.  
  1094. <!-- THIRD/ABOUT TAB STARTS HERE -->
  1095.  
  1096. <div id="titles">BASICS</div><p>
  1097. <p><strong>FULL NAME:&nbsp;</strong>NAME</br>
  1098. <strong>NICKNAME[S]:</strong></b>NICKNAME <br>
  1099. <strong>BIRTH DATE:</strong>&nbsp;DATE<br>
  1100. <strong>ZODIAC:</strong>ZODIAC<br>
  1101. <strong>AGE:</strong>&nbsp;AGE</br>
  1102. <strong>ETHNICITY:</strong>&nbsp;ETHNICITY</br>
  1103. <strong>SPECIES:&nbsp;</strong>SPECIES</br>
  1104. <strong>GENDER:</strong>&nbsp;GENDER</br>
  1105. <strong>SEXUAL ORIENTATION:</strong>&nbsp;SEXUAL ORIENTATION</br>
  1106. <strong>ROMANTIC ORIENTATION:</strong>&nbsp;ROMANTIC ORIENTATION</br>
  1107. <strong>SPOKEN LANGUAGE:</strong>&nbsp;LANGUAGE </br>
  1108. <strong>OCCUPATION:</strong>&nbsp;JOB</br>
  1109. <strong>AFFILIATIONS:</strong>&nbsp; CLUBS</br>
  1110.  
  1111. <p><div id="titles">RELATIONSHIPS</div><p>
  1112. <p><strong>PARENTS:&nbsp;</strong>NAME (Mother), NAME </br>
  1113. <strong>SIBLINGS:&nbsp;</strong>NAMES</br>
  1114. <strong>SIGNIFICANT OTHER:</strong>&nbsp;VERSE DEPENDENT</br>
  1115.  
  1116. <p><div id="titles">PHYSICAL TRAITS</div><p>
  1117. <strong>EYE COLOUR:&nbsp;</strong>COLOUR</br>
  1118. <strong>HAIR COLOUR:</strong>&nbsp;COLOUR</br>
  1119. <strong>HEIGHT:</strong>&nbsp;HEIGHT</br>
  1120.  
  1121. <p><div id="titles">BIOGRAPHY</div><p>
  1122.  
  1123. <h1>CHILDHOOD</h1><p>
  1124. <p>whatever you want here
  1125.  
  1126. <h1>YOU CAN DO MULTIPLE THINGS</h1><p>
  1127.  
  1128. <p>to make your bio more organized </p>
  1129.  
  1130.  
  1131. <div id="titles">SKILLS &amp;&amp; ABILITIES</div><p>
  1132. <center>
  1133. skills can be written</br>
  1134. here or any abilities</br>
  1135. </center>
  1136. <p>
  1137.  
  1138.  
  1139. <div id="titles">PERSONALITY</div><p>
  1140. write about your characters personality!!</p>
  1141.  
  1142. </li>
  1143. <!-- THIRD/ABOUT TAB ENDS HERE -->
  1144.  
  1145.  
  1146. <!--FIFTH TAB/VERSES STARTS HERE -->
  1147.  
  1148. <li>
  1149. <p><p><p>
  1150. <div class="links_list">
  1151. <div class="links_head">MAIN VERSE</div>
  1152. <div class="links_body">
  1153. <center>
  1154. <a href="/VERSE TAG"><big>NAME OF VERSE.</big></a></center><p><blockquote>
  1155.  
  1156. GIVE YOUR VERSE A DESCRIPTION
  1157.  
  1158. </blockquote><br>
  1159. <p><p><p></div>
  1160.  
  1161. <p>
  1162.  
  1163. <p>
  1164. </li>
  1165.  
  1166. <!--FIFTH TAB/VERSES ENDS HERE -->
  1167.  
  1168. <!--SIXTH TAB/LINKS STARTS HERE -->
  1169.  
  1170. <li>
  1171. <div class="popuptags">
  1172. <div class="popuptags">
  1173. <div id="titles">LINKS</div><p><p><p>
  1174. <a href="LINK">LINK.</a>
  1175. <a href="LINK">LINK.</a>
  1176. <a href="LINK">LINK.</a></br>
  1177. <a href="LINK">LINK.</a>
  1178. <a href="LINK">LINK.</a>
  1179. <a href="LINK">LINK.</a><br>
  1180.  
  1181.  
  1182. </li>
  1183.  
  1184. <!-- SIXTH TAB/LINKS ENDS HERE -->
  1185.  
  1186. <!-- SEVENTH TAB / MUN PAGE STARTS HERE -->
  1187. <li>
  1188. <div id="titles">MAINS</div>
  1189. <p><p>
  1190. <img src="https://78.media.tumblr.com/db9afbec73ed6b5c5354c6b0695db7bd/tumblr_inline_p57hec1unw1vdv5k7_540.png" align="left" style="height:70px;width:70px;padding-right:5px;padding-bottom:0px;">
  1191.  
  1192. <big><a href="LINK HERE">NAME.</a></big>
  1193.  
  1194. <br><br>
  1195.  
  1196. <b>RELATIONSHIP:</b>TBA <br>
  1197. <b>VERSE:</b> TBA
  1198.  
  1199. <br><br><br>
  1200.  
  1201.  
  1202. <div id="titles">EXCLUSIVES</div>
  1203. <p><p>
  1204. <img src="https://78.media.tumblr.com/db9afbec73ed6b5c5354c6b0695db7bd/tumblr_inline_p57hec1unw1vdv5k7_540.png" align="left" style="height:70px;width:70px;padding-right:5px;padding-bottom:0px;">
  1205. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">TBA.</a></big>
  1206.  
  1207. <br><br>
  1208.  
  1209. woah hey look an empy spot....maybe you can fill it ;)
  1210.  
  1211. <br><br>
  1212.  
  1213. <div id="titles">SHIP EXCLUSIVE</div>
  1214. <p><p>
  1215. <img src="https://78.media.tumblr.com/db9afbec73ed6b5c5354c6b0695db7bd/tumblr_inline_p57hec1unw1vdv5k7_540.png" align="left" style="height:70px;width:70px;padding-right:5px;padding-bottom:0px;">
  1216. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">TBA.</a></big>
  1217.  
  1218. <br><br>
  1219.  
  1220. woah hey look an empy spot....maybe you can fill it ;)
  1221.  
  1222. <br><br>
  1223.  
  1224. </li>
  1225.  
  1226. <!--SEVENTH TAB / MUN PAGE ENDS HERE -->
  1227.  
  1228. <li>
  1229. <div id="titles">MUN</div><p><p>
  1230. HERE YOU CAN WRITE A LITTLE ABOUT YOURSELF
  1231. <p>
  1232.  
  1233. </li>
  1234.  
  1235. </div></div></div></div></div></div></div></div></div></div>
  1236.  
  1237.  
  1238.  
  1239.  
  1240.  
  1241. <div id="home"><a href="/" title="refresh.">★</a></div>
  1242. <div id="asklink"><div class="link2animated"><a href="#?w=328" rel="askbox" class="poplight" title="comms.">★️</a></div></div>
  1243. <div id="law"><div class="link3animated"><a href="#?w=328" rel="rules" class="poplight" title="laws.">★️</a></div></div>
  1244. <div id="nav"><div class="link4animated"><a href="#?w=328" rel="navigation" class="poplight" title="atlas.">★</a></div></div>
  1245. <div id="credit"><a href="http://awokenhope.tumblr.com/" title="THEME BY AWOKENHOPE.">『C』
  1246. </a></div>
  1247.  
  1248. <div id="pagination">{block:Pagination}
  1249. {block:NextPage}<a class="forward"> <a href="{NextPage}" title="Next Page">⇲</a>{/block:NextPage}{/block:Pagination}
  1250. </div>
  1251.  
  1252. <div id="paginationb">{block:Pagination}
  1253. {block:PreviousPage}<a class="back"> <a href="{PreviousPage}" title"Previous Page">⇱</a>{/block:PreviousPage}{/block:Pagination}</a></a>
  1254. </div>
  1255.  
  1256. <div id="container">
  1257. {block:Posts}
  1258. <div class="posts">
  1259.  
  1260. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  1261.  
  1262. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" width="270px">{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1263. {block:Photoset}<center>{Photoset}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1264.  
  1265.  
  1266. {block:Quote}<div class="quote">❛ {Quote} ❜</div>{block:Source}<div class="quotesource">-{Source}</div>{/block:Source}{/block:Quote}
  1267.  
  1268. {block:Link}<a href="{URL}" class="link" {Target}>{Name}</a>{block:Description}{Description}{/block:Description}{/block:Link}
  1269.  
  1270. {block:Chat}{block:Title}{Title}</a>{/block:Title}
  1271. {block:Lines}<li>{block:Label}{Label}{/block:Label}{Line}</li>{/block:Lines}{/block:Chat}
  1272.  
  1273. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1274.  
  1275. {block:Audio}{AudioEmbed}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  1276.  
  1277.  
  1278. {block:Answer}
  1279.  
  1280. <div class="askpost">
  1281.  
  1282.  
  1283. <div class="ask">
  1284. <div class="askerurl">
  1285. <a href="{AskerURL}">{AskerName}</a>
  1286. </div>
  1287. <div class="question">
  1288. {Question}
  1289. </div>
  1290. </div>
  1291.  
  1292. {Answer}
  1293.  
  1294. </div>
  1295.  
  1296. {/block:Answer}
  1297.  
  1298.  
  1299. {block:Date}
  1300. <p>
  1301. <div class="infooutline">
  1302. <div id="info">
  1303. <a href="{Permalink}" title="{ShortMonth} {DayOfMonth}"> ★ </a>
  1304. <a href="{Permalink}" title="{NoteCount} notes"> ★ </a>
  1305. <a href='{ReblogParentURL}' title="via{ReblogParentURL}"> ★ </a>
  1306. <a href='{ReblogRootURL}' title="source{ReblogRootURL}"> ★ </a>
  1307. <a href='{ReblogURL}' title="Reblog"> ★ </a>
  1308. <div class="tags">
  1309. {block:HasTags}
  1310. {block:Tags} <a href="{TagURL}" title="{Tag}" data-tooltip="{Tag}" > {Tag} &nbsp; </a> {/block:Tags}
  1311. {/block:HasTags}</div></div>
  1312. {/block:Date}
  1313. </div>
  1314. </div>
  1315.  
  1316.  
  1317. <!-- {block:NoRebloggedFrom}
  1318. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  1319. {/block:NoRebloggedFrom} -->
  1320.  
  1321. {block:ContentSource}<!-- {SourceURL}
  1322. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  1323. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  1324. {/block:ContentSource}
  1325.  
  1326. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1327. {/block:Posts}
  1328.  
  1329. </body>
  1330. </html>
Add Comment
Please, Sign In to add comment