Advertisement
micsco987

for skye uvu

Jun 6th, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.91 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><title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  7.  
  8. <!---- this is theme 30 by Hollywhood
  9. please don't remove the credit
  10. thank yo
  11. --->
  12.  
  13.  
  14. <!------THIS IS THE JAVASCRIPT FOR THE POPUP BOXES---->
  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. <!---end popup boxes--->
  47.  
  48.  
  49.  
  50. <meta name="color:Background" content="#ffffff"/>
  51. <meta name="color:Text" content="#9B9B9B"/>
  52. <meta name="color:Link" content="#b8b8b8"/>
  53. <meta name="color:border" content="#F2F2F2"/>
  54. <meta name="color:scrollbar" content="#D6D5D5">
  55. <meta name="color:Link Hover" content="#eeeeee"/>
  56.  
  57. <meta name="image:sidebar" content=""/>
  58.  
  59. <meta name="text:link 1" content="Link 1"/>
  60. <meta name="text:link 1 url" content="/"/>
  61. <meta name="text:link 2" content="Link 2"/>
  62. <meta name="text:link 2 url" content="/"/>
  63. <meta name="text:link 3" content="Link 3"/>
  64. <meta name="text:link 3 url" content="/"/>
  65. <meta name="text:link 4" content="Link 4"/>
  66. <meta name="text:link 4 url" content="/"/>
  67.  
  68. <style type="text/css">
  69.  
  70. ::-webkit-scrollbar-thumb{
  71. background-color: {color:scrollbar};
  72. border: 2px solid {color:background};
  73. height:auto;
  74. }
  75.  
  76. ::-webkit-scrollbar {
  77. height:auto;
  78. width:9px;
  79. background-color: {color:scrollbar};
  80. border: 4px solid {color:background};
  81. }
  82.  
  83.  
  84. iframe#tumblr_controls {
  85. white-space:nowrap;
  86. -webkit-filter: invert(100%);
  87. -moz-filter: invert(100%);
  88. -o-filter: invert(100%);
  89. -ms-filter: invert(100%);
  90. filter: invert(100%);
  91. opacity:.2;transition: .8s ease-in-out;
  92. -webkit-transition: .8s ease-in-out;
  93. -moz-transition: .8s ease-in-out;
  94. -o-transition: .8s ease-in-out;
  95. }
  96.  
  97. h1 {
  98. font-weight:normal;
  99. font-size:13px;
  100. text-align:center;
  101. font-style:normal;
  102. line-height:100%;
  103. letter-spacing:1px;
  104. text-transform:normal;
  105. color:{color:text};
  106. }
  107.  
  108. h2 {
  109. font-size:10px;
  110. text-align:center;
  111. line-height:100%;
  112. letter-spacing:-0.5px;
  113. color:{color:text};
  114. font-weight:bold;
  115. text-transform:uppercase;
  116. padding:5px;
  117. padding-bottom:2px;
  118. }
  119.  
  120.  
  121. blockquote {
  122. border-left:2px solid {color:text};
  123. padding-left:5px;
  124. margin:5px;
  125. }
  126.  
  127.  
  128. body {
  129. background:{color:background};
  130. margin:0px;
  131. color:{color:text};
  132. font-family:times;
  133. font-size:14px;
  134. line-height:120%;
  135. background-image:url("http://i288.photobucket.com/albums/ll191/skyepiie/new_character_zpsgzemh8tz.png");
  136. background-attachment: fixed;
  137. background-image:stretch;
  138. background-repeat: no-repeat;
  139. background-image:cover;
  140. background-position:left top;
  141. }
  142.  
  143. a {
  144. text-decoration:none;
  145. outline:none;
  146. -moz-outline-style:none;
  147. color:{color:link};
  148. -moz-transition-duration:0.5s;
  149. -webkit-transition-duration:0.5s;
  150. -o-transition-duration:0.5s;
  151. }
  152.  
  153. a:hover {
  154. text-decoration:none;
  155. outline:none;
  156. -moz-outline-style:none;
  157. color:{color:link hover};
  158. }
  159.  
  160. img {
  161. border:none;
  162. }
  163.  
  164. blockquote {
  165. padding-left:5px;
  166. border-left:2px solid;
  167. }
  168.  
  169. blockquote blockquote {
  170. padding-left:5px;
  171. border-left:2px solid;
  172. }
  173.  
  174. #theme {
  175. width:500px;
  176. margin:0 auto -12px auto;
  177. }
  178.  
  179. #post {
  180. width:330px;
  181. padding-bottom:30px;
  182. margin-top:20px;
  183. }
  184.  
  185.  
  186. #entries {
  187. padding:10px;
  188. left:485px;
  189. top:50px;
  190. position:fixed;
  191. background-color:transparent;
  192. width:340px;
  193. height:500px;
  194. top:70px;
  195. padding: 20px;
  196. overflow-x:scroll;
  197. scroll:left;
  198. overflow-x:hidden;
  199. }
  200.  
  201. #sidebar {
  202. color:{color:text};
  203. position:fixed;
  204. width:91px;
  205. height:auto;
  206. margin-top:200px;
  207. margin-left:-70px;
  208. text-align:left;
  209. }
  210.  
  211. #sidebarimage img {
  212. width:100px;
  213. margin-top:0px;
  214. margin-bottom:5px;
  215. padding:-1px;
  216. outline-offset:4px;
  217. }
  218.  
  219. #links {
  220. position:fixed;
  221. font-family:cambria;
  222. width:150px;
  223. top:200px;
  224. left:820px;
  225. font-size:40px;
  226. text-transform:uppercase;
  227. text-align:center;
  228. line-height:170%;
  229. }
  230.  
  231. #links a{
  232. line-height:170%;
  233. padding:1px;
  234. margin-top:1px;
  235. margin-left:2px;
  236. color:{color:link};
  237. -moz-transition-duration:.7s;
  238. -webkit-transition-duration:.7s;
  239. -o-transition-duration:.7s;
  240. }
  241.  
  242. #links a:hover {
  243. color: {color:link hover};
  244. -moz-transition-duration:.4s;
  245. -webkit-transition-duration:.4s;
  246. -o-transition-duration:.4s;
  247.  
  248. }
  249.  
  250. #description {
  251. width:103px;
  252. font-family:times;
  253. margin-bottom:0px;
  254. margin-top:20px;
  255. margin-left:-2px;
  256. text-align:justify;
  257. font-size:80%;
  258. color: {color:text};
  259. letter-spacing:1px;
  260. line-height:115%;
  261. }
  262.  
  263. #description a {
  264. color:{color:link};
  265. }
  266.  
  267. #description a:hover {
  268. color:{color:link hover};
  269. }
  270.  
  271. #pagination {
  272. font-family:cambria;
  273. width:103px;
  274. font-size:8px;
  275. text-transform:normal;
  276. margin-top:48px;
  277. margin-left:0px;
  278. padding-top:25px;
  279. letter-spacing:1px;
  280. font-style:normal;
  281. text-align:center;
  282. }
  283.  
  284. #pagination a {
  285. color:{color:link};
  286. }
  287.  
  288. #info {
  289. font-family:cambria;
  290. width:398px;
  291. margin-top:-13px;
  292. padding-top:1px;
  293. font-size:8px;
  294. letter-spacing:1px;
  295. color:{color:text};
  296. text-transform:lowercase;
  297. opacity:0;
  298. text-align:left;
  299. -moz-transition-duration:.7s;
  300. -webkit-transition-duration:.7s;
  301. -o-transition-duration:.7s;
  302. }
  303.  
  304. #info a {
  305. color:{color:link};
  306. text-align:right;
  307. }
  308.  
  309. #info a:hover {
  310. color:{color:link hover};
  311. }
  312. #post:hover #info {
  313. margin-top:3px;
  314. opacity:1;
  315. -moz-transition-duration:1.2s;
  316. -webkit-transition-duration:1.2s;
  317. -o-transition-duration:1.2s;
  318. }
  319.  
  320. .tags {
  321. font-family:cambria;
  322. font-style:normal;
  323. width:398px;
  324. text-transform:italic;
  325. color:{color:link};
  326. line-height:120%;
  327. opacity:0;
  328. font-size:8px;
  329. text-align:left;
  330. padding-top:7px;
  331. -moz-transition-duration:0.4s;
  332. -webkit-transition-duration:0.4s;
  333. -o-transition-duration:0.4s;
  334. }
  335.  
  336. #post:hover .tags {
  337. opacity:1;
  338. -moz-transition-duration:0.4s;
  339. -webkit-transition-duration:0.4s;
  340. -o-transition-duration:0.4s;
  341. }
  342.  
  343. .audio{
  344. background-color:#e5e5e5;
  345. height:65px;
  346. overflow:hidden;
  347. }
  348.  
  349. #ask {
  350. float:left;
  351. margin-left:10px;}
  352.  
  353. #credit {
  354. font-size:9px;
  355. font-family:cambria;
  356. font-style:italic;
  357. letter-spacing:1px;
  358. -moz-transition-duration:0.5s;
  359. -webkit-transition-duration:0.5s;
  360. -o-transition-duration:0.5s;
  361. }
  362.  
  363. #credit a {
  364. background-color:#fff;
  365. padding:5px;
  366. border:1px solid #e9e9e9;
  367. position:fixed;
  368. right:15px;
  369. bottom:10px
  370. }
  371.  
  372. #credit a:hover {
  373. color:#fff;
  374. background-color:#191919;
  375. }
  376.  
  377. /************** FLAGS UPDATES TAB **************/
  378. /* tutorial by deanlirium|tumblr (clarence.tk) */
  379.  
  380. #flags {
  381. position:fixed;
  382. top:100px; /* distance from the top of the page - adjust as you wish! */
  383. right:0px;
  384. text-align:center;
  385. text-transform:uppercase; /* the text is in all caps - delete this line and it won't be */
  386. 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 #! */
  387. font-size:8px; /* adjust font size */
  388. letter-spacing:1px;
  389. z-index:2147483607;
  390. font-family:calibri;}
  391.  
  392.  
  393. #flag1 {
  394. border:solid 6px #4A4A4A; /* flag color */
  395. border-left: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! */
  396. padding-right:10px;
  397. right:00px;
  398. width:20px; /* increase or decrease to change the lenght of the CLOSED flag */
  399. height:0px;
  400. position:absolute;
  401. -moz-transition:all 0.7s ease-out;
  402. -webkit-transition:all 0.7s ease-out;
  403. -o-transition:all 0.7s ease-out;}
  404.  
  405. #flag1:hover {
  406. width:180px;} /* lenght of the OPEN flag */
  407.  
  408. #upd1 {
  409. position:absolute;
  410. width:110px;
  411. padding:10px;
  412. padding-right:60px; /* adjust this if you've changed the length of the open flag, subtract what you add here to the 'left' value below */
  413. right:-180px;
  414. margin-top:6px; /* keep this number equal to the 'border' value for the flag */
  415. opacity:0;
  416. -moz-transition:all 0.7s ease-out;
  417. -webkit-transition:all 0.7s ease-out;
  418. -o-transition:all 0.7s ease-out;}
  419.  
  420. #flag1:hover #upd1{
  421. right:0px;
  422. opacity:1;}
  423.  
  424. /* following is the coding for the other flags - same as above! */
  425.  
  426. #flag2 {
  427. border:solid 6px #8C8C8C;
  428. margin-top:20px;
  429. position:absolute;
  430. border-left:solid 6px transparent;
  431. padding-right:10px;
  432. right:00px;
  433. width:20px;
  434. height:0px;
  435. -moz-transition:all 0.7s ease-out;
  436. -webkit-transition:all 0.7s ease-out;
  437. -o-transition:all 0.7s ease-out;}
  438.  
  439. #flag2:hover {
  440. width:180px;}
  441.  
  442. #upd2 {
  443. position:absolute;
  444. width:110px;
  445. padding:10px;
  446. padding-right:60px;
  447. right:-180px;
  448. margin-top:6px;
  449. opacity:0;
  450. -moz-transition:all 0.7s ease-out;
  451. -webkit-transition:all 0.7s ease-out;
  452. -o-transition:all 0.7s ease-out;}
  453.  
  454. #flag2:hover #upd2{
  455. right:0px;
  456. opacity:1;}
  457.  
  458. /*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: */
  459.  
  460. #flag3 {
  461. border:solid 6px #B3B3B3;
  462. position:absolute;
  463. margin-top:40px; /* this one! */
  464. border-left:solid 6px transparent;
  465. padding-right:10px;
  466. right:0px;
  467. width:20px;
  468. height:0px;
  469. -moz-transition:all 0.7s ease-out;
  470. -webkit-transition:all 0.7s ease-out;
  471. -o-transition:all 0.7s ease-out;}
  472.  
  473. #flag3:hover {
  474. width:180px;}
  475.  
  476. #upd3 {
  477. position:absolute;
  478. width:110px;
  479. padding:10px;
  480. padding-right:60px;
  481. right:-180px;
  482. margin-top:6px;
  483. opacity:0;
  484. -moz-transition:all 0.7s ease-out;
  485. -webkit-transition:all 0.7s ease-out;
  486. -o-transition:all 0.7s ease-out;}
  487.  
  488. #flag3:hover #upd3{
  489. right:0px;
  490. opacity:1;}
  491.  
  492. /* to here */
  493.  
  494.  
  495.  
  496. /* !!!!!THIS IS THE CSS FOR THE POPUP BOXES*/
  497. .popup_block{
  498. display:none;
  499. background:#fff;
  500. padding:20px;
  501. border:1px solid #eee; /* if you want a solid white pop-up, delete this */
  502. float:left;
  503. position:fixed;
  504. top:50%;left:50%;
  505. z-index: 99999;
  506. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  507. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  508. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  509. }
  510.  
  511. *html #fade {position: absolute;}
  512. *html .popup_block {position: absolute;}
  513. #fade {
  514. display:none;
  515. position:fixed;
  516. left:0px;
  517. top:0px;
  518. width:100%;
  519. height:100%;
  520. z-index:9999;
  521. background:#000; /* change to #fff for solid white */
  522. opacity:0.5; /* change to opacity:1; */
  523. }
  524. /*end popup boxes*/
  525.  
  526.  
  527.  
  528. {CustomCSS}</style></head><body>
  529.  
  530. <!----THIS IS THE HTML FOR THE POPUP BOXES---->
  531. <div id="box1" class="popup_block">
  532. CONTENT
  533. CONTENT
  534. CONTENT
  535.  
  536. ask box code
  537. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  538. </div>
  539.  
  540. </div></div></div></div></div></div></div></div></div></div>
  541.  
  542. <!---- end html;;;; TO MAKE A NEW BOX JUST COPY THE ABOVE CODE & PUT BOX2 INSTEAD OF BOX1---->
  543.  
  544.  
  545.  
  546.  
  547.  
  548. <div id="flags">
  549. <div id="flag1"><div id="upd1">
  550.  
  551. <big><big>❛ I'm angry, but enough to spark change. I'm sad, but enough to pull myself together. ❜</big></big>
  552.  
  553. </div></div>
  554.  
  555. <div id="flag2"><div id="upd2">
  556.  
  557. <big><big>independent fandomless oc. selective. written by skye.</big></big>
  558.  
  559. </div></div>
  560.  
  561. <!---- if you want more flags, copy from here ---->
  562.  
  563. <div id="flag3"><div id="upd3">
  564.  
  565. COMING SOON.
  566.  
  567. </div></div>
  568.  
  569. <!---- to here and change the numbers according to your css! ---->
  570.  
  571. <!---- thanks for passing by and using this tutorial you're raaaaaaaaad c: ---->
  572.  
  573. </div>
  574.  
  575.  
  576. <div id="theme">
  577.  
  578. <div id="sidebar">
  579.  
  580. <div id="sidebarimage">
  581. <a title="{text:homelink title}" href="/"><img src="{image:sidebar}"> </a></div>
  582.  
  583. <div id="links">
  584. <a href="{text:link 1 url}">{text:link 1}</a><br>
  585. <a href="#?w=300" rel="box1" class="poplight">{text:link 2}</a><br>
  586. <a href="{text:link 3 url}">{text:link 3}</a><br>
  587. <a href="{text:link 4 url}">{text:link 4}</a><br>
  588. </div>
  589.  
  590.  
  591. <!-----FOR THE POPUP BOXES, MAKE SURE THE DIV ABOVE (box1) MATCHES THE REL (box1) IN THE LINK--->
  592.  
  593. <div id="description">
  594. {Description}</div>
  595. <p></p><br><br><center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">newer</a>{/block:PreviousPage}{/block:Pagination}
  596. {block:Pagination}{block:NextPage}— <a href="{NextPage}">older</a>{/block:NextPage}{/block:Pagination}{/block:Pagination} </center></div>
  597.  
  598. <div id="entries">{block:Posts}<div id="post">
  599.  
  600. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  601.  
  602. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  603.  
  604. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  605.  
  606. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  607.  
  608. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  609.  
  610. {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}
  611.  
  612. {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}
  613. {block:Artist} &nbsp;—&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  614.  
  615. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  616.  
  617. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}" style="border-radius:90px; opacity:.9;margin-left:3px;"></div> &nbsp;<em>{Asker}:<br> &nbsp; <big>"{Question}"</big></em><br><br>{Answer}{/block:Answer}
  618.  
  619. {block:Date}<div id="info"><a href="{Permalink}" style="background-color:#999;padding:3px;color:#fff;">{TimeAgo}</a> {block:NoteCount} with <font color=#999><big>♥</big></font> <a href="{Permalink}">{NoteCount}</a> {/block:NoteCount} {block:RebloggedFrom} — <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}
  620. {block:ContentSource} , <a title="{SourceTitle}" href="{SourceURL}">source</a> {/block:ContentSource}{/block:Date}</div>
  621. {block:HasTags}
  622. <div class="tags">
  623. {block:Tags} # <a href="{TagURL}"> {Tag}</a>{/block:Tags}</div>
  624. {/block:HasTags}
  625. <div class="postnote">
  626. {block:PostNotes}{PostNotes}{/block:PostNotes}
  627. </div>
  628. </div>
  629. {/block:Posts}
  630.  
  631. </div>
  632. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</div></div>
  633.  
  634. </body>
  635.  
  636. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement