Advertisement
singforabsolution

Theme By Kelsey#19 b

Apr 23rd, 2012
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.62 KB | None | 0 0
  1. <!-- please don't remove the credit or use as a base code or i'll chase you with spoons and carrots-->
  2.  
  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://png-1.findicons.com/files//icons/1715/gion/24/dialog_cancel.png" class="btn_close" title="Close it" 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.  
  37. <!--Default Variables-->
  38. <!--Colors-->
  39. <meta name="color:Background" content="#fdfde6"/>
  40. <meta name="color:Main" content="#fdfde6"/>
  41. <meta name="color:Text" content="#000"/>
  42. <meta name="color:Post Title" content="#774F38"/>
  43. <meta name="color:Link" content="#E08E79"/>
  44. <meta name="color:Link Hover" content="#F1D4AF"/>
  45. <meta name="color:Blog Title" content="#774F38"/>
  46. <meta name="color:Chat 1" content="#"/>
  47. <meta name="color:Chat 2" content="#"/>
  48. <meta name="color:Ask Background" content="#"/>
  49. <meta name="color:Sidelinks" content="#C5E0DC"/>
  50. <meta name="color:Sidelinks Text" content="#E08E79">
  51. <meta name="color:Sidelinks Hover" content="#774F38"/>
  52. <meta name="color:Sidelinks Text Hover" content="#ECE5CE">
  53. <meta name="color:Border" content="#E08E79"/>
  54.  
  55. <!--Images-->
  56. <meta name="image:Background" content""/>
  57. <meta name="image:Sidebar" content=""/>
  58. <meta name="image:Main" content=""/>
  59.  
  60. <!--Options-->
  61. <meta name="if:Infinite Scrolling" content=""/>
  62. <meta name="if:Tiny Cursor" content="1"/>
  63. <meta name="if:Tiny Scrollbar" content="1"/>
  64. <meta name="if:Box shadows" content="1"/>
  65. <meta name="if:Box borders" content="1"/>
  66. <meta name="if:Rainbow Links" content=""/>
  67. <meta name="if:Show Caption" content="1"/>
  68. <meta name="if:Faded Images" content=""/>
  69.  
  70. <!--Links-->
  71. <meta name="text:Link 1 URL" content="/"/>
  72. <meta name="text:Link 1 name" content="link 1"/>
  73. <meta name="text:Link 2 URL" content="/"/>
  74. <meta name="text:Link 2 name" content="link 2"/>
  75. <meta name="text:Link 3 URL" content="/"/>
  76. <meta name="text:Link 3 name" content="link 3"/>
  77. <meta name="text:Link 4 URL" content="/"/>
  78. <meta name="text:Link 4 name" content="link 4"/>
  79.  
  80. {block:Description}
  81. <meta name="description" content="{MetaDescription}" />{/block:Description}
  82. <title>
  83. {block:PostSummary}
  84. {PostSummary} - {/block:PostSummary}{Title}</title>
  85.  
  86. {block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifinfinitescrolling}
  87.  
  88. <link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
  89.  
  90. </style>
  91. <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
  92. <style type="text/css">
  93.  
  94. {block:iftinycursor}
  95. body, a, a:hover {cursor: url(http://i.imgur.com/2qleX.jpg), progress;}{/block:iftinycursor}
  96.  
  97.  
  98. {block:iftinyscrollbar}
  99. ::-webkit-scrollbar {width: 8px; height: 4px; background: #FFFFFF; }
  100. ::-webkit-scrollbar-thumb { background-color: #E8E8E8; -webkit-border-radius: 1ex; border: 1px solid black;}
  101. {/block:iftinyscrollbar}
  102.  
  103. {block:ifFadedImages}img{
  104. opacity: 0.8;
  105. filter:alpha(opacity=10);
  106. -moz-opacity: 0.1;
  107. -moz-transition: all .9s ease;
  108. -o-transition: all .9s ease;
  109. transition: all .9s ease;
  110. -webkit-transition: all .9s ease;}
  111. {/block:ifFadedImages}
  112.  
  113.  
  114. {block:ifFadedImages} img:hover{
  115. opacity: 1;
  116. filter:alpha(opacity=100);
  117. -moz-opacity: 1;
  118. -moz-transition: all .9s ease;
  119. -o-transition: all .9s ease;
  120. transition: all .9s ease;
  121. -webkit-transition: all .9s ease;}
  122. {/block:ifFadedImages}
  123.  
  124. @font-face { font-family: "silkscreen"; src: url('http://static.tumblr.com/1kdckk4/9yjlolf0w/slkscr.ttf'); }
  125.  
  126. body{
  127. background-color: {color:Background};
  128. background-image:url({image:Background});
  129. background-attachment:fixed;
  130. background-repeat:repeat;
  131. background-position:center;
  132. font-family: helvetica;
  133. font-size:13px;
  134. line-height:14px;
  135. letter -spacing:0px;
  136. color:{color:Text};
  137. text-align:justify;
  138. }
  139.  
  140. a:link, a:active, a:visited{
  141. color: {color:Link};
  142. text-decoration:none;
  143. }
  144. a:hover{
  145. color: {color:Link Hover};
  146. -webkit-transition: all 0.3s linear;
  147. -moz-transition: all 0.3s linear;
  148. transition: all 0.3s linear;
  149. {block:iftinycursor}cursor: url(http://i.imgur.com/IepP2.jpg), progress{/block:iftinycursor};
  150. }
  151.  
  152. .popup_block{
  153. display: none;
  154. background-color:{color:Main};
  155. background-image: url({image:Main});
  156. padding: 10px;
  157. float: left;
  158. font-size: 12px;
  159. position: fixed;
  160. top: 50%; left: 50%;
  161. z-index: 1;
  162. {block:ifboxshadows};
  163. box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  164. {/block:ifboxshadows}
  165. {block:ifboxborders}
  166. border: 5px solid {color:Border};
  167. {/block:ifboxborders}
  168. }
  169. img.btn_close {
  170. float: right;
  171. margin: -5px -5px 0 0;
  172. }
  173. *html .popup_block {
  174. position: absolute;
  175. }
  176.  
  177. #container {
  178. margin:auto;
  179. position:right;
  180. width:1200px;
  181. color: {color:Title};
  182. _margin-left:10%;
  183. }
  184.  
  185. #center {
  186. margin:auto;
  187. position:relative;
  188. width:1000px;
  189. background-color:;
  190. overflow:auto;
  191. overflow-y:hidden;
  192. }
  193.  
  194. #content {
  195. float:center;
  196. width:435px;
  197. padding:3px;
  198. margin-top:0px;
  199. margin-left:430px;
  200. background:transparent;
  201. {block:ifboxborders}
  202. width:420px;
  203. {/block:ifboxborders}
  204. }
  205.  
  206. #entry {
  207. margin-top:15px;
  208. padding:5px;
  209. background-color:{color:Main};
  210. background-image: url({image:Main});
  211. {block:ifboxshadows};
  212. box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  213. {/block:ifboxshadows}
  214. {block:ifboxborders}
  215. border: 5px solid {color:Border};
  216. {/block:ifboxborders}
  217. }
  218.  
  219. #entry img{
  220. {block:IndexPage}max-width:400px;{/block:IndexPage}
  221. }
  222.  
  223. #entry .permalink a{
  224. color:{color:Link};
  225. }
  226.  
  227. #entry .permalink{
  228. width:auto;
  229. padding-right:2px;
  230. padding-left:2px;
  231. position:absolute;
  232. text-align:left;
  233. font-family:silkscreen;
  234. font-size:8px;
  235. overflow:hidden;
  236. background-color:transparent;
  237. margin-left:420px;
  238. margin-top:5px;
  239. opacity:0.0;
  240. background-color:clear;
  241. }
  242.  
  243. #entry:hover .permalink{
  244. margin-left:420px;
  245. margin-top:-6px;
  246. overflow:visible;
  247. -webkit-transition: opacity 0.3s linear; opacity: 0.8;
  248. -webkit-transition: all 0.3s linear;
  249. -moz-transition: all 0.3s linear;
  250. transition: all 0.3s linear;
  251. }
  252.  
  253. #side {
  254. -webkit-border-top-left-radius: 65px;
  255. -webkit-border-bottom-right-radius: 65px;
  256. -moz-border-radius-topleft: 65px;
  257. -moz-border-radius-bottomright: 65px;
  258. border-top-left-radius: 65px;
  259. border-bottom-right-radius: 65px;
  260. position:fixed !important;
  261. width:230px;
  262. height:auto;
  263. text-align:left;
  264. font-size:12px;
  265. line-height:13px;
  266. background-color:{color:Main};
  267. background-image: url({image:Main});
  268. margin-top:40px;
  269. margin-left:-380px ;
  270. padding:2px;
  271. {block:ifboxshadows};
  272. box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  273. {/block:ifboxshadows}
  274. {block:ifboxborders}
  275. border: 5px solid {color:Border};
  276. {/block:ifboxborders}
  277. }
  278.  
  279. .links {
  280. font-family:amatic sc;
  281. font-size:23px;
  282. line-height:29px;
  283. }
  284.  
  285. .navi {
  286. position:fixed !important;
  287. width:75px;
  288. height:100px;
  289. background-color:clear;
  290. margin-top:145px;
  291. margin-left:-455px ;
  292. padding 2px;
  293. z-index:1;
  294. }
  295.  
  296. .nav a{
  297. float:right;
  298. overflow:hidden;
  299. width:75px;
  300. height:16px;
  301. padding:2px;
  302. padding-top:6px;
  303. margin-left:0px;
  304. margin-top:5px;
  305. font-size:12px;
  306. text-align:left;
  307. z-index:1;
  308. display:block;
  309. background-color:{color:Sidelinks};
  310. transition: all 0.5s ease-out;
  311. -o-transition-transition: all 0.5s ease-out;
  312. -webkit-transition: all 0.5s ease-out;
  313. -moz-transition: all 0.5s ease-out;
  314. }
  315.  
  316. .nav a:hover{
  317. background-color:{color:Sidelinks Hover};
  318. color:{color:Sidelinks Text Hover};
  319. width:150px;
  320. float:right;
  321. transition: all 0.5s ease-out;
  322. -o-transition-transition: all 0.5s ease-out;
  323. -webkit-transition: all 0.5s ease-out;
  324. -moz-transition: all 0.5s ease-out;
  325. }
  326.  
  327. .blogtitle{
  328. font-size:43px;
  329. font-family:Amatic Sc;
  330. line-height:43px;
  331. color: {color:Blog Title};
  332. text-transform:uppercase;
  333. font-weight:bold;
  334. }
  335.  
  336. .posttitle{
  337. font-size:25px;
  338. line-height:23px;
  339. text-transform:uppercase;
  340. color: {color:Post Title};
  341. letter-spacing: 1;
  342. font-family:Amatic Sc;
  343. font-weight:none;
  344. }
  345.  
  346.  
  347. blockquote{
  348. padding:0px 0px 2px 5px;
  349. margin:0px 0px 2px 1px;
  350. border-left: 1px solid {color:Text};}
  351. blockquote p, ul{margin:0px; padding:0px;
  352. }
  353.  
  354. .chat .line{
  355. color:{color:Chat 1};
  356. padding: 2px;
  357. border-bottom: 1px dotted black;
  358. }
  359. .chat .line.odd{
  360. color:{color:Chat 2};
  361. border-bottom: 1px dotted black;
  362. }
  363.  
  364. .label {font-weight:bold; color:{color:text}}
  365.  
  366. .question {
  367. color:{color:Text};
  368. font-size:10px;
  369. font-weight:normal;
  370. line-height:95%;
  371. background: {color:Ask Background};
  372. margin: 0 0 10px 0;
  373. padding: 10px 15px;
  374. position:relative;
  375. -moz-border-radius:5px; -webkit-border-radius:5px;
  376. }
  377.  
  378. .questionarrow {
  379. width:13px;
  380. height:7px;
  381. font-size:30px;
  382. position:absolute;
  383. color:{color:Ask Background};
  384. bottom: -3.5px;
  385. left: 260px;
  386. }
  387.  
  388.  
  389. .asker {
  390. width:500px;
  391. text-align:left;
  392. color:{color:Text};
  393. font-family:silkscreen;
  394. font-size:9px;
  395. }
  396.  
  397. .asker a {
  398. color:{color:Text};
  399. }
  400.  
  401. .asker img {
  402. float:left;
  403. margin-left:220px;
  404. vertical-align:top;
  405. margin-right:3px;
  406. max-height:15px;
  407. }
  408.  
  409. a img{border:0px;}
  410.  
  411. .p { padding-top:5px; }
  412. .ol, ul { margin-left:10px; padding:5px; }
  413. .ul { list-style-type:square; }
  414.  
  415. .albumart { margin-bottom:0px; }
  416. .albumart img, .audio embed { width:55px; padding-right:3px; }
  417.  
  418. .video embed, .post div.video object {width:250px !important; height:187px !important;}
  419.  
  420. .notes img{width:10px; position:left; top:3px;}
  421.  
  422. .tags {
  423. width:auto;
  424. solid {color:Links};
  425. font-family:silkscreen;
  426. font-size:8px;
  427. text-transform:uppercase;
  428. color:{color:link};
  429. padding:2px;
  430. line-height:1;
  431. margin-left:1px;
  432. }
  433.  
  434. .tags a:hover{
  435. color: {color:Link Hover};
  436. }
  437.  
  438. .pic{
  439. border-top:1px dashed black;
  440. padding-top:3px;
  441. padding-left:5px;
  442. }
  443.  
  444. .pages {
  445. height:16px;
  446. padding-top:5px;
  447. margin-top:10px;
  448. font-size:8px;
  449. font-family:silkscreen;
  450. float:center;
  451. background-color:white;
  452. {block:ifboxshadows};
  453. box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  454. {/block:ifboxshadows}
  455. {block:ifboxborders}
  456. border: 1px solid black;
  457. {/block:ifboxborders}
  458. }
  459.  
  460. {font-size: 100%;}
  461.  
  462. {CustomCSS}
  463. iframe#tumblr_controls {right:3px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.5;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  464.  
  465. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 1;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  466. </style>
  467.  
  468. <link rel="shortcut icon" href="{Favicon}">
  469.  
  470. <link rel="alternate" type="application/rss+xml" title="{Title}" href="{RSS}" />
  471.  
  472. {block:ifrainbowlinks}<script type="text/javascript" src="http://static.tumblr.com/jn17x0j/2Zvltn7mc/rainbow_links.txt
  473. "></script>{/block:ifrainbowlinks}
  474.  
  475. {block:ifinfinitescrolling}<style>#toTop {display:none;text-decoration:none;position:fixed;bottom:20px;right:20px;overflow:hidden;width:30px;height:40px;border:none;text-indent:-999px;background:url(http://static.tumblr.com/hi8vwsz/Q0ull6xz3/totop.png) no-repeat left top;z-index:3000;}#toTopHover {background:url(http://static.tumblr.com/hi8vwsz/Q0ull6xz3/totop.png) no-repeat left -40px;
  476. width:30px;height:40px;display:block;overflow:hidden;float:left;opacity: 0;-moz-opacity: 0;filter:alpha(opacity=0);}
  477. #toTop:active, #toTop:focus {outline:none;}#toTop:active, #toTop:focus {outline:none;}</style>
  478.  
  479. <script type="text/javascript" src="http://static.tumblr.com/53unaru/kx3lgzker/jquery-1.3.2.min.js" charset="utf-8"></script>
  480. <script type="text/javascript" src="http://static.tumblr.com/53unaru/4jtlgzkf8/easing.js"></script>
  481. <script type="text/javascript" src="http://static.tumblr.com/53unaru/y8wlgzkbt/jquery.ui.totop.js"></script>
  482. <script type="text/javascript">
  483. $(document).ready(function() {
  484. $().UItoTop({ easingType: 'easeOutQuart' });
  485. });
  486. </script>{/block:ifinfinitescrolling}
  487.  
  488.  
  489. </head>
  490. <body>
  491. <div id="container">
  492. <div id="center">
  493. <div id="content">
  494.  
  495. <center>
  496. <div class="navi">
  497. <div class="nav">
  498. <a href="/">HOME</a>
  499. <a href="/ask">ASK</a>
  500. <a href="#?w=300" rel="02" class="poplight">NAVIGATE&nbsp;</a>
  501. <a href="http://sociallyawkwardgiraffe.tumblr.com/">THEME</a>
  502. </div>
  503. </div>
  504. <div id="side">
  505. <center>
  506. <div class="blogtitle"><a href="/">{Title}</a></div>
  507. </center>
  508.  
  509. <div class="pic">
  510. <img src="{image:Sidebar}"width="220"/>
  511. </div>
  512. <br>
  513.  
  514.  
  515. {Description}
  516.  
  517.  
  518. <center>
  519. {block:ifNotInfiniteScrolling}
  520. <br>
  521. {block:PreviousPage} <a href="{PreviousPage}"><font size="2">◄</font></a>{/block:PreviousPage}
  522. {block:NextPage}<a href="{NextPage}"><font size="2">►</font></a>{/block:NextPage}{/block:ifpagination}
  523. {block:PermalinkPagination}
  524. {block:PreviousPost}<a href="{PreviousPost}"><font size="2">▼</font></a>{/block:PreviousPost}
  525. {block:NextPost}<a href="{NextPost}"><font size="2">▲</font></a>{/block:NextPost}
  526. {/block:PermalinkPagination}
  527. {/block:ifNotInfiniteScrolling}
  528.  
  529. </div>
  530. </div>
  531.  
  532. <div id="02" class="popup_block">
  533. <center>
  534. <div style="font-family:amatic sc;font-size:50px;line-height:50px;">links</div>
  535. <br><br>
  536. <div class="links">
  537. <a href="{text:Link 1 URL}">{text:Link 1 Name}</a>&nbsp;·
  538. <a href="{text:Link 2 URL}">{text:Link 2 Name}</a>&nbsp;·
  539. <a href="{text:Link 3 URL}">{text:Link 3 Name}</a>&nbsp;·
  540. <a href="{text:Link 4 URL}">{text:Link 4 Name}</a>&nbsp;
  541. </center>
  542. </div>
  543.  
  544. </div>
  545.  
  546. <div id="content">
  547. {block:Posts}
  548. <div id="entry">
  549. {block:IndexPage}
  550. <div class="permalink">
  551. <a href="{permalink}">{NoteCountWithLabel}</a> <br> <a href="{reblogurl}" target="_blank">reblog</a></div>
  552. {/block:IndexPage}
  553.  
  554. {block:Text}{block:Title}<span class="posttitle">{Title}</span>{/block:Title}<span class="entrytext">{Body}</span>{/block:text}
  555.  
  556. {block:Link}<a href="{URL}" class="posttitle">{Name}</a>{block:Description}{Description}{/block:Description}{/block:link}
  557.  
  558. {block:Photo}<center>{LinkOpenTag}<a href="{permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"width=400px/></a>{LinkCloseTag}</center>{block:ifshowcaption}{block:Caption}{Caption}{/block:Caption}{/block:ifshowcaption}{/block:Photo}
  559.  
  560. {block:Photoset}<center>{Photoset-400}</center></span>{block:ifshowcaption}{block:Caption}{Caption}{/block:Caption}{/block:ifshowcaption}{/block:Photoset}
  561.  
  562. {block:Quote}<span class="posttitle">{Quote}</span>{block:Source}<i> - {Source}</i>{/block:Source}<br>{/block:Quote}
  563.  
  564. {block:Chat}{block:title}<div id="title"><center>{Title}<br></center></div>{/block:title}<div class="chat">{block:Lines}<div class="chat"><div class="line {Alt}"><div class="{Alt} user_{UserNumber}">
  565. {block:Label}<span class="label"><b>{Label} </b></span>{/block:Label}{Line}</div></div></div>{/block:Lines}</div>{/block:Chat}
  566.  
  567. {block:Audio}{block:albumart}<div class="albumart"><img src="{albumarturl}" align="left"></div>{/block:albumart}<div style="width: 300px; height: 20px;">{AudioPlayerGrey}</div><BR>{block:TrackName}<span><strong>Title</strong>:
  568. {TrackName}</span>{/block:TrackName}<br>
  569. {block:Artist}<span><strong>Artist:</strong>
  570. {Artist}</span>{/block:Artist}<br>
  571. {block:Caption}{Caption}{/block:Caption}
  572. {/block:Audio}
  573.  
  574. {block:Video}<center>{Video-400}<BR></center>{block:ifshowcaption}{block:Caption}{Caption}{/block:Caption}{/block:ifshowcaption}{/block:Video}
  575.  
  576.  
  577.  
  578. {block:Answer}
  579. <div class="question">
  580. <div class="questionarrow">▼</div>
  581. {Question}
  582. </div>
  583. <div class="asker"><img src="{AskerPortraitURL-24}">{Asker}</div>
  584. <div class="answer">{Answer}</div>
  585. {/block:answer}
  586.  
  587. {block:HasTags}<div class="tags"> tags: {block:Tags}<a href="{TagURL}" target="_blank">#{Tag} </a>{/block:Tags}</div>{/block:HasTags}
  588. </center>
  589.  
  590. {block:PermalinkPage}
  591. <div id="permapage"><Br>{block:Date}{Month} {DayofMonth},{Year}{/block:Date}{block:NoteCount} · {NoteCountWithLabel}{/block:NoteCount}{block:HasTags} · Tags: {block:Tags}<a href="{TagURL}">#{Tag} </a>{/block:Tags}{/block:HasTags}</div>
  592. {/block:PermalinkPage}
  593.  
  594. {block:PostNotes}{PostNotes}
  595. {/block:PostNotes}</div>{/block:Posts}
  596.  
  597. </div></div>
  598. </div>
  599. </body>
  600. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement