Advertisement
lojsan7

sylviatheme

May 1st, 2015
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.59 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. <script type="text/javascript"
  6. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  7. <script>
  8. $(document).ready(function() {
  9. //
  10. $('a.poplight[href^=#]').click(function() {
  11. var popID = $(this).attr('rel'); //Get Popup Name
  12. var popURL = $(this).attr('href'); //Get Popup href to define size
  13. var query= popURL.split('?');
  14. var dim= query[1].split('&');
  15. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  16. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://i.imgur.com/lPXQwmO.png" class="btn_close" title="Close" alt="Close" /></a>');
  17. var popMargTop = ($('#' + popID).height() + 80) / 2;
  18. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  19. //Apply Margin to Popup
  20. $('#' + popID).css({
  21. 'margin-top' : -popMargTop,
  22. 'margin-left' : -popMargLeft
  23. });
  24. $('body').append('<div id="fade"></div>');
  25. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  26. return false;
  27. });
  28. $('a.close, #fade').live('click', function() {
  29. $('#fade , .popup_block').fadeOut(function() {
  30. $('#fade, a.close').remove(); //fade them both out
  31. });
  32. return false;
  33. });
  34. });
  35. </script>
  36. <title>{Title}</title>
  37. <link rel="shortcut icon" href="{Favicon}">
  38. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  39. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  40.  
  41. <!---- this is theme 44 by Hollywhood
  42. please don't remove the credit
  43. thank you
  44. --->
  45.  
  46. <meta name="color:Background" content="#ffffff"/>
  47. <meta name="color:Text" content="#9B9B9B"/>
  48. <meta name="color:Link" content="#b8b8b8"/>
  49. <meta name="color:scrollbar" content="#ffffff">
  50. <meta name="color:title" content="#999999">
  51. <meta name="color:Link Hover" content="#eeeeee"/>
  52.  
  53. <meta name="image:sidebar" content=""/>
  54. <meta name="text:sidebartitle" content="">
  55.  
  56. <meta name="text:link1" content="" />
  57. <meta name="text:link1 url" content="/">
  58. <meta name="text:link2" content="" />
  59. <meta name="text:link2 url" content="/">
  60. <meta name="text:link3" content="" />
  61. <meta name="text:link3 url" content="/">
  62. <meta name="text:link4" content="" />
  63. <meta name="text:link4 url" content="/">
  64. <meta name="text:link5" content="" />
  65. <meta name="text:link5 url" content="/">
  66.  
  67.  
  68. <style type="text/css">
  69.  
  70. .popup_block{
  71. display: none;
  72. background: #ec9ea3;
  73. background-image: url();
  74. padding: 10px;
  75. font-family: Garamond;
  76. float: left;
  77. font-size: 10px;
  78. position: fixed;
  79. top: 50%; left: 60%;
  80. z-index: 2;
  81. border: 2px solid #f0f0f0;
  82. -moz-box-shadow: 0 0 5px #CFCFCF;
  83. -webkit-box-shadow: 0 0 5px #CFCFCF;
  84. -webkit-border-radius: 10px;
  85. -moz-border-radius: 10px;
  86. border-radius: 10px;
  87. }
  88. img.btn_close {
  89. float: right;
  90. margin: -5px -5px 0 0;
  91. }
  92. *html .popup_block {
  93. position: absolute;
  94. }
  95.  
  96. ::-webkit-scrollbar-thumb{
  97. background-color: #ffffff;
  98. border: 2px solid transparent;
  99. height:5px;
  100. }
  101.  
  102. ::-webkit-scrollbar {
  103. height:auto;
  104. width:11px;
  105. background-color: transparent;
  106. border:5px solid transparent;
  107. }
  108.  
  109.  
  110. iframe#tumblr_controls {
  111. white-space:nowrap;
  112. -webkit-filter: invert(100%);
  113. -moz-filter: invert(100%);
  114. -o-filter: invert(100%);
  115. -ms-filter: invert(100%);
  116. filter: invert(100%);
  117. opacity:.2;transition: .8s ease-in-out;
  118. -webkit-transition: .8s ease-in-out;
  119. -moz-transition: .8s ease-in-out;
  120. -o-transition: .8s ease-in-out;
  121. }
  122.  
  123. h1 {
  124. font-weight:normal;
  125. font-size:15px;
  126. text-align:center;
  127. font-style:normal;
  128. line-height:100%;
  129. letter-spacing:1px;
  130. text-transform:normal;
  131. color:{color:text};
  132. }
  133.  
  134. h2 {
  135. font-size:22px;
  136. text-align:center;
  137. line-height:100%;
  138. letter-spacing:-0.5px;
  139. color:#f96790;
  140. text-shadow:1px 1px 15px #fbc5d4;
  141. font-weight:bold;
  142. text-transform:uppercase;
  143. padding:5px;
  144. padding-bottom:2px;
  145. }
  146.  
  147.  
  148. blockquote {
  149. border-left:1px solid #a35178;
  150. padding:17px;
  151. margin:10px 2px 0px 10px
  152. background-color:#a35178;
  153. }
  154.  
  155. body {
  156. background:{color:background};
  157. background-image: url('http://i.imgur.com/50wCx6d.png');
  158. background-repeat: no-repeat;
  159. background-size: center;
  160. background-attachment: fixed;
  161. position: absolute;
  162. margin-left:720px;
  163. color:{color:text};
  164. font-family:arno pro;
  165. font-size:14px;
  166. line-height:100%;
  167. }
  168.  
  169. b,bold,strong {
  170. color:#601b35;
  171. font-family:times;
  172. font-size:16px;
  173. text-shadow: 1px 1px 15px #a6a7ad;
  174. }
  175.  
  176. i,em,italic {
  177. color:#f0d2dd;
  178. font-family:times;
  179. font-size:15px;
  180. text-shadow: 1px 1px 15px #ffffff;
  181. }
  182.  
  183. a {
  184. text-decoration:none;
  185. outline:none;
  186. -moz-outline-style:none;
  187. color:{color:link};
  188. -moz-transition-duration:0.5s;
  189. -webkit-transition-duration:0.5s;
  190. -o-transition-duration:0.5s;
  191. }
  192.  
  193. a:hover {
  194. text-decoration:none;
  195. outline:none;
  196. -moz-outline-style:none;
  197. color:{color:link hover};
  198. }
  199.  
  200. img {
  201. border:none;
  202. }
  203.  
  204.  
  205. #post {
  206. width:300px;
  207. margin-top:0px;
  208. margin-bottom:50px;
  209. }
  210.  
  211. #post:hover{
  212. -webkit-filter:none;
  213. -webkit-transition: all 0.6s ease-in-out;
  214. }
  215.  
  216. #container {margin: auto;
  217. position:fixed;
  218. width: 900px;}
  219.  
  220.  
  221. #entries {
  222. padding:10px;
  223. left:640px;
  224. top:80px;
  225. position:fixed;
  226. background-color:transparent;
  227. width:380px;
  228. height:250px;
  229. top:200px;
  230. padding: 20px;
  231. overflow-x:scroll;
  232. scroll:left;
  233. overflow-x:hidden;
  234. }
  235.  
  236.  
  237. #theme {
  238. width:250px;
  239. margin:0 auto -12px auto;
  240. }
  241.  
  242. #sidebar {
  243. color:{color:text};
  244. width:100px;
  245. height:auto;
  246. margin-top:90px;
  247. margin-left:165px;
  248. text-align:left;
  249. }
  250.  
  251. #sidebarimage img {
  252. width:100px;
  253. opacity:.9;
  254. margin-top:-10px;
  255. margin-bottom:0px;
  256. margin-left:43px;
  257. }
  258.  
  259. #links {
  260. font-family:'Gabriola';
  261. width:220px;
  262. margin-top:-45px;
  263. margin-left:180px;
  264. font-size:30px;
  265. text-transform:uppercase;
  266. text-align:center;
  267. line-height:280%;
  268. }
  269.  
  270. #links a{
  271. line-height:280%;
  272. border-bottom:0px solid #fff;
  273. margin-top:4px;
  274. margin-left:13px;
  275. color: #e2989c;
  276. text-shadow:1px 1px 15px #a4a6ab;
  277. -moz-transition-duration:.2s;
  278. -webkit-transition-duration:.2s;
  279. -o-transition-duration:.2s;
  280. }
  281.  
  282. #links a:hover {
  283. color: {color:link hover};
  284. width:60px;
  285. -moz-transition-duration:0.2s;
  286. -webkit-transition-duration:0.2s;
  287. -o-transition-duration:0.2s;
  288. }
  289.  
  290. #description {
  291. width:300px;
  292. font-family:times;
  293. margin-top:-2px;
  294. margin-left:-58px;
  295. text-align:center;
  296. font-size:9px;
  297. color: {color:text};
  298. letter-spacing:0px;
  299. line-height:170%;
  300. -moz-transition-duration:1s;
  301. -webkit-transition-duration:1s;
  302. -o-transition-duration:1s;
  303. }
  304.  
  305. #description a {
  306. color:{color:link};
  307. }
  308.  
  309. #description a:hover {
  310. color:{color:link hover};
  311. }
  312.  
  313. .sidebartitle {
  314. width:300px;
  315. text-align:center;
  316. font-family:'californian fb';
  317. line-height:120%;
  318. margin-left:-58px;
  319. word-spacing:2px;
  320. font-style:italic;
  321. font-size:16px;
  322. margin-top:10px;
  323. color:{color:title};
  324. }
  325.  
  326. #pagination {
  327. font-family:corbel;
  328. width:250px;
  329. font-size:9px;
  330. margin-top:25px;
  331. margin-left:-8px;
  332. padding-left:5px;
  333. letter-spacing:1px;
  334. text-align:center;
  335. text-transform:uppercase;
  336. }
  337.  
  338. #pagination a {
  339. color:{color:link};
  340. }
  341.  
  342. #info {
  343. font-family:times;
  344. width:250px;
  345. margin-top:8px;
  346. padding-top:4px;
  347. font-size:10px;
  348. border-top:1px solid #382a2c;
  349. opacity:0;
  350. color:{color:text};
  351. text-transform:uppercase;
  352. font-style:normal;
  353. text-align:left;
  354. -moz-transition-duration:0.5s;
  355. -webkit-transition-duration:0.5s;
  356. -o-transition-duration:0.5s;
  357. }
  358.  
  359. #info a {
  360. color:{color:link};
  361. }
  362.  
  363. #info a:hover {
  364. color:{color:link hover};
  365. }
  366.  
  367. .tags {
  368. font-family:times;
  369. font-style:normal;
  370. width:250px;
  371. margin-top:4px;
  372. text-transform:normal;
  373. font-style:normal;
  374. line-height:120%;
  375. padding-top:0px;
  376. font-size:9px;
  377. opacity:0;
  378. letter-spacing:1px;
  379. text-align:left;
  380. -moz-transition-duration:0.5s;
  381. -webkit-transition-duration:0.5s;
  382. -o-transition-duration:0.5s;
  383. }
  384. .tags a{
  385. color:{color:link};
  386. -moz-transition-duration:0.2s;
  387. -webkit-transition-duration:0.2s;
  388. -o-transition-duration:0.2s;
  389. }
  390. .tags a:hover{
  391. color:{color:link hover};
  392. -moz-transition-duration:0.2s;
  393. -webkit-transition-duration:0.2s;
  394. -o-transition-duration:0.2s;
  395. }
  396.  
  397. #post:hover #info{
  398. opacity:1;
  399. -moz-transition-duration:1s;
  400. -webkit-transition-duration:1s;
  401. -o-transition-duration:1s;
  402. }
  403. #post:hover .tags{
  404. opacity:1;
  405. -moz-transition-duration:1s;
  406. -webkit-transition-duration:1s;
  407. -o-transition-duration:1s;
  408. }
  409.  
  410. .audio{
  411. background-color:#efa1a6;
  412. height:65px;
  413. overflow:hidden;
  414. }
  415.  
  416. #ask {
  417. float:left;
  418. color:{color:text};
  419. }
  420.  
  421. #credit {
  422. font-size:9px;
  423. font-family:cambria;
  424. font-style:italic;
  425. letter-spacing:1px;
  426. -moz-transition-duration:0.5s;
  427. -webkit-transition-duration:0.5s;
  428. -o-transition-duration:0.5s;
  429. }
  430.  
  431. #credit a {
  432. background-color:#fff;
  433. padding:5px;
  434. border:1px solid #e9e9e9;
  435. position:fixed;
  436. right:15px;
  437. bottom:10px
  438. }
  439.  
  440. #credit a:hover {
  441. color:#fff;
  442. background-color:#191919;
  443. }
  444.  
  445. {CustomCSS}
  446.  
  447. /************** FLAGS UPDATES TAB **************/
  448. /* tutorial by deanlirium|tumblr (clarence.tk) */
  449.  
  450. #flags {
  451. position:fixed;
  452. top:20px; /* distance from the top of the page - adjust as you wish! */
  453. left:-10px;
  454. text-align:center;
  455. text-transform:uppercase; /* the text is in all caps - delete this line and it won't be */
  456. color:#8C8C8C; /* change text color: use sites like http://www.colorpicker.com/ or the tumblr thing, copy the code it gives you and paste it! remember the #! */
  457. font-size:8px; /* adjust font size */
  458. letter-spacing:1px;
  459. z-index:2147483607;
  460. font-family:calibri;}
  461.  
  462.  
  463. #flag1 {
  464. border:solid 6px #a56483; /* flag color */
  465. border-right:solid 6px transparent; /* IMPORTANT! -- to make the flag thicker increase the border and border-right value; it looks better if they both have the same number! */
  466. padding-left:10px;
  467. width:20px; /* increase or decrease to change the lenght of the CLOSED flag */
  468. height:0px;
  469. position:absolute;
  470. -moz-transition:all 0.7s ease-out;
  471. -webkit-transition:all 0.7s ease-out;
  472. -o-transition:all 0.7s ease-out;}
  473.  
  474. #flag1:hover {
  475. width:180px;} /* lenght of the OPEN flag */
  476.  
  477. #upd1 {
  478. position:absolute;
  479. width:110px;
  480. padding:10px;
  481. padding-left:60px; /* adjust this if you've changed the length of the open flag, subtract what you add here to the 'left' value below */
  482. left:-180px;
  483. margin-top:6px; /* keep this number equal to the 'border' value for the flag */
  484. opacity:0;
  485. -moz-transition:all 0.7s ease-out;
  486. -webkit-transition:all 0.7s ease-out;
  487. -o-transition:all 0.7s ease-out;}
  488.  
  489. #flag1:hover #upd1{
  490. left:0px;
  491. opacity:1;}
  492.  
  493. /* following is the coding for the other flags - same as above! */
  494.  
  495. #flag2 {
  496. border:solid 6px #b37995;
  497. margin-top:20px;
  498. position:absolute;
  499. border-right:solid 6px transparent;
  500. padding-left:10px;
  501. width:20px;
  502. height:0px;
  503. -moz-transition:all 0.7s ease-out;
  504. -webkit-transition:all 0.7s ease-out;
  505. -o-transition:all 0.7s ease-out;}
  506.  
  507. #flag2:hover {
  508. width:180px;}
  509.  
  510. #upd2 {
  511. position:absolute;
  512. width:110px;
  513. padding:10px;
  514. padding-left:60px;
  515. left:-180px;
  516. margin-top:6px;
  517. opacity:0;
  518. -moz-transition:all 0.7s ease-out;
  519. -webkit-transition:all 0.7s ease-out;
  520. -o-transition:all 0.7s ease-out;}
  521.  
  522. #flag2:hover #upd2{
  523. left:0px;
  524. opacity:1;}
  525.  
  526. /*if you want more flags, just copy the part of the code below and change the numbers - then increase the margin-top value for the #flag(number) adding 20px each new flag! copy from here: */
  527.  
  528. #flag3 {
  529. border:solid 6px #bd8ea5;
  530. position:absolute;
  531. margin-top:40px; /* this one! */
  532. border-right:solid 6px transparent;
  533. padding-left:10px;
  534. width:20px;
  535. height:0px;
  536. -moz-transition:all 0.7s ease-out;
  537. -webkit-transition:all 0.7s ease-out;
  538. -o-transition:all 0.7s ease-out;}
  539.  
  540. #flag3:hover {
  541. width:180px;}
  542.  
  543. #upd3 {
  544. position:absolute;
  545. width:110px;
  546. padding:10px;
  547. padding-left:60px;
  548. left:-180px;
  549. margin-top:6px;
  550. opacity:0;
  551. -moz-transition:all 0.7s ease-out;
  552. -webkit-transition:all 0.7s ease-out;
  553. -o-transition:all 0.7s ease-out;}
  554.  
  555. #flag3:hover #upd3{
  556. left:0px;
  557. opacity:1;}
  558.  
  559. /* to here */
  560.  
  561. </style></head><body>
  562.  
  563. <div id="flags">
  564. <div id="flag1"><div id="upd1">
  565.  
  566. write here for the first flag
  567.  
  568. </div></div>
  569.  
  570. <div id="flag2"><div id="upd2">
  571.  
  572. here for the second flag
  573.  
  574. </div></div>
  575.  
  576. <!---- if you want more flags, copy from here ---->
  577.  
  578. <div id="flag3"><div id="upd3">
  579.  
  580. here for the third one
  581.  
  582. </div></div>
  583.  
  584. <!---- to here and change the numbers according to your css! ---->
  585.  
  586. <!---- thanks for passing by and using this tutorial you're raaaaaaaaad c: ---->
  587.  
  588. </div>
  589.  
  590. <div id="theme">
  591.  
  592. <div id="container">
  593.  
  594. <div id="sidebar">
  595.  
  596. <div id="sidebarimage">
  597. <a href="/"><img src="{image:sidebar}"></a></div>
  598.  
  599. <div class="sidebartitle">{text:sidebartitle}</div>
  600.  
  601. <div id="links">
  602. <a href="{text:link1 url}" title="{text:link1}">✞</a><br>
  603. <a href="#?w=500" rel="02" class="poplight">✞</a><br>
  604. <a href="{text:link3 url}" title="{text:link3}">✞</a><br>
  605. <a href="{text:link4 url}" title="{text:link4}">✞</a><br>
  606. <a href="{text:link5 url}" title="{text:link5}">✞</a><br>
  607. </a>
  608.  
  609. </div>
  610.  
  611. <div id="description">{description}</div>
  612.  
  613. </div>
  614.  
  615. <div id="entries">{block:Posts}<div id="post">
  616.  
  617. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  618.  
  619. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  620.  
  621. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  622.  
  623. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  624.  
  625. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  626.  
  627. {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}
  628.  
  629. {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}
  630. {block:Artist} &nbsp;—&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  631.  
  632. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  633.  
  634. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}" style="margin-left:7px;margin-right:13px;border:1px solid #e3e3e3;padding:2px;"></div> <em>{Asker}:</em><br> "{Question}"<br><br>{Answer}{/block:Answer}
  635.  
  636. {block:Date}<div id="info"> <a title="{TimeAgo}" href="{Permalink}">{Month} &nbsp;{DayOfMonth}</a>
  637. {/block:Date} {block:NoteCount}&nbsp; ( <font color=#f6c6cd>♥</font> <a href="{Permalink}">{NoteCount}</a> ) {/block:NoteCount}
  638.  
  639. {block:RebloggedFrom}&nbsp; <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a> {/block:RebloggedFrom}{block:ContentSource} &nbsp; / &nbsp; <a title="{SourceTitle}" href="{SourceURL}">source</a>{/block:ContentSource} {/block:RebloggedFrom} &nbsp; <a href="{ReblogURL}"target="_blank" title="reblog this post"><big>+</big> </a>
  640. </div>
  641.  
  642.  
  643. {block:HasTags}
  644. <div class="tags">
  645. {block:Tags} <a href="{TagURL}"> {Tag}, &nbsp; </a> {/block:Tags}</div>
  646. {/block:HasTags}
  647. <div class="postnote">
  648. {block:PostNotes}{PostNotes}{/block:PostNotes}
  649. </div>
  650. </div>
  651. {/block:Posts}
  652.  
  653. <div id="pagination">
  654. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">←&nbsp;&nbsp;&nbsp; future</a>{/block:PreviousPage} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {block:NextPage}<a href="{NextPage}">past&nbsp;&nbsp;&nbsp; →</a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  655.  
  656. </div>
  657. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</div> </div>
  658.  
  659. </body>
  660.  
  661. <div id="02" class="popup_block">
  662.  
  663. <Center><font size="5" color="#f0f0f0">Ask Me Anything<p></font><iframe frameborder="0" scrolling="yes" width="100%" height="150" src="http://www.tumblr.com/ask_form/miamimamis.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form">
  664. </center></div>
  665.  
  666. </div></div></div></div></div></div></div></div></div></div
  667.  
  668. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement