Advertisement
heartilys

PETALS! ( PAGE 01 / WOODSBEYOND )

Dec 27th, 2018
9,054
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.25 KB | None | 0 0
  1. <!--- PETALS ! ——— a muse page by @woodsbeyond / rosevois.
  2.  
  3. — edit / customize the theme to your heart's content! i've done my best to organize and include instructions to the best of my ability, but if you have trouble with anything, feel free to ask!
  4. — DO NOT delete the credit. if you add in a background image and it somehow obstructs the credit / makes it harder to see, you may adjust the position.
  5. — find a bug, or something that looks wonky when you start customizing it? let me know so i can adjust it!
  6.  
  7. COLOUR PALETTE ! ——— these are the colours i've used within the code. they are listed here so you can easily do a find + replace on them to edit in your preferred colour.
  8.  
  9. #d2d2d2 : grey. used for icon & container borders.
  10. #f0f0f0 : page background & title image border.
  11. #fafafa : container background, header image text, header image border.
  12. #bb8b86 : header text ( for character name when you click on the pop up ), bold, scrollbar, & connection name.
  13. #98b5ae : links, italics, & text line above muse navigation on pop up.
  14. #a9726d : muse navigation links on pop up.
  15. #373334 : text.
  16. #ededed : fade background on pop up. --->
  17.  
  18.  
  19. <!DOCTYPE html>
  20. <html>
  21. <head>
  22.  
  23. <title>PETALS, A MUSE PAGE.</title> <!--- Change the title of your page here --->
  24. <link rel="shortcut icon" href="{Favicon}">
  25. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  26.  
  27. <!-- POP UPS -->
  28.  
  29. <script type="text/javascript"
  30. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  31.  
  32. <script>
  33. $(document).ready(function() {
  34. //
  35. $('a.poplight[href^=#]').click(function() {
  36. var popID = $(this).attr('rel'); //Get Popup Name
  37. var popURL = $(this).attr('href'); //Get Popup href to define size
  38. var query= popURL.split('?');
  39. var dim= query[1].split('&');
  40. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  41. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  42. var popMargTop = ($('#' + popID).height() + 80) / 2;
  43. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  44. //Apply Margin to Popup
  45. $('#' + popID).css({
  46. 'margin-top' : -popMargTop,
  47. 'margin-left' : -popMargLeft
  48. });
  49. $('body').append('<div id="fade"></div>');
  50. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  51. return false;
  52. });
  53. $('a.close, #fade').live('click', function() {
  54. $('#fade , .popup_block').fadeOut(function() {
  55. $('#fade, a.close').remove(); //fade them both out
  56. });
  57. return false;
  58. });
  59. });
  60. </script>
  61.  
  62. <!-- TABS -->
  63.  
  64. <script>
  65.  
  66. $(document).ready(function(){
  67. $("ul#tabs li").click(function(e){
  68. if (!$(this).hasClass("active")) {
  69. var tabNum = $(this).index();
  70. var nthChild = tabNum+1;
  71. $("ul#tabs li.active").removeClass("active");
  72. $(this).addClass("active");
  73. $("ul#tab li.active").removeClass("active");
  74. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  75. }
  76. });
  77. });
  78.  
  79. </script>
  80.  
  81. <!-- TOOLTIPS -->
  82.  
  83. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  84. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  85. <script>
  86. (function($){
  87. $(document).ready(function(){
  88. $("[title],a[title],img[title]").style_my_tooltips({
  89. tip_follows_cursor:true,
  90. tip_delay_time:90,
  91. tip_fade_speed:600,
  92. attribute:"title"
  93. });
  94. });
  95. })(jQuery);
  96. </script>
  97.  
  98. <!--- FONT SCRIPTS --->
  99.  
  100. <link href="https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz" rel="stylesheet">
  101.  
  102. <!--- LINEAR ICONS --->
  103.  
  104. <link rel="stylesheet" href="https://cdn.linearicons.com/free/1.0.0/icon-font.min.css">
  105.  
  106. <style>
  107.  
  108. /* TOOLTIPS */
  109.  
  110. .tooltip{
  111. display:inline;
  112. position:absolute;
  113. }
  114.  
  115. #s-m-t-tooltip {
  116. color:#fafafa;
  117. border:3px double #cecece;
  118. margin:15px 10px 10px 10px;
  119. font-size:13px;
  120. text-transform:uppercase;
  121. font-family: 'Yanone Kaffeesatz', sans-serif;
  122. text-align:center;
  123. text-shadow:
  124. -1px -1px 0 #000,
  125. 1px -1px 0 #000,
  126. -1px 1px 0 #000,
  127. 1px 1px 0 #000;
  128. padding:4px 8px 2px 8px;
  129. background:url('https://66.media.tumblr.com/7f687423c404b80b6782c879ae692680/tumblr_inline_pkdp18xPtG1wp1vtq_1280.png')
  130. z-index:9999999999; repeat;
  131. }
  132.  
  133. /* SCROLLBAR */
  134.  
  135. ::-webkit-scrollbar {
  136. width:7px;
  137. background-color:#fafafa;
  138. }
  139.  
  140. ::-webkit-scrollbar-thumb{
  141. border:3px solid #fafafa;
  142. background-color:#bb8b86;
  143. }
  144.  
  145. /* GENERAL STYLING */
  146.  
  147. a {
  148. color:#98b5ae;
  149. text-transform:uppercase;
  150. text-decoration:underline;
  151. font-weight:bold;
  152. letter-spacing:1px;
  153. }
  154.  
  155. b, strong {
  156. font-size:13px;
  157. font-family: 'times', sans-serif;
  158. color: #bb8b86;
  159. }
  160.  
  161. i, em {
  162. color:#98b5ae;
  163. }
  164.  
  165. @font-face { font-family: "valentine"; src: url('https://dl.dropboxusercontent.com/s/3nei1qfbo38y9kk/valentine.ttf') ;}
  166.  
  167. /* this heading is for the character name on pop up */
  168. h1 {
  169. font-family:'valentine';
  170. font-size:30px;
  171. color:#bb8b86;
  172. text-align:center;
  173. text-transform:lowercase;
  174. word-spacing:4px;
  175. font-weight:bold;
  176. background-attachment:repeat;
  177. padding: 4px;
  178. margin-top:2px;
  179. margin-bottom:-5px;
  180. }
  181.  
  182.  
  183. /* section headings within the pop up */
  184. h2 {
  185. font-family: 'Yanone Kaffeesatz', sans-serif;
  186. font-size:12px;
  187. color:#fff;
  188. text-align:center;
  189. text-transform:uppercase;
  190. letter-spacing:2.5px;
  191. word-spacing:4px;
  192. font-weight:bold;
  193. border:3px double #fafafa;
  194. background-image:url('https://66.media.tumblr.com/2d173b59085dfefb146b48c530f04b10/tumblr_inline_pkdpb8xRDW1wp1vtq_1280.png'); /* section heading image for the pop up. */
  195. background-attachment:repeat;
  196. padding: 4px;
  197. margin-top:-10px;
  198. margin-bottom:15px;
  199. text-shadow:
  200. -1px -1px 0 #000,
  201. 1px -1px 0 #000,
  202. -1px 1px 0 #000,
  203. 1px 1px 0 #000;
  204. }
  205.  
  206.  
  207. /* section headings for the muse list */
  208. h3 {
  209. font-family: 'Yanone Kaffeesatz', sans-serif;
  210. font-size:10px;
  211. color:#fff;
  212. text-align:center;
  213. text-transform:uppercase;
  214. letter-spacing:2.5px;
  215. word-spacing:4px;
  216. font-weight:bold;
  217. border:3px double #fafafa;
  218. background-image:url('https://66.media.tumblr.com/2d173b59085dfefb146b48c530f04b10/tumblr_inline_pkdpb8xRDW1wp1vtq_1280.png'); /* section heading image for the muse list. */
  219. background-attachment:repeat;
  220. width:230px;
  221. padding: 4px;
  222. margin-top:0px;
  223. margin-bottom: -5px;
  224. text-shadow:
  225. -1px -1px 0 #000,
  226. 1px -1px 0 #000,
  227. -1px 1px 0 #000,
  228. 1px 1px 0 #000;
  229. }
  230.  
  231.  
  232. /* MAIN AREAS */
  233.  
  234. body {
  235. background-color:#f0f0f0;
  236. font-family: 'arial', sans-serif;
  237. font-size:10.5px;
  238. color:#373334;
  239. line-height:1.5;
  240. letter-spacing:.5px;
  241.  
  242. }
  243.  
  244. #main {
  245. width:775px;
  246. height:470px;
  247. top:0px;
  248. bottom:0px;
  249. left:0px;
  250. right:0px;
  251. margin:auto;
  252. position:fixed;
  253. }
  254.  
  255. /* TITLE & NAV */
  256.  
  257. #mnav {
  258. width:500px;
  259. text-align:center;
  260. line-height:30px;
  261. margin-top:0px;
  262. margin-left:0px;
  263. background-attachment:repeat;
  264. }
  265.  
  266. #mnav a {
  267. color:#fafafa;
  268. font-size:12px;
  269. text-decoration:none;
  270. font-family: 'Yanone Kaffeesatz', sans-serif;
  271. padding:4px 10px 4px 10px;
  272. text-shadow:
  273. -1px -1px 0 #000,
  274. 1px -1px 0 #000,
  275. -1px 1px 0 #000,
  276. 1px 1px 0 #000;
  277. transition:1s;
  278. }
  279.  
  280. #mnav a:hover {
  281. text-decoration:underline;
  282. transition:1s;
  283. }
  284.  
  285. #title {
  286. width:500px;
  287. height:470px;
  288. margin-top:-1px;
  289. margin-left:268px;
  290. position:fixed;
  291. background:url('https://66.media.tumblr.com/065ae730a8dd7a2eab07bba64b3648ce/tumblr_inline_pkdnbq3rq41wp1vtq_1280.png'); /* image beside the muse list, behind the title */
  292. border:3px double #f0f0f0;
  293. }
  294.  
  295. h4 {
  296. font-family:'valentine';
  297. font-size:120px;
  298. color:#fafafa;
  299. text-align:center;
  300. font-weight:bold;
  301. text-transform:lowercase;
  302. transform: rotate(-4deg);
  303. margin-top:125px;
  304. margin-left:40px;
  305. }
  306.  
  307. /* TAB LINKS */
  308.  
  309. #musecon {
  310. width:250px;
  311. height:453px;
  312. margin-left:-15px;
  313. padding:10px;
  314. overflow-y: scroll;
  315. position:fixed;
  316. outline:1px solid #d2d2d2;
  317. background-color:#fafafa;
  318. }
  319.  
  320. /* MUSE ICONS */
  321.  
  322. #musecon ul {
  323. list-style-type: none;
  324. padding: 0;
  325. margin-top:15px;
  326. margin-left:10px;
  327. }
  328.  
  329. #musecon ul li {
  330. display: inline-block;
  331. background-color: transparent;
  332. padding-right: 2px;
  333. margin-bottom: 12px;
  334. cursor: pointer;
  335. }
  336.  
  337. #musecon ul li img {
  338. width:60px;
  339. height:60px;
  340. margin-bottom:-10px;
  341. padding:2px;
  342. border:3px double #d2d2d2;
  343. -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  344. filter: grayscale(0%); /* if you prefer greyscale icons, change the 0% to 100%, or anything in between for varying degrees of desaturation. */
  345. transition:1s;
  346. }
  347.  
  348. #musecon ul li img:hover {
  349. -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  350. filter: grayscale(100%); /* you can edit this the same way as the grayscale filter above. */
  351. transition:1s;
  352. }
  353.  
  354. /* TABS */
  355.  
  356. ul#tabs {
  357. list-style-type: none;
  358. padding: 0;
  359. text-align: center;
  360. margin-left:-10px;
  361. }
  362.  
  363. ul#tabs li {
  364. color: #fafafa;
  365. font-size:8px;
  366. line-height:14px;
  367. letter-spacing:1.5px;
  368. text-transform:uppercase;
  369. width:80px;
  370. display: inline-block;
  371. background:url('https://66.media.tumblr.com/7f687423c404b80b6782c879ae692680/tumblr_inline_pkdp18xPtG1wp1vtq_1280.png') repeat; /* background image for the links to switch between tabs. */
  372. border:3px double #fafafa;
  373. margin-bottom: 4px;
  374. padding:4px;
  375. cursor: pointer;
  376. text-shadow:
  377. -1px -1px 0 #000,
  378. 1px -1px 0 #000,
  379. -1px 1px 0 #000,
  380. 1px 1px 0 #000;
  381. transition:1s;
  382. }
  383.  
  384. ul#tabs li:hover {
  385. color:#e0b9aa;
  386. transition:1s;
  387. }
  388.  
  389. ul#tabs li.active {
  390. text-decoration:underline;
  391. transition:1s;
  392. }
  393.  
  394. ul#tab {
  395. list-style-type: none;
  396. margin: 0;
  397. padding: 0;
  398. }
  399.  
  400. ul#tab li {
  401. display: none;
  402. }
  403.  
  404. ul#tab li.active {
  405. display: block;
  406. }
  407.  
  408.  
  409. /* POP UPS */
  410.  
  411. .popup_block{
  412. display:none;
  413. background:#fafafa;
  414. text-align:justify;
  415. padding:20px;
  416. outline:1px solid #d2d2d2;
  417. position:fixed;
  418. top:53%;left:50%;
  419. z-index: 99999;
  420. width:450px;
  421. height:540px;
  422. overflow:hidden;
  423. }
  424.  
  425. *html #fade {position: absolute;}
  426. *html .popup_block {position: absolute;}
  427. #fade {
  428. display:none;
  429. position:fixed;
  430. left:0px;
  431. top:0px;
  432. width:100%;
  433. height:100%;
  434. z-index:9999;
  435. background:#ededed;
  436. opacity:.6; /* change opacity to 1 for a solid colour, or .1-.9 for varying degrees of transparency. */
  437. }
  438.  
  439. /* MUSE INFO */
  440.  
  441. #popname {
  442. width:100%;
  443. margin-top:-10px;
  444. }
  445.  
  446. #popicon img {
  447. width:70px;
  448. height:70px;
  449. float:left;
  450. margin-top:15px;
  451. margin-left:25px;
  452. padding:2px;
  453. border:3px double #d2d2d2;
  454. }
  455.  
  456. #poptag {
  457. width:250px;
  458. text-align:center;
  459. margin-top:15px;
  460. margin-bottom:5px;
  461. margin-left:158px;
  462. padding-bottom:0px;
  463. font-size:10px;
  464. color:#98b5ae;
  465. font-weight:200;
  466. font-style:italic;
  467. text-transform:lowercase;
  468. border-bottom:1px solid #d2d2d2;
  469. }
  470.  
  471. #poptag a {
  472. color:#98b5ae;
  473. font-weight:200;
  474. font-style:italic;
  475. text-decoration:none;
  476. text-transform:lowercase;
  477. }
  478.  
  479. #popnav {
  480. width:250px;
  481. text-align:center;
  482. margin-left:158px;
  483. font-size:12px;
  484. }
  485.  
  486. #popnav a {
  487. color:#a9726d;
  488. text-decoration:none;
  489. }
  490.  
  491. v {
  492. color: #fafafa;
  493. font-size:8px;
  494. line-height:20px;
  495. letter-spacing:1.5px;
  496. text-transform:uppercase;
  497. background:url('https://66.media.tumblr.com/7f687423c404b80b6782c879ae692680/tumblr_inline_pkdp18xPtG1wp1vtq_1280.png') repeat; /* background image for the verse names. */
  498. border:3px double #fafafa;
  499. padding: 4px 4px 4px 12px;
  500. margin-left:-2px;
  501. text-shadow:
  502. -1px -1px 0 #000,
  503. 1px -1px 0 #000,
  504. -1px 1px 0 #000,
  505. 1px 1px 0 #000;
  506. }
  507.  
  508. #con {
  509. width:200px;
  510. height:120px;
  511. margin-top: -15px;
  512. margin-left: -1px;
  513. margin-right: 0px;
  514. margin-bottom: 20px;
  515. padding:2px;
  516. display:inline-block;
  517. }
  518.  
  519. #con img {
  520. width:60px;
  521. height:60px;
  522. float:left;
  523. margin-top:20px;
  524. margin-left:5px;
  525. padding:2px;
  526. border-radius:100px;
  527. border:3px double #d2d2d2;
  528. }
  529.  
  530. #conname {
  531. width:120px;
  532. height:30px;
  533. font-family:'valentine';
  534. font-size:20px;
  535. color:#bb8b86;
  536. text-align:center;
  537. text-transform:lowercase;
  538. transform: rotate(-3deg);
  539. margin-top:25px;
  540. margin-left:80px;
  541. }
  542.  
  543. #coninfo {
  544. width:110px;
  545. height:20px;
  546. font-family: 'Yanone Kaffeesatz', sans-serif;
  547. font-size:10px;
  548. text-transform:uppercase;
  549. text-align:center;
  550. margin-top:-5px;
  551. margin-left:82px;
  552. padding-top:5px;
  553. border-top:1px solid #d2d2d2;
  554. }
  555.  
  556. #popex {
  557. width:445px;
  558. height:26px;
  559. font-size:10px;
  560. line-height:26px;
  561. font-weight:bold;
  562. font-family: 'Yanone Kaffeesatz', sans-serif;
  563. text-transform:uppercase;
  564. text-align:center;
  565. margin-top:-10px;
  566. position:fixed;
  567. background-color:#fafafa;
  568. }
  569.  
  570. #popex b {
  571. color:#bb8b86;
  572. font-size:13px;
  573. font-family:'valentine';
  574. text-transform:lowercase;
  575. }
  576.  
  577.  
  578. /* CREDIT — DO NOT TOUCH! */
  579.  
  580.  
  581. #credit {
  582. bottom:10px;
  583. right:10px;
  584. border:1px solid #d2d2d2;
  585. font-size:10px;
  586. font-family: 'Open Sans', sans-serif;
  587. position:fixed;
  588. border-radius:100px;
  589. }
  590.  
  591. #credit a {
  592. color:#bb8b86;
  593. padding:5px;
  594. text-decoration:none;
  595. background-color:#fafafa;
  596. border-radius:100px;
  597. transition-duration:1s;
  598. -moz-transition-duration:1s;
  599. -webkit-transition-duration:1s;
  600. -o-transition-duration:1s;
  601. }
  602.  
  603. #credit a:hover {
  604. color:#98b5ae;
  605. text-decoration:none;
  606. background-color:#fafafa;
  607. }
  608.  
  609.  
  610. </style>
  611.  
  612. </head>
  613. <body>
  614.  
  615. <div id="main">
  616.  
  617. <div id="title">
  618.  
  619. <!--- this is your main page navigation. edit these to whatever you need. --->
  620.  
  621. <div id="mnav"> <a href="/">go back</a> &nbsp;&nbsp;&nbsp; <a href="/">decree</a> &nbsp;&nbsp;&nbsp; <a href="/">author</a> &nbsp;&nbsp;&nbsp; <a href="/">dashboard</a> </div>
  622.  
  623. <h4> muse list. </h4> <!--- page title that appears above the image. i don't recommend changing it too much unless you know what you're doing, as it might mess up the positioning. --->
  624.  
  625. </div>
  626.  
  627. <div id="musecon">
  628.  
  629. <!--- START MUSE LIST! --->
  630.  
  631. <!--- this is the container beside the main navigation / page title, where you'll put in your muse icons to click on & access the pop up.
  632.  
  633. to add a section header, use the h3 tag: <h3> section header </h3>
  634. you can change the text to whatever sections you want to make, whether they're by activity, fandom, genre, etc.
  635.  
  636. to add a new link, copy / paste the following:
  637.  
  638. <li> <a href="#?w=450" rel="popname" class="poplight" title="muse name"><img src="IMAGE URL HERE"></a> </li>
  639.  
  640. note that where it says rel="popupname" , you need to change POPUPNAME to something unique. you can make it a number, the muse name, muse initials, etc. just as long as it's DIFFERENT from all the other muses. and it MUST be the same as your div id on that muse's pop up. keep scrolling to the POP UPS! instruction to see what i mean. --->
  641.  
  642. <h3> heading </h3>
  643.  
  644. <ul>
  645. <li> <a href="#?w=450" rel="one" class="poplight" title="muse one"><img src="https://66.media.tumblr.com/cdfd90e51516e336ee39a5dadf770538/tumblr_inline_pkdkjaQnbJ1wp1vtq_1280.png"></a> </li>
  646. </ul>
  647.  
  648. </div>
  649. </div>
  650.  
  651. <!--- END MUSE LIST --->
  652.  
  653.  
  654. <!--- START POP UPS! --->
  655.  
  656. <!--- this is what comes up when you click on the muse icons. to add a new pop up, copy / paste this:
  657.  
  658. <div id="popupname" class="popup_block">
  659.  
  660. <div id="popname"> <h1>character name</h1> </div>
  661.  
  662. <div id="popicon"> <img src="https://66.media.tumblr.com/0906842e90cebd3183194ecb42edf115/tumblr_inline_pkdo5v7AZI1wp1vtq_1280.png"> </div>
  663.  
  664. <div id="poptag"> put a quote, add a <a href="/">link</a>, w/e u want </div>
  665. <div id="popnav"> <a href="/" title="visage"><span class="lnr lnr-camera"></span></a> &nbsp;&nbsp;&nbsp; <a href="/" title="aesthetic"><span class="lnr lnr-diamond"></span></a> &nbsp;&nbsp;&nbsp; <a href="/" title="interaction"><span class="lnr lnr-pencil"></span></a> &nbsp;&nbsp;&nbsp; <a href="/" title="musing"><span class="lnr lnr-bubble"></span></a> &nbsp;&nbsp;&nbsp; <a href="/" title="headcanon"><span class="lnr lnr-heart"></span></a> &nbsp;&nbsp;&nbsp; <a href="/" title="extra"><span class="lnr lnr-book"></span></a> </div>
  666.  
  667. <ul id="tabs">
  668. <li class="active"> stats </li>
  669. <li> verses </li>
  670. <li> relations </li>
  671. </ul>
  672.  
  673. <ul id="tab">
  674.  
  675. <li class="active">
  676.  
  677. <div style="width:auto;height:355px;margin-top:18px;overflow-y:scroll;padding:16px;">
  678.  
  679. <ul style="padding-left:25px;padding-right:25px;margin-bottom:28px;margin-top:-15px;">
  680.  
  681. add a blurb or full biography / history here! or, if you'd rather just keep the statistics, delete the two ul tags around this snippet to erase it entirely.
  682.  
  683. </ul>
  684.  
  685. <h2>header</h2>
  686.  
  687. <ul style="padding-left:25px;margin-bottom:28px;">
  688. <b>info.</b> &nbsp;&nbsp; tba<br>
  689. <b>info.</b> &nbsp;&nbsp; tba<br>
  690. <b>info.</b> &nbsp;&nbsp; tba
  691. </ul>
  692.  
  693. </li>
  694.  
  695. <li>
  696.  
  697. <div style="width:auto;height:355px;overflow-y:scroll;padding:16px;">
  698.  
  699. <ul style="padding-left:5px;padding-right:5px;margin-bottom:28px;">
  700. <v> verse name. </v> &nbsp;&nbsp; add your verse information here.
  701. </ul>
  702.  
  703. </li>
  704.  
  705. <li>
  706.  
  707. <div style="width:auto;height:385px;overflow-y:scroll;margin-top:20px;padding-left:20px;">
  708.  
  709. <div id="con"> <img src="https://66.media.tumblr.com/cc4a682f4327ad04f8eb42354dfd4a28/tumblr_inline_pkdq6l3hqT1wp1vtq_1280.png"> <div id="conname"> name. </div> <div id="coninfo"> <a href="/">user</a> </div> </div>
  710.  
  711. </div>
  712.  
  713. </li>
  714.  
  715. </ul>
  716.  
  717. <div id="popex"> availability... &nbsp;&nbsp; <b>???</b> &nbsp;&nbsp; portrayal... &nbsp;&nbsp; <b>???</b> &nbsp;&nbsp; shipping... &nbsp;&nbsp; <b>???</b> </div>
  718.  
  719. </div>
  720. </div>
  721.  
  722.  
  723. END COPY / PASTE AT THAT LAST </DIV> !
  724.  
  725. IMPORTANT: where it says <div id="popupname" class="popup_block"> , you MUST change POPUPNAME to whatever you changed the rel="popupname" to for that muse! ex. if you changed it to their name, it would be rel="cheryl" & id="cheryl"
  726.  
  727. see the example muse pop up below for instructions on the individual sections. --->
  728.  
  729. <!--- POP UP ONE START! --->
  730. <div id="one" class="popup_block">
  731.  
  732. <div id="popname"> <h1>character name</h1> </div> <!--- your character's name, obvs. just keep it within the <h1> tags --->
  733.  
  734. <div id="popicon"> <img src="https://66.media.tumblr.com/0906842e90cebd3183194ecb42edf115/tumblr_inline_pkdo5v7AZI1wp1vtq_1280.png"> </div> <!--- your muse icon. size is 70x70, but will resize. the borders are CODED so don't add them yourself. --->
  735.  
  736.  
  737. <div id="poptag"> put a quote, add a <a href="/">link</a>, w/e u want </div>
  738. <div id="popnav"> <a href="URL" title="LINK TITLE"><span class="lnr lnr-camera"></span></a> &nbsp;&nbsp;&nbsp; <a href="URL" title="LINK TITLE"><span class="lnr lnr-diamond"></span></a> &nbsp;&nbsp;&nbsp; <a href="URL" title="LINK TITLE"><span class="lnr lnr-pencil"></span></a> &nbsp;&nbsp;&nbsp; <a href="URL" title="LINK TITLE"><span class="lnr lnr-bubble"></span></a> &nbsp;&nbsp;&nbsp; <a href="URL" title="LINK TITLE"><span class="lnr lnr-heart"></span></a> &nbsp;&nbsp;&nbsp; <a href="URL" title="LINK TITLE"><span class="lnr lnr-book"></span></a> </div> <!--- your muse links. i recommend using them for tags. if you want to change the symbols, go here: https://linearicons.com/free --->
  739.  
  740.  
  741. <ul id="tabs">
  742. <li class="active"> stats </li>
  743. <li> verses </li>
  744. <li> relations </li>
  745. </ul> <!--- these are the links to switch between tabs. change the titles to whatever you'd like, just keep them in the <li> tags. --->
  746.  
  747. <!--- TABS START --->
  748.  
  749. <ul id="tab">
  750.  
  751. <!--- START FIRST TAB! BIO / STATS! --->
  752.  
  753. <!--- this is your first tab, and the active one, which means it will show by default when you first click your pop up link. take care not to mess with any of the positioning tags unless you know what you're doing! --->
  754.  
  755. <li class="active">
  756.  
  757. <div style="width:auto;height:355px;margin-top:18px;overflow-y:scroll;padding:16px;">
  758.  
  759. <ul style="padding-left:25px;padding-right:25px;margin-bottom:28px;margin-top:-15px;">
  760.  
  761. add a blurb or full biography / history here! or, if you'd rather just keep the statistics, delete the two ul tags around this snippet to erase it entirely.
  762.  
  763. </ul>
  764.  
  765. <h2>the basics</h2> <!--- these are your headers to separate information sections. name them whatever, just keep them in a <h2> tag. --->
  766.  
  767. <ul style="padding-left:25px;margin-bottom:28px;">
  768. <b>full name.</b> &nbsp;&nbsp; tba<br>
  769. <b>aka.</b> &nbsp;&nbsp; tba<br>
  770. <b>age.</b> &nbsp;&nbsp; tba<br>
  771. <b>gender & pronouns.</b> &nbsp;&nbsp; tba<br>
  772. <b>orientation.</b> &nbsp;&nbsp; tba<br>
  773. <b>species.</b> &nbsp;&nbsp; tba<br>
  774. <b>occupation.</b> &nbsp;&nbsp; tba<br>
  775. <b>residence.</b> &nbsp;&nbsp; tba
  776. </ul> <!--- change these to whatever information you want to include. just keep the spacing, and be sure to include a <br> tag after each line, unless it's the last one. if you want to add a new section, copy / paste this underneath your new <h2> heading:
  777.  
  778. <ul style="padding-left:25px;margin-bottom:28px;">
  779. <b>info.</b> &nbsp;&nbsp; tba<br>
  780. <b>info.</b> &nbsp;&nbsp; tba<br>
  781. <b>info.</b> &nbsp;&nbsp; tba
  782. </ul>
  783.  
  784. alternately, if you just want a regular text section, copy / paste this:
  785.  
  786. <ul style="padding-left:25px;margin-bottom:28px;">
  787. write your text here!
  788. <br><br>
  789. add a new paragraph if you need to!
  790. </ul> --->
  791.  
  792. <h2>physical appearance</h2>
  793.  
  794. <ul style="padding-left:25px;margin-bottom:28px;">
  795. <b>hair.</b> &nbsp;&nbsp; tba<br>
  796. <b>eyes.</b> &nbsp;&nbsp; tba<br>
  797. <b>complexion.</b> &nbsp;&nbsp; tba<br>
  798. <b>build.</b> &nbsp;&nbsp; tba<br>
  799. <b>scars.</b> &nbsp;&nbsp; tba<br>
  800. <b>tattoos.</b> &nbsp;&nbsp; tba<br>
  801. <b>piercings.</b> &nbsp;&nbsp; tba<br>
  802. <b>etc.</b> &nbsp;&nbsp; tba<br>
  803. <b>face claim(s).</b> &nbsp;&nbsp; tba
  804. </ul>
  805.  
  806. <h2>personality</h2>
  807.  
  808. <ul style="padding-left:25px;margin-bottom:28px;">
  809. <b>zodiac.</b> &nbsp;&nbsp; tba<br>
  810. <b>alignment.</b> &nbsp;&nbsp; tba<br>
  811. <b>hogwarts.</b> &nbsp;&nbsp; tba
  812. <b>positive traits.</b> &nbsp;&nbsp; tba<br>
  813. <b>negative traits.</b> &nbsp;&nbsp; tba
  814. </ul>
  815.  
  816. <h2>medical record</h2>
  817.  
  818. <ul style="padding-left:25px;margin-bottom:28px;">
  819. <b>mental.</b> &nbsp;&nbsp; tba<br>
  820. <b>physical.</b> &nbsp;&nbsp; tba<br>
  821. <b>phobias.</b> &nbsp;&nbsp; tba<br>
  822. <b>eyesight.</b> &nbsp;&nbsp; tba<br>
  823. <b>drug use.</b> &nbsp;&nbsp; tba<br>
  824. <b>alcohol use.</b> &nbsp;&nbsp; tba<br>
  825. <b>diet.</b> &nbsp;&nbsp; tba
  826. </ul>
  827.  
  828. <h2>background</h2>
  829.  
  830. <ul style="padding-left:25px;margin-bottom:28px;">
  831. <b>birth place.</b> &nbsp;&nbsp; tba<br>
  832. <b>ethnicity.</b> &nbsp;&nbsp; tba<br>
  833. <b>parents.</b> &nbsp;&nbsp; tba<br>
  834. <b>siblings.</b> &nbsp;&nbsp; tba<br>
  835. <b>pets.</b> &nbsp;&nbsp; tba<br>
  836. <b>education.</b> &nbsp;&nbsp; tba<br>
  837. <b>notable skills.</b> &nbsp;&nbsp; tba<br>
  838. <b>languages.</b> &nbsp;&nbsp; tba<br>
  839. <b>abilities.</b> tba
  840. </ul>
  841.  
  842. </li>
  843. <!--- END FIRST TAB! --->
  844.  
  845.  
  846. <!--- START SECOND TAB! VERSES! --->
  847. <li>
  848.  
  849. <div style="width:auto;height:355px;overflow-y:scroll;padding:16px;">
  850.  
  851. <ul style="padding-left:5px;padding-right:5px;margin-bottom:28px;">
  852. <v> verse name. </v> &nbsp;&nbsp; add your verse information here.
  853. </ul>
  854.  
  855. <!--- to add a new verse, copy / paste this:
  856.  
  857. <ul style="padding-left:5px;padding-right:5px;margin-bottom:28px;">
  858. <v> verse name. </v> &nbsp;&nbsp; add your verse information here.
  859. </ul> --->
  860.  
  861. </li>
  862. <!--- END SECOND TAB! --->
  863.  
  864.  
  865. <!--- START THIRD TAB! RELATIONS! --->
  866. <li>
  867.  
  868. <div style="width:auto;height:385px;overflow-y:scroll;margin-top:20px;padding-left:20px;">
  869.  
  870. <div id="con"> <img src="https://66.media.tumblr.com/cc4a682f4327ad04f8eb42354dfd4a28/tumblr_inline_pkdq6l3hqT1wp1vtq_1280.png"> <div id="conname"> name. </div> <div id="coninfo"> <a href="/">user</a> </div> </div>
  871.  
  872. <!--- to add a new connection, copy / paste this:
  873.  
  874. <div id="con"> <img src="IMAGE URL"> <div id="conname"> name. </div> <div id="coninfo"> <a href="URL">user</a> </div> </div>
  875.  
  876. i recommend keeping the name to just their first name so it doesn't overflow weirdly. you can keep their username at the bottom, put their relationship type to your muse, or whatever you want. just keep it short! --->
  877.  
  878. </div>
  879.  
  880. </li>
  881. <!--- END THIRD TAB! --->
  882.  
  883. </ul>
  884. <!--- END TABS --->
  885.  
  886. <!--- START BOTTOM BAR! --->
  887.  
  888. <!--- edit this info however you want. it'll show beneath the tabs no matter which one you're on. you can also scrap the info there entirely and replace it with a quote, or just leave it blank. --->
  889.  
  890. <div id="popex"> availability... &nbsp;&nbsp; <b>primary.</b> &nbsp;&nbsp; portrayal... &nbsp;&nbsp; <b>canon compliant.</b> &nbsp;&nbsp; shipping... &nbsp;&nbsp; <b>open.</b> </div>
  891. <!--- END BOTTOM BAR! --->
  892. </div>
  893. <!--- POP UP ONE END! --->
  894.  
  895. <!--- CREDIT. DO NOT TOUCH! --->
  896.  
  897. <div id="credit"><a href="http://woodsbeyond.tumblr.com" title="woodsbeyond"><span class="lnr lnr-heart"></span></a></div>
  898.  
  899. </body>
  900. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement