Advertisement
manon15

darlingmarilyn theme code

Apr 9th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.97 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!--code by manon/butscrewmefirst. don't take as your own!-->
  5.  
  6. <head><title>{Title}</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  10.  
  11.  
  12. <link href='http://fonts.googleapis.com/css?family=IM+Fell+Double+Pica+SC' rel='stylesheet' type='text/css'>
  13. <link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
  14. <link href='http://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
  15. <link href='http://fonts.googleapis.com/css?family=Prata' rel='stylesheet' type='text/css'>
  16. <link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
  17. <link href='http://fonts.googleapis.com/css?family=Tillana' rel='stylesheet' type='text/css'>
  18. <link href='http://fonts.googleapis.com/css?family=Aguafina+Script' rel='stylesheet' type='text/css'>
  19. <link href='http://fonts.googleapis.com/css?family=Petit+Formal+Script' rel='stylesheet' type='text/css'>
  20. <link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>
  21. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  22. <link href='http://fonts.googleapis.com/css?family=Calligraffitti' rel='stylesheet' type='text/css'>
  23. <link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
  24. <link href='http://fonts.googleapis.com/css?family=Six+Caps' rel='stylesheet' type='text/css'>
  25. <link href='http://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'>
  26. <link href='http://fonts.googleapis.com/css?family=Fondamento' rel='stylesheet' type='text/css'>
  27. <link href='http://fonts.googleapis.com/css?family=Bangers' rel='stylesheet' type='text/css'>
  28. <link href='http://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet' type='text/css'>
  29. <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
  30. <link href='https://fonts.googleapis.com/css?family=Homemade+Apple' rel='stylesheet' type='text/css'>
  31. <link href='https://fonts.googleapis.com/css?family=Great+Vibes' rel='stylesheet' type='text/css'>
  32. <link href='https://fonts.googleapis.com/css?family=Bad+Script' rel='stylesheet' type='text/css'>
  33. <link href='https://fonts.googleapis.com/css?family=Roboto:700' rel='stylesheet' type='text/css'>
  34. <link href='https://fonts.googleapis.com/css?family=Ubuntu:700' rel='stylesheet' type='text/css'>
  35. <link href='https://fonts.googleapis.com/css?family=Nothing+You+Could+Do' rel='stylesheet' type='text/css'>
  36. <link href='https://fonts.googleapis.com/css?family=Meddon' rel='stylesheet' type='text/css'>
  37. <link href='https://fonts.googleapis.com/css?family=Khand' rel='stylesheet' type='text/css'>
  38. <link href='https://fonts.googleapis.com/css?family=Black+Ops+One' rel='stylesheet' type='text/css'>
  39.  
  40. <script type="text/javascript"
  41. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  42. <script>
  43. $(document).ready(function() {
  44. //
  45. $('a.poplight[href^=#]').click(function() {
  46. var popID = $(this).attr('rel'); //Get Popup Name
  47. var popURL = $(this).attr('href'); //Get Popup href to define size
  48. var query= popURL.split('?');
  49. var dim= query[1].split('&');
  50. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  51. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  52. var popMargTop = ($('#' + popID).height() + 80) / 2;
  53. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  54. //Apply Margin to Popup
  55. $('#' + popID).css({
  56. 'margin-top' : -popMargTop,
  57. 'margin-left' : -popMargLeft
  58. });
  59. $('body').append('<div id="fade"></div>');
  60. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  61. return false;
  62. });
  63. $('a.close, #fade').live('click', function() {
  64. $('#fade , .popup_block, .question_block').fadeOut(function() {
  65. $('#fade, a.close').remove(); //fade them both out
  66. });
  67. return false;
  68. });
  69. });
  70. </script>
  71.  
  72.  
  73. <style type="text/css">
  74.  
  75. .popup_block{
  76. display:none;
  77. float:left;
  78. background-image: url('http://i.imgur.com/0MVBMIt.png');
  79. background-color:transparent;
  80. height:500px;
  81. position:fixed;
  82. top:50%; left: 50%;
  83. z-index:9999999999999;
  84. opacity:1;
  85. }
  86.  
  87.  
  88. *html #fade {position: absolute;}
  89. *html .popup_block {position: absolute;}
  90. #fade {
  91. display:none;
  92. position:fixed;
  93. left:0px;
  94. top:0px;
  95. width:100%;
  96. height:100%;
  97. z-index:999999;
  98. background:rgba(0,0,0,.6); / change to #fff for solid white /
  99. }
  100.  
  101. #text {
  102. top:50%; *
  103. left:50%; *
  104. margin-top:50px; *
  105. margin-left:450px; *
  106. width:270px; **
  107. height:200px; **
  108. overflow:scroll; **
  109. text-align:justify;
  110. font-family:calibri;
  111. font-size:10px;
  112. color:#fff;
  113. background:transparent;
  114. }
  115.  
  116. #heading {
  117. top:50%;
  118. left:50%;
  119. margin-top:25px;
  120. margin-left:70px;
  121. font-family:"prata";
  122. font-size:13px;
  123. color:#fff;
  124. background:transparent;
  125. }
  126.  
  127. #poptext2 {
  128. margin-top:301px;
  129. margin-left:138px;
  130. width:270px;
  131. height:198px;
  132. font-family:calibri;
  133. font-size:12px;
  134. overflow:scroll;
  135. text-align:justify;
  136. }
  137.  
  138. #poptext {
  139. margin-top:302px;
  140. margin-left:56px;
  141. width:270px;
  142. height:198px;
  143. font-family:calibri;
  144. font-size:12px;
  145. overflow:scroll;
  146. text-align:justify;
  147. }
  148.  
  149. .question_block{
  150. height:300px;
  151. display: none;
  152. float: left;
  153. position: fixed;
  154. top: 50%; left: 50%;
  155. z-index: 999999999999;
  156. }
  157.  
  158.  
  159. /* --- UPDATES ---*/
  160.  
  161.  
  162.  
  163. #bite
  164. #bite a{
  165. display:block
  166. }
  167. #bite .death {
  168. margin-top:0px;filter: alpha(opacity = 0);
  169. opacity:0;-webkit-transition: all 0.5s ease-out;
  170. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  171. }
  172.  
  173. #bite:hover .death {
  174. margin-top:0px;
  175. -webkit-transition: all 0.8s ease-out;
  176. -moz-transition: all 0.8s ease-out;
  177. transition: all 0.8s ease-out;
  178. filter: alpha(opacity = 100);
  179. filter: alpha(opacity = 100);
  180. opacity:100;
  181. }
  182.  
  183. #actualnews {
  184. font-family:'calibri';
  185. font-size:12px;
  186. color: #fff;
  187. width:150px;
  188. height:auto;
  189. padding-top:3px;
  190. left:50%;
  191. margin-left:-475px;
  192. bottom:40px;
  193. text-align:center;
  194. position:fixed;
  195. background:transparent;
  196. }
  197.  
  198. #thekey {
  199. width:auto;
  200. letter-spacing:5px;
  201. left:50%;
  202. bottom:458px;
  203. margin-left:-3px;
  204. padding:2px;
  205. position:fixed;
  206. font-size:11px;
  207. font-family: 'prata', serif;
  208. color:#8f366a;
  209. text-transform:uppercase;
  210. text-shadow: 0px 0px 0px #000;
  211. -ms-transform: rotate(90deg); /* IE 9 */
  212. -webkit-transform: rotate(90deg); /* Safari */
  213. transform: rotate(90deg)
  214.  
  215. }
  216. }
  217.  
  218.  
  219. para {
  220. font-family: 'Prata', serif;
  221. color:#000;
  222. text-shadow:0 0 2px #fff;
  223. font-size:15px;
  224.  
  225. }
  226.  
  227. /*edit scrollbar*/
  228.  
  229. ::-webkit-scrollbar-thumb {
  230. height:auto;
  231. }
  232.  
  233. ::-webkit-scrollbar {
  234. height:4px;
  235. width:3px;
  236. padding-right:2px;
  237. }
  238. /*edit the body this is what post text looks like, background color, etc.*/
  239.  
  240. body {
  241. background-image:url("http://i.imgur.com/wIIfPgj.png");
  242. background-position:center bottom;
  243. background-attachment:fixed;
  244. background-repeat:no-repeat;
  245. margin:0px;
  246. background-color:#a5a5a5;
  247. color:#fff;
  248. font-family:arial;
  249. font-size:10px;
  250. line-height:120%;
  251. overflow-x:hidden;
  252. overflow-y:hidden;
  253. }
  254.  
  255.  
  256. /*edit links*/
  257.  
  258. a {
  259. text-decoration:none;
  260. outline:none;
  261. -moz-outline-style:none;
  262. color:#8f366a;
  263. -moz-transition-duration:0.8s;
  264. -webkit-transition-duration:0.8s;
  265. -o-transition-duration:0.8s;
  266. text-transform:uppercase;
  267. }
  268.  
  269. /*edit link hover*/
  270.  
  271. a:hover {
  272. color:#fff;
  273. outline:none;
  274. -moz-outline-style:none;
  275. text-decoration:none;
  276. border-radius: 20px 20px 20px 20px #000;
  277. }
  278.  
  279. img {
  280. opacity:.8;
  281. -webkit-filter: Grayscale(50%);
  282. -webkit-transition-duration: 0.8s;
  283. -moz-transition-duration:0.8s;
  284. transition-duration:0.8s;
  285. -o-transition-duration:0.8s;
  286. -webkit-filter: blur(1px);
  287. border-radius: 20px 20px 20px 20px #000;
  288. }
  289.  
  290. img:hover {
  291. opacity:1;
  292. -webkit-filter: Grayscale(0%);
  293. -webkit-transition: all 0.8s ease-out;
  294. -moz-transition: all 0.8s ease-out;
  295. transition: all 0.8s ease-out;
  296. -webkit-filter: blur(0px);
  297. border-radius: 20px 20px 20px 20px #000;
  298.  
  299. }
  300.  
  301. blockquote {
  302. padding-left:5px;
  303. border-left:2px solid #fff;
  304. border-radius:5px;
  305.  
  306. }
  307.  
  308. blockquote blockquote {
  309. padding-left:5px;
  310. border-left:2px solid;
  311. }
  312.  
  313. h1 {
  314. font-size:22px;
  315. text-align:left;
  316. font-family:"prata";
  317. text-align:center;
  318. line-height:110%;
  319. letter-spacing:1px;
  320. color:#fff;
  321. }
  322.  
  323.  
  324.  
  325. #title {
  326. color:#000;
  327. font-family:arial;
  328. font-size:16px;
  329. text-transform:lowercase;
  330. font-weight:bold;
  331. letter-spacing:0px;
  332. padding:4px;
  333. margin-top:-20px;
  334. margin-left:-14px;
  335. position:fixed;
  336. text-align:left;
  337. }
  338.  
  339.  
  340. #navi {
  341. float:left;
  342. width:115px;
  343. padding:3px;
  344. }
  345.  
  346.  
  347. /*sidebar links*/
  348.  
  349. .links {
  350. position: fixed;
  351. font-style:none;
  352. left:50%;
  353. bottom:420px;
  354. margin-left:-234px;
  355. font-size:21px;
  356. word-spacing:2px;
  357. line-height: 850%;
  358. text-align: left;
  359. width:20px;
  360. margin-right: auto;
  361. -ms-transform: rotate(-20deg); /* IE 9 */
  362. -webkit-transform: rotate(-20deg); /* Safari */
  363. transform: rotate(-20deg)
  364.  
  365. }
  366.  
  367. .links a {
  368. -webkit-filter:blur(.8px);
  369. letter-spacing: 1px;
  370. padding:3px;
  371.  
  372. }
  373.  
  374. .links a:hover {
  375. color:#000;
  376. opacity:1;
  377. -webkit-transition: all 0.8s ease-out;
  378. -moz-transition: all 0.8s ease-out;
  379. transition: all 0.8s ease-out;
  380. -webkit-filter:;
  381. }
  382.  
  383. .alinks {
  384. position: fixed;
  385. font-style:none;
  386. left:50%;
  387. bottom:470px;
  388. margin-left:-180px;
  389. font-size:25px;
  390. word-spacing:2px;
  391. line-height: 850%;
  392. text-align: left;
  393. width:20px;
  394. margin-right: auto;
  395. -ms-transform: rotate(20deg); /* IE 9 */
  396. -webkit-transform: rotate(20deg); /* Safari */
  397. transform: rotate(20deg)
  398.  
  399. }
  400.  
  401. .alinks a {
  402. -webkit-filter:blur(.8px);
  403. letter-spacing: 1px;
  404. padding:3px;
  405.  
  406. }
  407.  
  408. .alinks a:hover {
  409. color:#000;
  410. opacity:1;
  411. -webkit-transition: all 0.8s ease-out;
  412. -moz-transition: all 0.8s ease-out;
  413. transition: all 0.8s ease-out;
  414. -webkit-filter:;
  415. }
  416.  
  417. .blinks {
  418. position: fixed;
  419. font-style:none;
  420. left:50%;
  421. bottom:455px;
  422. margin-left:-110px;
  423. font-size:18px;
  424. word-spacing:2px;
  425. line-height: 850%;
  426. text-align: left;
  427. width:20px;
  428. margin-right: auto;
  429. -ms-transform: rotate(-10deg); /* IE 9 */
  430. -webkit-transform: rotate(-10deg); /* Safari */
  431. transform: rotate(-10deg)
  432.  
  433. }
  434.  
  435. .blinks a {
  436. -webkit-filter:blur(.8px);
  437. letter-spacing: 1px;
  438. padding:3px;
  439.  
  440. }
  441.  
  442. .blinks a:hover {
  443. color:#000;
  444. opacity:1;
  445. -webkit-transition: all 0.8s ease-out;
  446. -moz-transition: all 0.8s ease-out;
  447. transition: all 0.8s ease-out;
  448. -webkit-filter:;
  449. }
  450.  
  451. .clinks {
  452. position: fixed;
  453. font-style:none;
  454. left:50%;
  455. bottom:549px;
  456. margin-left:-63px;
  457. font-size:16px;
  458. word-spacing:2px;
  459. line-height: 850%;
  460. text-align: left;
  461. width:20px;
  462. margin-right: auto;
  463.  
  464. }
  465.  
  466. .clinks a {
  467. -webkit-filter:blur(.8px);
  468. letter-spacing: 1px;
  469. padding:3px;
  470.  
  471. }
  472.  
  473. .clinks a:hover {
  474. color:#000;
  475. opacity:1;
  476. -webkit-transition: all 0.8s ease-out;
  477. -moz-transition: all 0.8s ease-out;
  478. transition: all 0.8s ease-out;
  479. -webkit-filter:;
  480. }
  481.  
  482. .dlinks {
  483. position: fixed;
  484. font-style:none;
  485. left:50%;
  486. bottom:566px;
  487. margin-left:-238px;
  488. font-size:19px;
  489. word-spacing:2px;
  490. line-height: 850%;
  491. text-align: left;
  492. width:20px;
  493. margin-right: auto;
  494.  
  495. }
  496.  
  497. .dlinks a {
  498. -webkit-filter:blur(.8px);
  499. letter-spacing: 1px;
  500. padding:3px;
  501.  
  502. }
  503.  
  504. .dlinks a:hover {
  505. color:#000;
  506. opacity:1;
  507. -webkit-transition: all 0.8s ease-out;
  508. -moz-transition: all 0.8s ease-out;
  509. transition: all 0.8s ease-out;
  510. -webkit-filter:;
  511. }
  512.  
  513. .elinks {
  514. position: fixed;
  515. font-style:none;
  516. left:50%;
  517. bottom:420px;
  518. margin-left:235px;
  519. font-size:30px;
  520. word-spacing:2px;
  521. line-height: 850%;
  522. text-align: left;
  523. width:20px;
  524. margin-right: auto;
  525. -ms-transform: rotate(50deg); /* IE 9 */
  526. -webkit-transform: rotate(50deg); /* Safari */
  527. transform: rotate(50deg)
  528.  
  529. }
  530.  
  531. .elinks a {
  532. -webkit-filter:blur(.8px);
  533. letter-spacing: 1px;
  534. padding:3px;
  535.  
  536. }
  537.  
  538. .elinks a:hover {
  539. color:#000;
  540. opacity:1;
  541. -webkit-transition: all 0.8s ease-out;
  542. -moz-transition: all 0.8s ease-out;
  543. transition: all 0.8s ease-out;
  544. -webkit-filter:;
  545. }
  546.  
  547. #description {
  548. width:208px;
  549. font-size:11px;
  550. padding:5px;
  551. text-align:justify;
  552. letter-spacing:0px;
  553. line-height:90%;
  554. margin-left:-16px;
  555. margin-top:-2px;
  556. }
  557.  
  558. /* this is the box that comes up when you hover over something with a title*/
  559.  
  560. #s-m-t-tooltip {
  561. margin-left:15px;
  562. margin-top:-21px;
  563. letter-spacing:0px;
  564. font-family:"prata";
  565. text-transform:auto;
  566. font-size:12px;
  567. color:#fff;
  568. padding: 3px;
  569. z-index:99999999999999999999999;
  570. -webkit-transition:all 1.5s;
  571. -moz-transition:all 1.5s;
  572. -ms-transition:all 1.5s;
  573. -o-transition:all 1.5s;
  574. transition:all 1.5s;
  575. }
  576.  
  577. .buttons {
  578. display:inline-block;
  579. width:90px;
  580. border-top:1px solid #fff;
  581. border-bottom:1px solid #fff;
  582. margin:5px;
  583. padding:5px;
  584. text-align:center;
  585. }
  586.  
  587. /*next page and previous page*/
  588.  
  589. #pagination {
  590. left:50%;
  591. bottom:590px;
  592. margin-left:50px;
  593. font-size:25px;
  594. position: absolute;
  595. text-align: left;
  596. letter-spacing:4px;
  597. padding-left:87px;
  598. word-spacing:4px;
  599. text-transform:lowercase;
  600.  
  601.  
  602. }
  603.  
  604. #pagination a {
  605. padding:0 3px;
  606. opacity:2;
  607. -webkit-filter: Grayscale(0%);
  608. -webkit-transition: all 0.8s ease-out;
  609. -moz-transition: all 0.8s ease-out;
  610. transition: all 0.8s ease-out;
  611. -webkit-filter: blur(0px);
  612.  
  613. }
  614.  
  615.  
  616. #container {
  617. position: fixed;
  618. height:418px;
  619. width:255px;
  620. text-align:justify;
  621. font-family:'calibri';
  622. text-transform: auto;
  623. left:50%;
  624. margin-left:58px;
  625. bottom:63px;
  626. overflow: auto;
  627. -ms-transform: rotate(0deg);
  628. -webkit-transform: rotate(0deg);
  629. transform: rotate(0deg);
  630. }
  631.  
  632.  
  633. #post {
  634. width:250px;
  635. text-align:left;
  636. font-size:11px;
  637. line-height:110%;
  638. color:#fff;
  639. margin-left:auto;
  640. margin-right:auto;
  641. }
  642.  
  643.  
  644. /*italics and bold stuffs. here is where you can put new fonts, many i have already supplied you with!*/
  645.  
  646. b, strong{
  647. color: #8f366a;
  648. font-size:16px;
  649. font-family:"ar bonnie";
  650. letter-spacing:2px;
  651. line-height:115%;
  652. text-shadow: 0px 0px 0px #000;
  653. font-weight: bold;
  654. text-transform:uppercase;
  655. }
  656.  
  657. i, em, strong {
  658. color: #690000;
  659. font-size:14px;
  660. line-height:115%;
  661. font-family:"satisfy";
  662. letter-spacing:2px;
  663. text-shadow:0px 0px 0px #000;
  664. font-weight: italic;
  665.  
  666. }
  667.  
  668. /*time posted, note count, via and source*/
  669.  
  670. .postinfo {
  671. font-family:'Six caps';
  672. width:237px;
  673. margin-top:1px;
  674. padding:6px;
  675. font-size:15px;
  676. color:#fff;
  677. text-shadow:2px 2px 3px rgba(14,8,8, 1);
  678. background-image:url('http://i.imgur.com/T5xcDDZ.png');
  679. opacity:.66;
  680. border-radius: 20px 20px 20px 20px;
  681. letter-spacing:1px;
  682. border-bottom:1px #000;
  683. text-transform:uppercase;
  684. font-style:normal;
  685. text-align:center;
  686. }
  687.  
  688. .postinfo a {
  689. color:#fff;
  690. font-style:normal;
  691. }od now
  692.  
  693. .postinfo a:hover {
  694. color:#bebebe;
  695. }
  696.  
  697.  
  698. /*tags*/
  699.  
  700. .tags {
  701. width:237px;
  702. margin-top:4px;
  703. margin-left:-1px;
  704. padding:2px;
  705. font-family:arial;
  706. letter-spacing:0px;
  707. font-size:10px;
  708. text-align:center;
  709.  
  710. }
  711.  
  712. .tags a {
  713. color:#fff;
  714. }
  715.  
  716. .tags a:hover {
  717. color:#000;
  718. }
  719.  
  720. .postnote {
  721. width:237px;
  722. margin-top:40px;
  723. font-family:arial;
  724. text-transform:lowercase;
  725. font-style:normal;
  726. letter-spacing:0px;
  727. font-size:10px;
  728. text-align:left;
  729. }
  730.  
  731. .verses img {
  732. float:center;
  733. -webkit-filter: grayscale(0%);
  734. width:250px;
  735. height:100px;
  736. }
  737.  
  738. /*here go asks*/
  739.  
  740. #ask {
  741. float:left;
  742. line-height:130%;
  743. border: 1px #000;
  744. font-family:"calibri";
  745. font-size:12px;
  746.  
  747. }
  748.  
  749.  
  750.  
  751.  
  752. /*audio player container*/
  753.  
  754. .playercontainer {
  755. text-align:left;
  756. padding:10px;
  757. padding-left:0px;
  758. background-color:#fff;
  759. width:480px;
  760. }
  761.  
  762. /*artist, song, etc.*/
  763.  
  764. .musicinfo {
  765. padding-top:7px;
  766. padding-left:50px;
  767. color:#000;
  768. text-align:justify;
  769. }
  770.  
  771. /*credit. only change this if you actually make the code your own*/
  772.  
  773. #credit {
  774. position:fixed;
  775. font-size:3px;
  776. color:#fff;
  777. font-weight:none;
  778. line-height:50%;
  779. letter-spacing:2px;
  780. right:10px;
  781. bottom:05px;
  782. text-transform:none;
  783. text-align:left;
  784. }
  785.  
  786. #credit a {
  787. letter-spacing: 0px;
  788. padding:3px;
  789. color:#fff;
  790. }
  791.  
  792. #credit a:hover {
  793. background:#000;
  794. color:#fff;
  795. }
  796.  
  797.  
  798.  
  799. {CustomCSS}</style></head><body>
  800. <script src=“http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js”></script>
  801. <script src=“http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js”></script>
  802. <script>
  803. (function($){
  804. $(document).ready(function(){
  805. $("a[title]").style_my_tooltips({
  806. tip_follows_cursor:true,
  807. tip_delay_time:7,
  808. tip_fade_speed:7,
  809. attribute:"title"
  810. });
  811. });
  812. })(jQuery);
  813. </script>
  814.  
  815.  
  816. <!-- begin updates tab -->
  817.  
  818. <div id="bite">
  819. <div id="thekey">HOVER</div>
  820. <div class="death">
  821. <div id="actualnews">
  822. <para>"You know, they ask me <b>questions</b>. Just an example: '<i>What do you wear to bed</i>? A pajama top? The bottoms of the pajamas? A nightgown?' So I said, <br>'<b>CHANEL N°5</b>,'<br> because it's the <i>truth</i>… And yet, I don't want to say '<b>nude</b>.' <i>But it's the truth</i>!"</para><br>
  823. <HR WIDTH="75%"><br>
  824. indie marilyn monroe rp<br>
  825. written by <i>skyler</i>
  826. </div></div></div>
  827.  
  828. <!-- end updates tab -->
  829.  
  830.  
  831. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  832. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  833. <script>
  834.  
  835. (function($){
  836.  
  837. $(document).ready(function(){
  838.  
  839. $("a[title]").style_my_tooltips({
  840.  
  841. tip_follows_cursor:true,
  842.  
  843. tip_delay_time:50,
  844.  
  845. tip_fade_speed:600,
  846.  
  847. attribute:"title"
  848.  
  849. });
  850.  
  851. });
  852.  
  853. })(jQuery);
  854.  
  855. </script>
  856.  
  857.  
  858.  
  859.  
  860. <div class="links">
  861. <a href="/" title="refresh">💋</a></div>
  862.  
  863. <div class="alinks">
  864. <a href="#?w=500" title="inbox" rel="box1" class="poplight">💋</a></div>
  865.  
  866. <div class="blinks">
  867. <a href="#?w=400" title="guidelines" rel="box2" class="poplight">💋</a></div>
  868.  
  869.  
  870.  
  871.  
  872.  
  873.  
  874.  
  875.  
  876.  
  877.  
  878. </div>
  879.  
  880. <div id="description">{Description}</div>
  881.  
  882.  
  883. <div id="pagination">
  884. {block:Pagination}
  885. {block:PreviousPage}
  886. <a href="{PreviousPage}">&larr;</a>
  887. {/block:PreviousPage}
  888.  
  889.  
  890. {block:NextPage}
  891. <a href="{NextPage}">&rarr;</a>
  892. {/block:NextPage}
  893. {/block:Pagination}
  894. </div>
  895.  
  896.  
  897.  
  898. </div>
  899.  
  900.  
  901. <div id="container">{block:Posts}<div id="post">
  902.  
  903. {block:Text}<h1>{block:Title}<big><big><center>{Title}</center></big></big>{/block:Title}</h1>{Body}{/block:Text}
  904.  
  905. {block:Quote}<big><b><center>"{Quote}"</center></b></big>{block:Source}<p></p>— {Source}{/block:Source}{/block:Quote}
  906.  
  907. {block:Chat}{block:Title}<h1><center>{Title}</center></h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  908.  
  909. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  910.  
  911. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  912.  
  913. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  914.  
  915. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  916.  
  917.  
  918. {block:AudioPlayer}
  919. <div class="playercontainer"> <div style="padding: 5px 0px 5px 5px;width:inherit;background:#fff; border:2px solid #fff; width:30px;overflow:hidden; position:absolute;font-weight:bold;"> {AudioPlayer}</div><div class="musicinfo">{block:TrackName}<span style="#fff">{TrackName}</span>{/block:TrackName}{block:Artist}<br/>{Artist} {/block:Artist}<br>{block:PlayCount}{PlayCountWithLabel}{/block:PlayCount}</div></div>{block:Caption}{Caption}{/block:Caption}{/block:AudioPlayer}
  920.  
  921. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-40}" style="margin-right:12px;border:1px solid #e3e3e3;padding:3px;"></div> "{Question}"<br>
  922. — {ASKER}<br><br>
  923. {Answer}<br>{/block:Answer}
  924.  
  925. {block:Date}<div class="postinfo"> <a href="{Permalink}">{TimeAgo}</a>   {block:NoteCount}+ {NoteCount}{/block:NoteCount}   {block:RebloggedFrom}<a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}   {block:ContentSource}<a href="{SourceURL}">source</a>{/block:ContentSource}{/block:RebloggedFrom}</div>{/block:Date}
  926.  
  927. {block:HasTags}
  928. <div class="tags">
  929. {block:Tags}<a href="{TagURL}"> ○ {Tag}</a>  {/block:Tags}</div>
  930. {/block:HasTags}
  931.  
  932. <div class="postnote">
  933. {block:PostNotes}{PostNotes}{/block:PostNotes}
  934. </div>
  935. </div>
  936. {/block:Posts}
  937.  
  938.  
  939.  
  940.  
  941. </div></div></div></div>
  942. </div>
  943.  
  944. <div id="credit"><a href="http://butscrewmefirst.tumblr.com" title="credit"><i>M</i></a></div>
  945.  
  946. </body>
  947.  
  948. </div></div></div></div></div></div></div></div></div></div>
  949. <div id="box1" class="question_block">
  950. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  951. </div>
  952. </div></div></div></div></div></div></div></div></div></div>
  953.  
  954. <div id="box2" class="popup_block">
  955. <div id="poptext">
  956. <center><b>GUIDELINES</b></center><br>
  957. — <b>NO</b> godmodding under any circumstances. i’m sure to love to the thread as long as you control your character & i control mine!<br>
  958. — <b>all of the icons</b> used here are made by me so <i>DON’T</i> steal them.
  959. — <u>hate and/or drama</u> <i>will not be tolerated</i>. i’m just here to have a good time writing the beautiful marilyn, that’s all. ♥<br>
  960. </div>
  961. </div>
  962.  
  963. </div></div></div></div></div></div></div></div></div></div>
  964.  
  965. <div id="box3" class="popup_block">
  966. <div id="poptext">
  967. <center><b>VERSES</b></center><br>
  968. <center><img src="http://i.imgur.com/epfNW6Z.png" class="verses"></center>
  969. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  970.  
  971. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  972. <HR WIDTH="90%">
  973. <center><img src="http://i.imgur.com/epfNW6Z.png" class="verses"></center>
  974. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  975.  
  976. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  977. <HR WIDTH="90%">
  978. <center><img src="http://i.imgur.com/epfNW6Z.png" class="verses"></center>
  979. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  980.  
  981. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  982. <HR WIDTH="90%">
  983. <center><img src="http://i.imgur.com/epfNW6Z.png" class="verses"></center>
  984. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  985.  
  986. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  987. <HR WIDTH="90%">
  988. <center><img src="http://i.imgur.com/epfNW6Z.png" class="verses"></center>
  989. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  990.  
  991. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  992. <HR WIDTH="90%">
  993. <center><img src="http://i.imgur.com/epfNW6Z.png" class="verses"></center>
  994. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  995.  
  996. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  997. <HR WIDTH="90%">
  998. <center><img src="http://i.imgur.com/epfNW6Z.png" class="verses"></center>
  999. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  1000.  
  1001. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  1002. <HR WIDTH="90%">
  1003. </center>
  1004. </div>
  1005. </div>
  1006. </div>
  1007. </div></div></div></div></div></div></div></div></div></div>
  1008.  
  1009. <div id="box4" class="popup_block">
  1010. <div id="poptext2">
  1011. <center><b>NAVIGATION</b><br>
  1012. <div id="navi">
  1013. <a href="/link here" class="buttons">LINK</a><br>
  1014. <a href="/link here" class="buttons">NAME</a><br>
  1015. <a href="/link here" class="buttons">HERE</a><br>
  1016. <a href="/link here" class="buttons">LINK</a><br>
  1017. <a href="/link here" class="buttons">NAME</a><br>
  1018. <a href="/link here" class="buttons">HERE</a><br>
  1019. <a href="/link here" class="buttons">LINK</a><br>
  1020. <a href="/link here" class="buttons">NAME</a><br>
  1021. <a href="/link here" class="buttons">HERE</a><br>
  1022. <a href="/link here" class="buttons">LINK</a><br>
  1023. <a href="/link here" class="buttons">NAME</a><br>
  1024. <a href="/link here" class="buttons">HERE</a><br>
  1025. <a href="/link here" class="buttons">LINK</a><br>
  1026. <a href="/link here" class="buttons">NAME</a><br>
  1027. <a href="/link here" class="buttons">HERE</a><br>
  1028. </div>
  1029. <div id="navi">
  1030. <a href="/link here" class="buttons">LINK</a><br>
  1031. <a href="/link here" class="buttons">NAME</a><br>
  1032. <a href="/link here" class="buttons">HERE</a><br>
  1033. <a href="/link here" class="buttons">LINK</a><br>
  1034. <a href="/link here" class="buttons">NAME</a><br>
  1035. <a href="/link here" class="buttons">HERE</a><br>
  1036. <a href="/link here" class="buttons">LINK</a><br>
  1037. <a href="/link here" class="buttons">NAME</a><br>
  1038. <a href="/link here" class="buttons">HERE</a><br>
  1039. <a href="/link here" class="buttons">LINK</a><br>
  1040. <a href="/link here" class="buttons">NAME</a><br>
  1041. <a href="/link here" class="buttons">HERE</a><br>
  1042. <a href="/link here" class="buttons">LINK</a><br>
  1043. <a href="/link here" class="buttons">NAME</a><br>
  1044. <a href="/link here" class="buttons">HERE</a><br>
  1045. </center>
  1046. </div>
  1047. </div>
  1048. </div>
  1049.  
  1050. </div></div></div></div></div></div></div></div></div></div>
  1051.  
  1052. <div id="box6" class="popup_block">
  1053. <div id="poptext">
  1054. <center><b>BIOGRAPHY</b><br>
  1055. <img src="http://i.imgur.com/epfNW6Z.png" class="verses"></center><br>
  1056. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<p>
  1057. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<p>
  1058. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  1059. </div>
  1060. </div>
  1061. </div>
  1062.  
  1063. </div></div></div></div></div></div></div></div></div></div>
  1064.  
  1065. <div id="box5" class="popup_block">
  1066. <center>theme credit goes to &nbsp;<i><a href="http://butscrewmefirst.tumblr.com">Manon</a></i>.<br> do not remove the credit nor claim as your own. if you &nbsp;<b>HAVE</b> to take this credit out, make sure you credit me on a &nbsp;<b>VISIBLE</b> and often visited page.</center>
  1067. </div>
  1068.  
  1069. </div></div></div></div></div></div></div></div></div></div>
  1070.  
  1071. <div id="box7" class="popup_block">
  1072. <div style="height: 400px; overflow-y: scroll; overflow-x: hidden;">
  1073. <center><big><h1>ABOUT MUN</h1></big><BR>
  1074. <HR WIDTH="100%"><br>
  1075. <img src="http://i.imgur.com/MFebYZf.png" class="verses"><br>
  1076. CONTENT
  1077. CONTENT
  1078. CONTENT
  1079. </center>
  1080. </div>
  1081. </div>
  1082.  
  1083. </div></div></div></div></div></div></div></div></div></div>
  1084.  
  1085.  
  1086.  
  1087.  
  1088.  
  1089.  
  1090.  
  1091.  
  1092.  
  1093.  
  1094.  
  1095.  
  1096. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement