Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.07 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15. <script type="text/javascript"
  16. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  17. <script>
  18. $(document).ready(function() {
  19. //
  20. $('a.poplight[href^=#]').click(function() {
  21. var popID = $(this).attr('rel'); //Get Popup Name
  22. var popURL = $(this).attr('href'); //Get Popup href to define size
  23. var query= popURL.split('?');
  24. var dim= query[1].split('&');
  25. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  26. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  27. var popMargTop = ($('#' + popID).height() + 80) / 2;
  28. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  29. //Apply Margin to Popup
  30. $('#' + popID).css({
  31. 'margin-top' : -popMargTop,
  32. 'margin-left' : -popMargLeft
  33. });
  34. $('body').append('<div id="fade"></div>');
  35. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  36. return false;
  37. });
  38. $('a.close, #fade').live('click', function() {
  39. $('#fade , .popup_block').fadeOut(function() {
  40. $('#fade, a.close').remove(); //fade them both out
  41. });
  42. return false;
  43. });
  44. });
  45. </script>
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82. <title>{Title}</title>
  83. <link rel="shortcut icon" href="{Favicon}">
  84. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  85. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  86.  
  87. <!---- this is theme 53 by Hollywhood
  88. please don't remove the credit
  89. thank you
  90. --->
  91.  
  92. <meta name="color:Background" content="#ffffff"/>
  93. <meta name="color:Text" content="#9B9B9B"/>
  94. <meta name="color:Link" content="#b8b8b8"/>
  95. <meta name="color:Link Hover" content="#eeeeee"/>
  96. <meta name="color:sidebar links" content="#DDDDDD"/>
  97. <meta name="color:scrollbar" content="#999999">
  98.  
  99. <meta name="image:sidebar" content=""/>
  100.  
  101. <meta name="text:link 1" content="" />
  102. <meta name="text:link 1 url" content="/">
  103. <meta name="text:link 2" content="" />
  104. <meta name="text:link 2 url" content="/">
  105. <meta name="text:link 3" content="" />
  106. <meta name="text:link 3 url" content="/">
  107. <meta name="text:link 4" content="" />
  108. <meta name="text:link 4 url" content="/">
  109.  
  110. <style type="text/css">
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122. .popup_block{
  123. display:none;
  124. background:#fff;
  125. padding:20px;
  126. border:1px solid #eee; /* if you want a solid white pop-up, delete this */
  127. float:left;
  128. position:fixed;
  129. top:50%;left:50%;
  130. z-index: 99999;
  131. -webkit-box-shadow: 0px 0px 50px #000; /* delete for solid white */
  132. -moz-box-shadow: 0px 0px 50px #000; /* delete for solid white */
  133. box-shadow: 0px 0px 50px #000; /* delete for solid white */
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147. }
  148.  
  149.  
  150.  
  151.  
  152.  
  153. *html #fade {position: absolute;}
  154. *html .popup_block {position: absolute;}
  155. #fade {
  156. display:none;
  157. position:fixed;
  158. left:0px;
  159. top:0px;
  160. width:100%;
  161. height:100%;
  162. z-index:9999;
  163. background:#000; /* change to #fff for solid white */
  164. opacity:0.8; /* change to opacity:1; */
  165. }
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185. #tab1 {
  186. width: 13px;
  187. height: 13px;
  188. border: dotted 1px #3a3a3a; /*Here change the border color*/
  189. background-color: #3a3a3a; /*Here change the background color*/
  190. margin-left: 10px;
  191. margin-top: 10px;
  192. position: fixed;
  193. overflow:hidden;
  194. -webkit-transition: opacity 0.4s linear;
  195. -webkit-transition: all 0.4s linear;
  196. -moz-transition: all 0.4s linear;
  197. -o-transition: all 0.4s linear;
  198. }
  199.  
  200. #tab1:hover {
  201. width: 130px;
  202. height: 168px;
  203. background-color: #2b242b;
  204. z-index: 99999;
  205. -webkit-transition: opacity 0.4s linear;
  206. -webkit-transition: all 0.4s linear;
  207. -moz-transition: all 0.4s linear;
  208. -o-transition: all 0.4s linear;
  209. }
  210.  
  211. #tab2 {
  212. width: 13px;
  213. height: 13px;
  214. border: dotted 1px #3a3a3a; /*Here change the border color*/
  215. background-color: #3a3a3a; /*Here change the background color*/
  216. margin-left: 35px;
  217. margin-top: 10px;
  218. position: fixed;
  219. overflow:hidden;
  220. -webkit-transition: opacity 0.4s linear;
  221. -webkit-transition: all 0.4s linear;
  222. -moz-transition: all 0.4s linear;
  223. -o-transition: all 0.4s linear;
  224. }
  225.  
  226. #tab2:hover {
  227. width: 130px;
  228. height: 168px;
  229. background-color: #2b2b2b;
  230. -webkit-transition: opacity 0.4s linear;
  231. -webkit-transition: all 0.4s linear;
  232. -moz-transition: all 0.4s linear;
  233. -o-transition: all 0.4s linear;
  234. }
  235.  
  236. #tab3 {
  237. width: 13px;
  238. height: 13px;
  239. border: solid 1px #aea29e; /*Here change the border color*/
  240. background-color: #aea29e; /*Here change the background color*/
  241. margin-left: 10px;
  242. margin-top: 35px;
  243. position: fixed;
  244. overflow:hidden;
  245. -webkit-transition: opacity 0.4s linear;
  246. -webkit-transition: all 0.4s linear;
  247. -moz-transition: all 0.4s linear;
  248. -o-transition: all 0.4s linear;
  249. }
  250.  
  251. #tab3:hover {
  252. width: 130px;
  253. height: 168px;
  254. background-color: #cdc4c1;
  255. -webkit-transition: opacity 0.4s linear;
  256. -webkit-transition: all 0.4s linear;
  257. -moz-transition: all 0.4s linear;
  258. -o-transition: all 0.4s linear;
  259. }
  260.  
  261. .inside {
  262. width: 110px;
  263. padding: 10px;
  264. padding-top: 8px;
  265. font-family:'arial';
  266. text-transform:;
  267. font-size: 9px;
  268. line-height: 150%;
  269. color: #121111; /*Change here the text color*/
  270. background-color: #d1d1d1; /*Change here the inside background color*/
  271. letter-spacing: 1px;
  272. text-align: center;
  273. padding-bottom:1000px;
  274. opacity: 0;
  275. -webkit-transition: opacity 0.3s linear;
  276. -webkit-transition: all 0.3s linear;
  277. -moz-transition: all 0.3s linear;
  278. -o-transition: all 0.3s linear;
  279. }
  280.  
  281. .inside:hover {
  282. opacity: 1;
  283. -webkit-transition: opacity 0.3s linear;
  284. -webkit-transition: all 0.3s linear;
  285. -moz-transition: all 0.3s linear;
  286. -o-transition: all 0.3s linear;
  287. }
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317. ::-webkit-scrollbar-thumb{
  318. background-color: #3a3a3a;
  319. border: 2px solid #3a3a3a;
  320. height:auto;
  321. }
  322.  
  323. ::-webkit-scrollbar {
  324. height:auto;
  325. width:4px;
  326.  
  327. background:transparent;
  328. }
  329.  
  330.  
  331. iframe#tumblr_controls {
  332. white-space:nowrap;
  333. -webkit-filter: invert(100%);
  334. -moz-filter: invert(100%);
  335. -o-filter: invert(100%);
  336. -ms-filter: invert(100%);
  337. filter: invert(100%);
  338. opacity:.2;transition: .8s ease-in-out;
  339. -webkit-transition: .8s ease-in-out;
  340. -moz-transition: .8s ease-in-out;
  341. -o-transition: .8s ease-in-out;
  342. }
  343.  
  344. h1 {
  345. font-weight:normal;
  346. font-size:15px;
  347. text-align:center;
  348. font-style:normal;
  349. font-family:'georgia';
  350. line-height:100%;
  351. letter-spacing:1px;
  352. text-transform:uppercase;
  353. color:{color:text};
  354. }
  355.  
  356. h2 {
  357. font-size:10px;
  358. text-align:center;
  359. line-height:100%;
  360. letter-spacing:-0.5px;
  361. color:{color:text};
  362. font-weight:bold;
  363. text-transform:uppercase;
  364. padding:5px;
  365. padding-bottom:2px;
  366. }
  367.  
  368. blockquote {
  369. padding-left:20px;
  370. border-left:2px solid #505050;
  371. margin-left:30px;
  372. border-radius:5px;
  373.  
  374. }
  375.  
  376.  
  377.  
  378. body {
  379. background:#cdcdcd;
  380. margin:0px;
  381. color:{color:text};
  382. font-family:arial;
  383. line-height:15px;
  384. font-size:11px;
  385. line-height:100%;
  386. letter-spacing:0px;
  387. text-align:justify;
  388. background-image:url('http://i.imgur.com/3TDmjL8.png?1');
  389. background-repeat: no-repeat;
  390. }
  391.  
  392. b {
  393. color: #505050;
  394. text-shadow: 0 0 6px #979797;
  395. font-family: times;
  396. text-transform:uppercase;
  397.  
  398. font-size:16px;
  399. letter-spacing:1px;
  400. }
  401.  
  402.  
  403. a {
  404. text-decoration:none;
  405. outline:none;
  406. -moz-outline-style:none;
  407. color:{color:link};
  408. -moz-transition-duration:0.5s;
  409. -webkit-transition-duration:0.5s;
  410. -o-transition-duration:0.5s;
  411. }
  412.  
  413. a:hover {
  414. outline:none;
  415. -moz-outline-style:none;
  416. color:{color:link hover};
  417. }
  418.  
  419. img {
  420. border:none;
  421. }
  422.  
  423.  
  424. #post {
  425. width:250px;
  426. padding-bottom:40px;
  427. padding:25px;
  428. margin-top:-25px;
  429. -webkit-filter:grayscale(50%);
  430. -webkit-transition: all 0.6s ease-in-out;
  431. opacity: 1.0;
  432.  
  433. }
  434.  
  435. #post:hover{
  436. -webkit-filter:none;
  437. -webkit-transition: all 0.6s ease-in-out;
  438. opacity: 1.0;
  439. }
  440.  
  441.  
  442.  
  443. #entries {
  444. left:600px;
  445. top:330px;
  446. width:305px;
  447. height:200px;
  448. overflow-x:hidden;
  449. overflow-y:scroll;
  450. position:absolute;
  451. padding-left:20px;
  452. padding-right:1px;
  453. font-size:11px;
  454. font-family:'Lato';
  455. font-weight:300;
  456. letter-spacing:1px;
  457. font-family:georgia;
  458. }
  459.  
  460. z-index:999;
  461.  
  462. }
  463.  
  464. #line {
  465. width:250px;
  466. height:1px;
  467. margin-top:-6px;
  468. background-color:#e8e8e8;
  469. }
  470.  
  471.  
  472. #sidebar {
  473. color:{color:text};
  474. position:fixed;
  475. width:350px;
  476. height:auto;
  477. margin-top:680px;
  478. margin-left:450px;
  479. text-align:left;
  480. }
  481.  
  482. #sidebarimage img {
  483. width:350px;
  484. height:130px;
  485. border-radius:90px;
  486. margin-top:0px;
  487. margin-bottom:5px;
  488. }
  489.  
  490. .links {
  491. display:inline-block;
  492. position:fixed;
  493. font-family:cambria;
  494. width:260px;
  495. margin-top:-288px;
  496. margin-left:100px;
  497. font-size:7px;
  498. text-transform:uppercase;
  499. text-align:center;
  500. line-height:330%;
  501. -webkit-transition: all .5s linear;
  502. }
  503.  
  504.  
  505. .links a{
  506. display:inline-block;
  507. width:5px;
  508. border-radius:90px;
  509. height:5px;
  510. background:#eee;
  511. line-height:330%;
  512. border-right:1px solid #ddd;
  513. border-bottom:1px solid #ddd;
  514. border-left:1px solid #ddd;
  515. border-top:1px solid #ddd;
  516. margin-left:9px;
  517. margin-right:9px;
  518. text-decoration:none;
  519. -moz-transition-duration:.2s;
  520. -webkit-transition-duration:.2s;
  521. -o-transition-duration:.2s;
  522.  
  523. }
  524.  
  525. .links a:hover {
  526. border-left:1px solid #dcd7c6;
  527. Border-top:1px solid #dcd7c6;
  528. border-right:1px solid #dcd7c6;
  529. border-bottom:1px solid #dcd7c6;
  530. background:#dcd7c6;
  531. width:5px;
  532. height:5px;
  533. -moz-transition-duration:0.2s;
  534. -webkit-transition-duration:0.2s;
  535. -o-transition-duration:0.2s;
  536.  
  537. }
  538.  
  539.  
  540.  
  541.  
  542. #description {
  543. width:340px;
  544. font-family:times;
  545. font-size:10px;
  546. margin-bottom:0px;
  547. margin-top:15px;
  548. margin-left:-5px;
  549. text-align:center;
  550. color: {color:text};
  551. letter-spacing:0px;
  552. line-height:140%;
  553. }
  554.  
  555. #description a {
  556. color:{color:link};
  557. }
  558.  
  559. #description a:hover {
  560. color:{color:link hover};
  561. }
  562.  
  563. #pagination {
  564. font-family:'Baskerville';
  565. width:140px;
  566. font-size:10px;
  567. margin-top:-317px;
  568. margin-left:280px;
  569. padding-left:5px;
  570. letter-spacing:1px;
  571. text-transform:uppercase;
  572.  
  573. text-align:center;
  574. }
  575.  
  576. #pagination a {
  577. color:#fff;
  578. }
  579.  
  580. #info {
  581. font-family:arial;
  582. width:250px;
  583. margin-top:5px;
  584. padding-top:2px;
  585. font-size:7px;
  586. color:{color:text};
  587. text-transform:uppercase;
  588. letter-spacing:1px;
  589. font-style:normal;
  590. text-align:center;
  591.  
  592. outline:1px #7d8085 dotted;
  593.  
  594. -moz-transition-duration:0.2s;
  595. -webkit-transition-duration:0.2s;
  596. -o-transition-duration:0.2s;
  597. }
  598.  
  599. #info a {
  600. color:{color:link};
  601. background:transparent;
  602.  
  603. padding:1px;
  604.  
  605. font-style:normal;
  606. }
  607.  
  608. #info a:hover {
  609. color:{color:link hover};
  610. -moz-transition-duration:0.2s;
  611. -webkit-transition-duration:0.2s;
  612. -o-transition-duration:0.2s;
  613. }
  614.  
  615. .tags {
  616. font-family:arial;
  617. font-style:normal;
  618. width:250px;
  619. text-transform:normal;
  620. font-style:normal;
  621. line-height:120%;
  622. margin-top:15px;
  623. font-size:8px;
  624. text-align:center;
  625. -moz-transition-duration:0.5s;
  626. -webkit-transition-duration:0.5s;
  627. -o-transition-duration:0.5s;
  628. }
  629. .tags a{
  630. color:{color:link};
  631. -moz-transition-duration:0.2s;
  632. -webkit-transition-duration:0.2s;
  633. -o-transition-duration:0.2s;
  634. }
  635. .tags a:hover{
  636. color:{color:link hover};
  637. -moz-transition-duration:0.2s;
  638. -webkit-transition-duration:0.2s;
  639. -o-transition-duration:0.2s;
  640. }
  641.  
  642. .audio{
  643. background-color:#e4e4e4;
  644. height:65px;
  645. overflow:hidden;
  646. }
  647.  
  648. .question {
  649. padding:9px;
  650. text-align:center;
  651. text-transform:italic;
  652. color:#505050;
  653.  
  654. background:transparent;
  655. line-height:100%;
  656.  
  657. }
  658.  
  659. .answer {
  660. text-align:left;
  661. padding:7px;
  662. color:{color:text};
  663. }
  664.  
  665. #credit {
  666. font-size:9px;
  667. font-family:cambria;
  668. font-style:italic;
  669. letter-spacing:1px;
  670. -moz-transition-duration:0.5s;
  671. -webkit-transition-duration:0.5s;
  672. -o-transition-duration:0.5s;
  673. }
  674.  
  675. #credit a {
  676. background-color:#505050;
  677. padding:5px;
  678. border:1px solid #e9e9e9;
  679. position:fixed;
  680. right:15px;
  681. bottom:10px
  682. }
  683.  
  684. #credit a:hover {
  685. color:#080408;
  686. background-color:#6c4a49;
  687. }
  688.  
  689. {CustomCSS}</style></head><body>
  690.  
  691.  
  692.  
  693.  
  694.  
  695. <div id="tab1">
  696. <div class="inside" style"border-radius: 13px;">
  697. updaaaate.
  698.  
  699.  
  700.  
  701.  
  702. </div>
  703. </div>
  704.  
  705. <div id="tab2">
  706. <div class="inside" style"border-radius: 13px;">
  707. updateeeee #2.
  708.  
  709.  
  710.  
  711.  
  712. </div>
  713. </div>
  714.  
  715.  
  716.  
  717.  
  718.  
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727.  
  728.  
  729.  
  730.  
  731.  
  732.  
  733.  
  734.  
  735.  
  736.  
  737.  
  738.  
  739.  
  740.  
  741.  
  742. <div id="sidebar">
  743.  
  744. <div id="sidebarimage">
  745. <a title="{text:homelink title}" href="/"><img src="{image:sidebar}"> </a></div>
  746.  
  747.  
  748. <div id="description">
  749. {Description}</div>
  750. <div class="links">
  751. <a href="/"></a>
  752. <a href="#?w=250" rel="box1" class="poplight"></a>
  753. <a href="#?w=250" rel="box2" class="poplight"></a>
  754. <a href="#?w=280" rel="box5" class="poplight"></a>
  755. <a href="#?w=350" rel="box3" class="poplight"></a>
  756.  
  757.  
  758. </div>
  759. <p></p><br><br><br>
  760.  
  761. <div id="pagination">
  762. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">back</a>{/block:PreviousPage} &nbsp;&nbsp;&nbsp; {block:NextPage}<a href="{NextPage}">next</a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  763. </div>
  764.  
  765. </div>
  766.  
  767. <div id="entries">{block:Posts}<div id="post">
  768.  
  769. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  770.  
  771. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  772.  
  773. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  774.  
  775. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  776.  
  777. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  778.  
  779. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  780.  
  781. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}<br>{block:TrackName}&nbsp;&nbsp;&nbsp;&nbsp; {TrackName}{/block:TrackName}
  782. {block:Artist} &nbsp;—&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  783.  
  784. {block:Video}{Video-2500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  785.  
  786. {block:Answer}<div class="question">&nbsp;&nbsp; {ASKER}:<br>&nbsp;&nbsp; {Question}</div><div class="answer">{Answer}</div>{/block:answer}
  787.  
  788. {block:Date}<div id="info"> <a title="{TimeAgo}" href="{Permalink}">{Month} &nbsp;{DayOfMonth}</a>
  789. {/block:Date} {block:NoteCount}&nbsp; <a href="{Permalink}">( {NoteCount} )</a> {/block:NoteCount}
  790.  
  791. &nbsp;{block:RebloggedFrom} <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a> {/block:RebloggedFrom}{block:ContentSource} &nbsp; <a title="{SourceTitle}" href="{SourceURL}">source</a>{/block:ContentSource} {/block:RebloggedFrom} </br>
  792. </div>
  793.  
  794. <div id="line"></div>
  795.  
  796. {block:HasTags}
  797. <div class="tags">
  798. {block:Tags} <a href="{TagURL}"> <big>#</big> {Tag} &nbsp; </a> {/block:Tags}</div>
  799. {/block:HasTags}
  800. <div class="postnote">
  801. {block:PostNotes}{PostNotes}{/block:PostNotes}
  802. </div>
  803.  
  804. </div>
  805.  
  806. {/block:Posts}
  807.  
  808.  
  809. </div>
  810. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</a></div></div>
  811.  
  812. </body>
  813.  
  814.  
  815.  
  816.  
  817. <div id="box1" class="popup_block">
  818. <iframe frameborder="0" height="250" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/adeloes.tumblr.com" width="100%" style=" ;
  819. background-repeat:no-repeat; background-color:#1f1e1f" ></iframe>
  820. </div>
  821.  
  822.  
  823.  
  824.  
  825.  
  826. <div id="box5" class="popup_block" style="scrolling: yes; overflow-x: hidden; height: 400px; border: 1px dotted #000; background: #e5e5e5; font-size:9px;
  827. font-family:arial; text-transform:lowercase; letter-spacing:0px;">
  828. regular pop-up pageee.
  829.  
  830. </div>
  831.  
  832. <div id="box3" class="popup_block" style="scrolling: no; overflow-x: hidden; height: 210px; border: 0px dotted #000; border-radius:0px; background: #e5e5e5; font-size:9px; text-transform:lowercase;
  833. font-family:arial; letter-spacing:0px;";>
  834.  
  835. regular pop-up page that leads somewhere <a href="#?w=250" rel="box7" class="poplight">new</a>.
  836.  
  837.  
  838. </p></p>
  839. </div>
  840.  
  841.  
  842.  
  843. <div id="box7" class="popup_block" style="scrolling: no; overflow-x: hidden; height: 200px; border: 0px solid #000; border-radius:7px; text-transform:lowercase; background: #e5e5e5;">
  844. <p>pop-up page in a pop-up page.
  845.  
  846.  
  847.  
  848.  
  849. </div>
  850.  
  851.  
  852.  
  853.  
  854. <div id="box8" class="popup_block" style="scrolling: yes; overflow-x: hidden; height: 450px; border: 1px dotted #000; text-transform:lowercase; background: #e5e5e5;">
  855. <figure class="tmblr-full" data-orig-height="170" data-orig-width="350">
  856.  
  857. pop-up page in the pop-up page.
  858.  
  859.  
  860.  
  861.  
  862.  
  863.  
  864.  
  865. </div>
  866.  
  867.  
  868.  
  869.  
  870. <div id="box2" class="popup_block" style="scrolling: no; overflow-x: hidden; font-size:9px;
  871. font-family:georgia; color:#fff; border-radius: 25px;
  872. border: 1px dotted #000; text-transform:lowercase; letter-spacing:0px; background-image:url('image goes here');
  873. background-repeat:no-repeat; width:300px; height:400px; background-color:#1f1e1f">
  874. <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  875.  
  876. text goes hereeeee.
  877.  
  878.  
  879.  
  880. </div>
  881.  
  882.  
  883. </div></div></div></div></div></div></div></div></div></div>
  884.  
  885.  
  886.  
  887.  
  888. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement