danystormborn

Potions Class //Arctic Fox

May 21st, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.61 KB | None | 0 0
  1. <style> body, a, a:hover { cursor:url('{text:Cursor Image URL}'), auto }</style>
  2.  
  3. <!--
  4. Themes by Chloe // Arctic Fox Designs
  5.  
  6. Potions Class
  7.  
  8. Comments and suggestions are welcome
  9.  
  10. arcticfoxdesigns.tumblr.com
  11.  
  12. -->
  13.  
  14. <html lang="en">
  15. <head>
  16.  
  17. <link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
  18.  
  19. <link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300' rel='stylesheet' type='text/css'>
  20.  
  21. <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
  22.  
  23. <meta name="image:Background" content=""/>
  24. <meta name="image:Sidebar Image" content=""/>
  25. <meta name="color:Background" content="#FFFFFF"/>
  26. <meta name="color:Gradient top colour" content=""/>
  27. <meta name="color:Gradient bottom colour" content=""/>
  28. <meta name="color:Sidebar Background" content=""/>
  29. <meta name="color:Post Background" content=""/>
  30. <meta name="color:Permalinks" content=""/>
  31. <meta name="color:Title" content="#999999"/>
  32. <meta name="color:Blog Title" content="#999999"/>
  33. <meta name="color:Text" content="#777777"/>
  34. <meta name="color:Link" content="#555555"/>
  35. <meta name="color:Hover" content="#999999"/>
  36. <meta name="color:Borders" content=""/>
  37. <meta name="color:Blog border" content=""/>
  38. <meta name="color:Scrollbar Background" content=""/>
  39. <meta name="color:Scrollbar Thumb" content=""/>
  40. <meta name="color:Updates tab text" content=""/>
  41. <meta name="color:Updates tab background" content=""/>
  42.  
  43. <meta name="if:Inverted follow button" content=""/>
  44. <meta name="if:Transparent post background" content=""/>
  45. <meta name="if:Transparent sidebar background" content=""/>
  46. <meta name="if:Transparent updates background" content=""/>
  47. <meta name="if:Sidebar image" content=""/>
  48. <meta name="if:Maximised background" content=""/>
  49. <meta name="if:Gradient background" content=""/>
  50. <meta name="if:Disable right click" content=""/>
  51. <meta name="if:Link two" content=""/>
  52. <meta name="if:Link three" content=""/>
  53.  
  54.  
  55. <meta name="text:Username" content=""/>
  56. <meta name="text:Cursor image URL" content=""/>
  57. <meta name="text:Favicon" content=""/>
  58. <meta name="text:Sidebar width" content="250"/>
  59. <meta name="text:Post size" content="240"/>
  60. <meta name="text:Post container width" content="810"/>
  61. <meta name="text:post container margin left" content="320"/>
  62. <meta name="text:Post margin right" content="50"/>
  63. <meta name="text:Post margin bottom" content="40"/>
  64. <meta name="text:Updates tab margin top" content="120"/>
  65. <meta name="text:Updates tab margin right" content="150"/>
  66. <meta name="text:Sidebar margin top" content="240"/>
  67. <meta name="text:Sidebar margin left" content="150"/>
  68.  
  69. <meta name="text:Tab one title" content="Tab 1"/>
  70. <meta name="text:Tab one content" content="content here"/>
  71. <meta name="text:Tab one height" content="170"/>
  72. <meta name="text:Tab two title" content="tab 2"/>
  73. <meta name="text:Tab two content" content="content here"/>
  74. <meta name="text:Tab two height" content="100"/>
  75. <meta name="text:Tab three title" content="tab 3"/>
  76. <meta name="text:Tab three content" content="content here"/>
  77. <meta name="text:Tab three height" content="200"/>
  78.  
  79.  
  80. <meta name="text:Link One URL" content=""/>
  81. <meta name="text:Link One Title" content="link"/>
  82. <meta name="text:Link Two URL" content=""/>
  83. <meta name="text:Link Two Title" content="link"/>
  84. <meta name="text:Link Three URL" content=""/>
  85. <meta name="text:Link Three Title" content="link"/>
  86.  
  87.  
  88.  
  89.  
  90. <title>{Title}</title>
  91. {block:Description}
  92. <meta name="description" content="{MetaDescription}" />
  93. {/block:Description}
  94. <link rel="shortcut icon" href="{text:Favicon}">
  95.  
  96. <!---------------DO NOT REMOVE THESE SCRIPTS--------------->
  97. <script type="text/javascript"
  98. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  99. <script>
  100. $(document).ready(function() {
  101. //
  102. $('a.poplight[href^=#]').click(function() {
  103. var popID = $(this).attr('rel'); //Get Popup Name
  104. var popURL = $(this).attr('href'); //Get Popup href to define size
  105. var query= popURL.split('?');
  106. var dim= query[1].split('&');
  107. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  108. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://scholasticabd.com/v2/images/cancel.png" class="btn_close" title="Close" alt="Close" width="20"/></a>');
  109. var popMargTop = ($('#' + popID).height() + 80) / 2;
  110. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  111. //Apply Margin to Popup
  112. $('#' + popID).css({
  113. 'margin-top' : -popMargTop,
  114. 'margin-left' : -popMargLeft
  115. });
  116. $('body').append('<div id="fade"></div>');
  117. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  118. return false;
  119. });
  120. $('a.close, #fade').live('click', function() {
  121. $('#fade , .popup_block').fadeOut(function() {
  122. $('#fade, a.close').remove(); //fade them both out
  123. });
  124. return false;
  125. });
  126. });
  127. </script>
  128.  
  129. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  130.  
  131. <script src="http://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
  132. <script>
  133. (function($){$(document)
  134. .ready(function(){$("[title]")
  135. .style_my_tooltips();});})
  136. (jQuery);
  137. </script>
  138.  
  139. {block:IndexPage}
  140. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  141. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  142.  
  143. <script type="text/javascript">
  144. $(window).load(function(){
  145. var $wall = $('#entries');
  146. $wall.imagesLoaded(function(){
  147. $wall.masonry({
  148. itemSelector: '#post, #post_photo',
  149. isAnimated : false
  150. });
  151. });
  152.  
  153. $wall.infinitescroll({
  154. navSelector : '#pagination',
  155. nextSelector : '#pagination a',
  156. itemSelector : '#post, #post_photo',
  157. bufferPx : 2000,
  158. debug : false,
  159. errorCallback: function() {
  160. $('#scroll').fadeOut('normal');
  161. }},
  162. function( newElements ) {
  163. var $newElems = $( newElements );
  164. $newElems.hide();
  165. $newElems.imagesLoaded(function(){
  166. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  167. });
  168. }); $('#entries').show(50);
  169. });
  170. </script>
  171. {/block:IndexPage}
  172.  
  173.  
  174. <!---------------END SCRIPTS--------------->
  175.  
  176. <style type="text/css">
  177.  
  178.  
  179.  
  180. ::-webkit-scrollbar{ width:9px; background-color:{color:Scrollbar Background}; }
  181. ::-webkit-scrollbar-thumb{ background-color:{color:Scrollbar Thumb}; }
  182.  
  183.  
  184. /************EDIT BODY HERE************/
  185.  
  186. body{
  187. margin:0px;
  188. background-color: {color:Background};
  189. background-attachment:fixed;
  190. background-repeat:100%;
  191. background-position:bottom-right;
  192. font-family: Calibri;
  193. font-size:11px;
  194. letter-spacing:1px;
  195. text-transform:uppercase;
  196. text-align:left;
  197.  
  198. color: {color:Text};
  199. background-image:url({image:Background});
  200. {block:ifMaximisedBackground}
  201. -webkit-background-size: cover;
  202. -moz-background-size: cover;
  203. -o-background-size: cover;
  204. background-size: cover;
  205. {/block:ifMaximisedBackground}
  206.  
  207. {block:ifGradientBackground}
  208. background-image: -o-linear-gradient(bottom,{color:Gradient bottom colour}, {color:Gradient top colour}; ); background-image: -moz-linear-gradient(bottom,{color:Gradient top colour},{color:Gradient bottom colour}); background-image: -webkit-linear-gradient(bottom, {color:Gradient bottom colour},{color:Gradient top colour}); background-image: -ms-linear-gradient(bottom,{color:Gradient top colour},{color:Gradient bottom colour}); background-image: linear-gradient(bottom,{color:Gradient top colour}, {color:Gradient bottom colour});
  209. {/block:ifGradientBackground}
  210.  
  211.  
  212. }
  213.  
  214.  
  215. a:link, a:active, a:visited{
  216. text-decoration: none;
  217. color: {color:Link};}
  218.  
  219. a:hover {
  220. color:{color:Link};
  221. text-decoration:none;}
  222.  
  223. /************EDIT TOOLTIP HERE************/
  224.  
  225.  
  226. #s-m-t-tooltip {
  227. padding: 4px;
  228. height:auto;
  229. display: none;
  230. font-family: consolas;
  231. font-size: 10px;
  232. max-width:150px;
  233. text-transform:uppercase;
  234. text-align: center;
  235. letter-spacing:1px;
  236. margin-top:10px;
  237. margin-left: 15px;
  238. line-height: 8px;
  239. z-index: 999999999999;
  240.  
  241. border: 1px solid #f5f5f5;
  242. background:#ffffff;
  243. color: #888;}
  244.  
  245. /************EDIT POST POSITION/WIDTH HERE************/
  246.  
  247. /*To increase the amount of columns, increase the width. To decrease the amount of columns, decrease the width.*/
  248.  
  249. #entries{
  250. text-align:left;
  251. width:{text:post container width}px;
  252. margin-left:{text:post container margin left}px;
  253. margin-top:10px;
  254. position:relative;
  255. overflow: hidden;
  256. {block:PermalinkPage}
  257. width:550px;
  258. {/block:PermalinkPage}}
  259.  
  260. /************EDIT OVERALL POSTS HERE************/
  261.  
  262. /*When increasing the amount of columns, you may have to decrease the #post width. Otherwise, to get larger posts, increase the width.*/
  263.  
  264. #post{
  265.  
  266. text-align:left;
  267. width:{text:Post size}px;
  268. margin-right:{text:Post margin right}px;
  269. margin-top:30px;
  270. margin-bottom:{text:Post margin bottom}px;
  271. background:{color:Post Background};
  272.  
  273. padding-bottom:-5px;
  274. padding-left:11px;
  275. padding-right:11px;
  276. padding-top:11px;
  277. max-width: 100%;
  278. display:block;
  279.  
  280. {block:IfTransparentPostBackground}
  281. Background:transparent;
  282. {/block:IfTransparentPostBackground}
  283.  
  284.  
  285. {block:PermalinkPage}
  286. width:500px;
  287. {/block:PermalinkPage}}
  288.  
  289. /*Do not delete #post img.*/
  290.  
  291. #post img{
  292. max-width:100%;}
  293.  
  294. #post:hover .permalink{
  295. opacity:1;
  296. margin-top:5px;
  297. }
  298.  
  299. /*Edit the permalinks all posts.*/
  300.  
  301. .permalink{
  302. width:{text:Post size}px;
  303. color:{color:Permalinks};
  304. opacity:0;
  305. margin-top:-10px;
  306. margin-bottom:10px;
  307.  
  308. font-size:14px;
  309. text-align:right;
  310.  
  311. -webkit-transition: all 0.4s ease-in-out;
  312. -moz-transition: all 0.4s ease-in-out;
  313. -o-transition: all 0.4s ease-in-out;
  314.  
  315.  
  316. }
  317. .permalink a{
  318.  
  319. color:{color:Permalinks};
  320. text-transform:uppercase;
  321. line-height:15px;}
  322.  
  323. /*Edit the titles on any text-based post.*/
  324.  
  325. .posttitle{
  326. font-size:10px;
  327. text-align:center;
  328. color:{color:Link};}
  329.  
  330. .posttitle a{
  331. color:{color:Link};}
  332.  
  333. /************EDIT QUOTE POSTS HERE************/
  334.  
  335. .quote{
  336. margin-right: 5px;}
  337.  
  338. .source{
  339. padding-top:5px;
  340. display:block;
  341. text-align:right;}
  342.  
  343.  
  344. /************EDIT ANSWER POSTS HERE************/
  345.  
  346. .ask{
  347. padding:4px;
  348. background:#f9f9f9;}
  349. .asker{
  350. color:{color:Link};}
  351. .answer{
  352. margin-top:10px;}
  353.  
  354. /************EDIT AUDIO POSTS HERE************/
  355.  
  356. .audio{
  357. {block:IndexPage}width:180px;{/block:IndexPage}
  358. {block:PermalinkPage}width:239px;{/block:PermalinkPage};}
  359. .info{
  360. padding:2px 0px 1px 57px;}
  361. .i {
  362. text-transform:uppercase;
  363. letter-spacing:1px;
  364. font-size:8px;}
  365. .pl b,strong{
  366. text-transform:lowercase;
  367. font-size:9px;}
  368. .player{
  369. position:absolute;
  370. overflow:hidden;
  371. margin-top:0px;
  372. margin-left:15px;
  373. background:#ffffff;
  374. width:24px;
  375. height:23px;}
  376.  
  377. /************EDIT VIDEO POSTS HERE************/
  378. /***********DO NOT DELETE THIS CODE************/
  379.  
  380. .video-container {
  381. position:relative;
  382. padding-bottom:56.25%;
  383. padding-top: 30px;
  384. height:0;
  385. overflow:hidden;}
  386.  
  387. .video-container iframe,
  388. .video-container object,
  389. .video-container embed {
  390. position: absolute;
  391. top: 0;
  392. left: 0;
  393. width: 100%;
  394. height: 100%;}
  395.  
  396. /************EDIT CHAT POSTS HERE************/
  397.  
  398. .chat{
  399. line-height:12px;
  400. list-style:none;}
  401. .chat ul{
  402. list-style:none;
  403. padding:0px 5px;
  404. line-height:15px;}
  405. .label{
  406. color:{color:Link};}
  407.  
  408. /************EDIT SIDEBAR HERE************/
  409.  
  410. #sidebar{
  411. background:{color:Sidebar Background};
  412. left:{text:Sidebar margin left}px;
  413. top:{text:Sidebar margin top}px;
  414.  
  415. padding-top:15px;
  416. padding-bottom:15px;
  417. padding-right:5px;
  418. padding-left:5px;
  419. width:{text:Sidebar width}px;
  420. position:fixed;
  421.  
  422. text-align:center;
  423.  
  424. {block:IfTransparentSidebarBackground}
  425. background:transparent;
  426. {/block:IfTransparentSidebarBackground}
  427.  
  428. }
  429.  
  430. .blogtitle{
  431. margin-top:-5px;
  432. border-bottom:1px solid {color:links};
  433. text-align:right;
  434. padding:2px;
  435. font-weight:bold;
  436. font-family: 'Raleway', sans-serif;
  437. padding-bottom:5px;
  438. font-size:18px;}
  439.  
  440. .blogtitle a{
  441. color:{color:Blog Title};}
  442.  
  443. .description{
  444. font-style:italic;
  445. text-align:right;
  446. padding-top:5px;
  447. }
  448.  
  449. .links{
  450. text-align:center;
  451. margin-left:65px;
  452. padding:0px 10px 5px 10px;
  453. margin-top:5px;
  454.  
  455. }
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462. .links a{
  463. margin-left:15px;
  464.  
  465. }
  466.  
  467. .links a:hover{
  468. margin-left:;
  469. color:{color:Hover};
  470. }
  471.  
  472. /************EDIT TEXT SETTINGS HERE************/
  473.  
  474. i, em{
  475. color:{color:Link};}
  476. b, strong{
  477. font-weight:normal;
  478. text-transform:uppercase;
  479. color:{color:Link};}
  480. ul,ol{
  481. margin:0px;
  482. margin-left:-5px;}
  483. p{
  484. padding:0px;
  485. margin:2px;}
  486. u{
  487. text-decoration:none;
  488. color:{color:Title};}
  489.  
  490. blockquote {
  491. margin:0px;
  492. padding:4px;
  493. background:#f7f7f7;}
  494.  
  495. /************DO NOT DELETE #SCROLL************/
  496.  
  497. #scroll{
  498. bottom:-20px;
  499. position: absolute;
  500. left: 50%;
  501. width:10px;
  502. height:5px;
  503. overflow:hidden;
  504. margin-bottom:80px;}
  505.  
  506.  
  507.  
  508.  
  509. #fade { /*--Transparent background layer--*/
  510. display: none; /*--hidden by default--*/
  511. background: {color:Background};
  512. position: fixed; left: 0; top: 0;
  513. width: 100%; height: 100%;
  514. opacity: 1;
  515. z-index: 9999;
  516. {block:ifGradientBackground}
  517. background-image: -o-linear-gradient(bottom,{color:Gradient bottom colour}, {color:Gradient top colour}; ); background-image: -moz-linear-gradient(bottom,{color:Gradient top colour},{color:Gradient bottom colour}); background-image: -webkit-linear-gradient(bottom, {color:Gradient bottom colour},{color:Gradient top colour}); background-image: -ms-linear-gradient(bottom,{color:Gradient top colour},{color:Gradient bottom colour}); background-image: linear-gradient(bottom,{color:Gradient top colour}, {color:Gradient bottom colour});
  518. {/block:ifGradientBackground}
  519. }
  520. .popup_block{
  521. color:{color:text};
  522. width:400px;
  523. display: none; /*--hidden by default--*/
  524. background: transparent;
  525. padding: 10px;
  526. font-size: 16px;
  527. position: fixed;
  528. top: 50%; left: 50%;
  529. z-index: 99999;
  530.  
  531.  
  532. }
  533.  
  534. .popup_block a{
  535. color:{color:links};
  536. }
  537. /*--Making IE6 Understand Fixed Positioning--*/
  538. *html #fade {
  539. position: absolute;
  540. }
  541. *html .popup_block {
  542. position: absolute;
  543. }
  544.  
  545.  
  546.  
  547.  
  548.  
  549.  
  550. #navibox{
  551. position:fixed;
  552. width:125px; /*width*/
  553. z-index:1;
  554. height:auto;
  555. font-size:32px;
  556. top:25px;
  557. text-align:left;
  558. left:24px;
  559. color:#fff; /*text colour*/
  560. background-color:transparent; /*background colour*/
  561. border:0px solid #000000; /*border width and colour*/
  562.  
  563. padding:3px;}
  564.  
  565. #navibox a{
  566. text-decoration:none;
  567. font-style:italic; /*italic links before hover*/
  568. letter-spacing:1px; /*distance between letters*/}
  569.  
  570. #navibox a:hover{
  571. font-style:normal;
  572. text-decoration:underline;}
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580. /*-----box coding start-----*/
  581. #updatestab {
  582. font-size:12px; /*font size for all tabs*/
  583. background-color:{color:Updates tab background}; /*background colour of box*/
  584. color:{color:Updates tab text}; /*text colour for all tabs*/
  585. position:fixed;
  586.  
  587. right:{text:Updates tab margin right}px; /*distance from the right*/
  588. padding:5px; /*padding around the box*/
  589. height:auto;
  590.  
  591. width:165px; /*width*/
  592. top:{text:Updates tab margin top}px; /*distance from the top*/
  593. z-index:4;
  594.  
  595. {block:IfTransparentUpdatesBackground}
  596. background:transparent;
  597. {/block:IfTransparentUpdatesBackground}
  598.  
  599. }
  600. /*-----box coding end-----*/
  601.  
  602.  
  603. /*-----tab 1 coding start-----*/
  604. #tab1{
  605. height:14px;
  606. overflow:hidden;
  607. border-bottom:1px solid {color:Updates tab text}; /*border colour*/
  608. z-index:4;
  609. -webkit-transition: all 0.4s ease-in-out;
  610. -moz-transition: all 0.4s ease-in-out;
  611. -o-transition: all 0.4s ease-in-out;}
  612.  
  613. #tab1 a{
  614. text-decoration:underline; /*underline links*/ }
  615.  
  616. #tab1 a:hover{
  617. text-decoration:none;}
  618.  
  619. #tab1:hover{
  620. height:{text:Tab one height}px; /*height of tab after hovering*/ }
  621. /*-----tab 1 coding end-----*/
  622.  
  623.  
  624. /*-----tab 2 coding start-----*/
  625. #tab2{
  626. height:14px;
  627. overflow:hidden;
  628. z-index:4;
  629. border-bottom:1px solid {color:Updates tab text}; /*border colour*/
  630. -webkit-transition: all 0.4s ease-in-out;
  631.  
  632. -moz-transition: all 0.4s ease-in-out;
  633. -o-transition: all 0.4s ease-in-out;}
  634.  
  635. #tab2 a{
  636. text-decoration:underline; /*underline links*/ }
  637.  
  638. #tab2 a:hover{
  639. text-decoration:none;}
  640.  
  641. #tab2:hover{
  642. height:{text:Tab two height}px; /*height of tab after hovering*/ }
  643. /*-----tab 2 coding end-----*/
  644.  
  645. /*-----tab 3 coding start-----*/
  646. #tab3{
  647. height:14px;
  648. overflow:hidden;
  649. z-index:4;
  650. border-bottom:1px solid {color:Updates tab text}; /*border colour*/
  651. -webkit-transition: all 0.4s ease-in-out;
  652.  
  653. -moz-transition: all 0.4s ease-in-out;
  654. -o-transition: all 0.4s ease-in-out;}
  655.  
  656. #tab3 a{
  657. text-decoration:underline; /*underline links*/ }
  658.  
  659. #tab3 a:hover{
  660. text-decoration:none;}
  661.  
  662. #tab3:hover{
  663. height:{text:Tab three height}px; /*height of tab after hovering*/ }
  664. /*-----tab 3 coding end-----*/
  665.  
  666.  
  667.  
  668. #top {
  669. height:24px;
  670. width:100%;
  671. top:0;
  672. background-color:{color:Blog Border};
  673. z-index:1;
  674. position:fixed;}
  675.  
  676. #left {
  677. width:20px;
  678. height:1000px;
  679. background-color:{color:Blog Border};
  680. z-index:1;
  681. left:0px;
  682. top:-10px;
  683. position:fixed;}
  684.  
  685. #bottom {
  686. height:23px;
  687. width:100%;
  688. bottom:0;
  689. background-color:{color:Blog Border};
  690. z-index:999;
  691. position:fixed;}
  692.  
  693. #right {
  694. width:20px;
  695. height:100%;
  696. right:0;
  697. top:-10px;
  698. background-color:{color:Blog Border};
  699. z-index:1;
  700. position:fixed;}
  701.  
  702. iframe#tumblr_controls {
  703.  
  704. z-index:2;
  705. color:{color:Tumblr Controls};
  706. top: 0% !important;
  707. right:0% !important;
  708. position: fixed !important;}
  709.  
  710. {block:IfinvertedFollowButton}
  711. iframe#tumblr_controls { white-space:nowrap; -webkit-filter: invert(100%); -moz-filter: invert(100%); -o-filter: invert(100%); -ms-filter: invert(100%); filter: invert(100%); opacity:0.9; }
  712. {/block:IfinvertedFollowButton}
  713. #profilepic img{
  714. width:150px;
  715. height:150px;
  716. border-radius: 50%;
  717. }
  718.  
  719.  
  720. </style>
  721.  
  722. </head>
  723.  
  724. <body>
  725.  
  726. <div id="top"></div>
  727. <div id="right"></div>
  728. <div id="bottom"></div>
  729. <div id="left"></div>
  730. {block:IfDisableRightClick}
  731. <script language=JavaScript>
  732.  
  733. <!--
  734.  
  735. //Disable right click script III- By Renigade (renigade@mediaone.net)
  736.  
  737. //For full source code, visit http://www.dynamicdrive.com
  738.  
  739. var message="";
  740.  
  741. ///////////////////////////////////
  742.  
  743. function clickIE() {if (document.all) {(message);return false;}}
  744.  
  745. function clickNS(e) {if
  746.  
  747. (document.layers||(document.getElementById&&!document.all)) {
  748.  
  749. if (e.which==2||e.which==3) {(message);return false;}}}
  750.  
  751. if (document.layers)
  752.  
  753. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  754.  
  755. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  756.  
  757. document.oncontextmenu=new Function("return false")
  758.  
  759. // -->
  760.  
  761. </script>
  762. {/block:IfDisableRightClick}
  763.  
  764.  
  765.  
  766. <div style="position:fixed; background-color: #fff; left:22px; bottom:25px; paddin:2px; color: #000; border:1px solid #000; opacity:0.8; z-index:222;"><a title="Chloe at Arctic Fox Designs"href="http://arcticfoxdesigns.tumblr.com/"><img src="http://i.imgur.com/ObcbPgn.png" width="20"></a></div>
  767. <center>
  768.  
  769. <div id="entries">
  770.  
  771. <!---------------EDIT SIDEBAR CONTENT HERE--------------->
  772.  
  773. <div id="sidebar">
  774. <div class="blogtitle"><a href="/">{Title}</a></div>
  775. {block:ifSidebarImage}<p style="border-bottom:1px solid {color:Borders}"><img src="{image:Sidebar Image}" width="{text:Sidebar width}"></p>{/block:ifSidebarImage}
  776. <div class="description">{Description}</div>
  777.  
  778. </div>
  779.  
  780.  
  781. {block:Posts}
  782.  
  783. <!---------------DO NOT DELETE block:ContentSource--------------->
  784.  
  785. {block:ContentSource}
  786. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  787. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  788. {/block:SourceLogo}
  789. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  790. {/block:ContentSource}
  791.  
  792. <div id="post">
  793.  
  794. <!---------------EDIT TEXT POSTS HERE--------------->
  795.  
  796. {block:Text}
  797. <div class="text">
  798. <div class="posttitle">{block:Title}{Title}{/block:Title}</div>
  799. {Body}{block:IndexPage}<div class="permalink"><a href="{ReblogURL}" title="Reblog"><img src="http://i.imgur.com/mQQ3COy.png"></a> / <a href="{Permalink}">{NoteCount}</a>
  800. </div>{/block:IndexPage}</div>
  801. {/block:Text}
  802.  
  803. <!---------------EDIT LINK POSTS HERE--------------->
  804.  
  805. {block:Link}
  806. <a href="{URL}"><div class="posttitle">{Name}</div></a>
  807. {block:Description}{Description}{/block:Description}
  808. {block:IndexPage}<div class="permalink"><a href="{ReblogURL}" title="reblog"><img src="http://i.imgur.com/mQQ3COy.png"></a> / <a href="{Permalink}" title="{NoteCount}">{NoteCount}</a>
  809. </div>{/block:IndexPage}
  810. {/block:Link}
  811.  
  812. <!---------------EDIT PHOTO POSTS HERE--------------->
  813.  
  814. {block:Photo}
  815. {block:IndexPage}
  816. <img src="{PhotoURL-250}" alt="{PhotoAlt}" width="{text:Post size}"/>{/block:IndexPage}<div class="permalink"><a href="{ReblogURL}" title="reblog">R</a>&nbsp;&nbsp;&nbsp;<a href="{Permalink}" title="{NoteCount}">N</a>
  817. </div>{block:PermalinkPage}<img src="{PhotoURL-500}" alt="{PhotoAlt}" />{/block:PermalinkPage}</a>
  818. {/block:Photo}
  819.  
  820. <!---------------EDIT PHOTOSET POSTS HERE--------------->
  821.  
  822. {block:Photoset}
  823. {block:IndexPage}{block:Photos}<a href="{Permalink}"><img src="{PhotoURL-500}" /></a>{/block:Photos}<div class="permalink"><a href="{ReblogURL}"><img src="http://i.imgur.com/mQQ3COy.png"></a> / <a href="{Permalink}">{NoteCount}</a>
  824. </div>{/block:IndexPage}
  825. {block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}
  826. {/block:Photoset}
  827.  
  828. <!---------------EDIT QUOTE POSTS HERE--------------->
  829.  
  830. {block:Quote}
  831. {Quote}{block:Source}
  832. <div class="source">{Source}</div>{/block:Source}
  833. {block:IndexPage}
  834. <div class="permalink"><a href="{ReblogURL}"><img src="http://i.imgur.com/mQQ3COy.png"></a> /
  835. <a href="{Permalink}">{NoteCount}</a>{/block:IndexPage}</div>
  836. {/block:Quote}
  837.  
  838. <!---------------EDIT ANSWER POSTS HERE--------------->
  839.  
  840. {block:Answer}
  841. <div class="ask"><span class="asker">{Asker}:</span> {Question}</div>
  842. <div class="answer">{Answer}</div>
  843. {block:IndexPage}
  844. <div class="permalink"><a href="{ReblogURL}">Reblog</a> /
  845. <a href="{Permalink}">{NoteCount}</a></div>{/block:IndexPage}
  846. {/block:Answer}
  847.  
  848. <!---------------EDIT CHAT POSTS HERE--------------->
  849.  
  850. {block:Chat}
  851. {block:Title}<div class="posttitle">{Title}</div>{/block:Title}
  852. <div class="chat"><ul>{block:Lines}
  853. <li class="person{UserNumber}">{block:Label}
  854. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>{block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> /<a href="{Permalink}">{NoteCount}</a></div>
  855. {/block:IndexPage}
  856. {/block:Chat}
  857.  
  858. <!---------------EDIT AUDIO POSTS HERE--------------->
  859.  
  860. {block:Audio}<div class="player">{AudioPlayerWhite}</div>
  861. <div class="info"><div class="i"><span{block:TrackName} style="display: none;"{block:TrackName}>Unknown</span>{block:TrackName}{TrackName}{/block:TrackName}</div><div class="i">by<span{block:Artist} style="display: none;"{block:Artist}>Unknown</span> {block:Artist}{Artist}{/block:Artist}</div></div>{block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> / <a href="{Permalink}">{NoteCount}</a></div>
  862. {/block:IndexPage}
  863. {/block:Audio}
  864.  
  865. <!---------------EDIT VIDEO POSTS HERE--------------->
  866.  
  867. {block:Video}
  868. {block:IndexPage}<div class="video-container">{Video-250}</div>
  869. <div class="permalink"><a href="{ReblogURL}">Reblog</a> / <a href="{Permalink}">{NoteCount}</a></div>{/block:IndexPage}
  870. {block:PermalinkPage}{Video-500}{/block:PermalinkPage}
  871. {/block:Video}
  872.  
  873. <!---------------EDIT PERMALINK PAGE HERE--------------->
  874.  
  875. {block:PermalinkPage}
  876. {block:Caption}{Caption}{/block:Caption}
  877. <p>{block:Date} {Month} {DayofMonthWithSuffix}, {Year}{/block:Date} {block:NoteCount}, {NoteCountWithLabel}{/block:NoteCount} {block:RebloggedFrom} , (via <a href="{ReblogParentURL}">{ReblogParentName}</a>){/block:RebloggedFrom}
  878. <div class="permapage">
  879. <div style="margin-top:10px; margin-left:-10px;">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>{/block:PermalinkPage}
  880. </div>
  881. {/block:Posts}
  882. </div>
  883.  
  884. <!---------------DO NOT DELETE THIS--------------->
  885.  
  886. {block:IndexPage}
  887. {block:Pagination}
  888. <div id="pagination">
  889. {block:NextPage}
  890. <a id="nextPage" href="{NextPage}"></a>
  891. {/block:NextPage}
  892. {block:PreviousPage}
  893. <a href="{PreviousPage}"></a>
  894. {/block:PreviousPage}
  895. </div>
  896. {/block:Pagination}
  897. {/block:IndexPage}
  898. </center>
  899.  
  900.  
  901. </body>
  902.  
  903. <div id="updatestab">
  904.  
  905. <div id="tab1">
  906. <div style=" font-style:italic; text-align:right;">{text:Tab one title}</div>
  907. {text:Tab one content}
  908. </div>
  909.  
  910.  
  911. <div id="tab2">
  912. <div style="font-style:italic; text-align:right;">{text:Tab two title}</div>
  913. {text:Tab two content}
  914. </div>
  915.  
  916. <div id="tab3">
  917. <div style=" font-style:italic; text-align:right;">{text:Tab three title}</div>
  918. {text:Tab three content}
  919. </div>
  920.  
  921. </div>
  922.  
  923.  
  924.  
  925.  
  926.  
  927. <div id="navibox">
  928.  
  929. <a href="#?w=500" rel="03" class="poplight" title="Navigate"><i class="fa fa-bars"></i></a>
  930.  
  931. </div>
  932.  
  933.  
  934.  
  935.  
  936. <div id="userbox">
  937.  
  938. <a href="#?w=500" rel="04" class="poplight" title="Info"><i class="fa fa-user"></i></a>
  939.  
  940. </div>
  941.  
  942.  
  943.  
  944.  
  945.  
  946.  
  947.  
  948.  
  949.  
  950. <div id="03" class="popup_block"><center>
  951. <a href="/" title="refresh">home</a><br>
  952. <a href="#?w=500" rel="02" class="poplight" title="Mssg">Ask</a><br>
  953. <a href="{text:Link One URL}" title="{text:Link One Title}">{text:Link One Title}</a><br>
  954. {block:IfLinkTwo} <a href="{text:Link Two URL}" title="{text:Link Two Title}">{text:Link Two Title}</a><br>{/block:IfLinkTwo}
  955. {block:IfLinkThree} <a href="{text:Link Three URL}" title="{text:Link Three Title}">{text:Link Three Title}</a><br>{/block:IfLinkThree}
  956. </div>
  957.  
  958. </div>
  959.  
  960.  
  961. <div id="02" class="popup_block">
  962.  
  963. <Center><iframe frameborder="0" scrolling="yes" width="100%" height="190" src="http://tumblr.com/ask_form/{text:Username}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form">
  964. </center></div>
  965.  
  966. </div>
  967.  
  968.  
  969.  
  970.  
  971.  
  972. </html>
Add Comment
Please, Sign In to add comment