Guest User

unite theme.

a guest
Oct 15th, 2015
3,642
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.77 KB | None | 0 0
  1. <html>
  2.  
  3.  
  4. <head>
  5. <meta name="color:background" content="#d2d1cc"/>
  6. <meta name="color:text" content="#6a6965"/>
  7. <meta name="color:scrollbar" content="#901818" />
  8. <meta name="color:link" content="#6a6965"/>
  9. <meta name="color:linkhover" content="#901818"/>
  10. <meta name="color:texttags" content="#6a6965"/>
  11. <meta name="color:backtags" content="#6a6965"/>
  12. <meta name="color:tagshover" content="#901818"/>
  13. <meta name="color:navigationline" content="#901818"/>
  14. <meta name="color:navlink" content="#6a6965"/>
  15. <meta name="color:navhover" content="#901818"/>
  16. <meta name="color:select" content="#6a6965"/>
  17. <meta name="image:background" content="http://static.tumblr.com/edba448d6f3f6ecb3d9a657ca48de3ba/aecg6xa/clQnw9sbj/tumblr_static_prhzfyyed1c0wo40ckowo04o.jpg"/>
  18. <meta name="image:updates" content="http://static.tumblr.com/0a7123e5d0c337151e28759030944acf/aecg6xa/YPKnw9sbk/tumblr_static_8p8rd9qqsgsgws0c0cokcsk04.png">
  19. <meta name="text:title" content=""/>
  20. <meta name="text:subtitle" content=""/>
  21.  
  22. <meta name="text:link1" content=""/>
  23. <meta name="text:textlink1" content=""/>
  24. <meta name="text:link2" content=""/>
  25. <meta name="text:textlink2" content=""/>
  26. <meta name="text:link3" content=""/>
  27. <meta name="text:textlink3" content=""/>
  28. <meta name="text:updates" content=""/>
  29.  
  30.  
  31. <meta name="if:AudioPlayerWhite" content="1"/>
  32. <meta name="if:AudioPlayerGrey" content="0"/>
  33. <meta name="if:AudioPlayerBlack" content="0"/>
  34. <meta name="text:mp3link" content="https://a.tumblr.com/tumblr_nfgmrfp3dm1s8ej49o1.mp3"/>
  35. <link href="http://fonts.googleapis.com/css?family=Fjalla+One" rel="stylesheet" type="text/css">
  36. <link href='https://fonts.googleapis.com/css?family=Orbitron' rel='stylesheet' type='text/css'>
  37. <title>{Title}</title>
  38. <link rel="shortcut icon" href="{favicon}">
  39. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  40. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  41.  
  42.  
  43. <script type="text/javascript"
  44. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  45.  
  46. <script>
  47.  
  48.  
  49.  
  50. $(document).ready(function() {
  51.  
  52. //
  53.  
  54.  
  55.  
  56. //When you click on a link with class of poplight and the href starts with a #
  57.  
  58. $('a.poplight[href^=#]').click(function() {
  59.  
  60. var popID = $(this).attr('rel'); //Get Popup Name
  61.  
  62. var popURL = $(this).attr('href'); //Get Popup href to define size
  63.  
  64.  
  65.  
  66. //Pull Query & Variables from href URL
  67.  
  68. var query= popURL.split('?');
  69.  
  70. var dim= query[1].split('&');
  71.  
  72. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  73.  
  74.  
  75.  
  76. //Fade in the Popup and add close button
  77.  
  78. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/7e4e05c734e2e42966ca587f4246c626/wv1gc37/ZAMnggvoa/tumblr_static_dxgo7quj2k0scss4cgkg4cccg.png" class="btn_close" title="Close Window" alt="Close" /></a>');
  79.  
  80.  
  81. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  82.  
  83. var popMargTop = ($('#' + popID).height() + 80) / 2;
  84.  
  85. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  86.  
  87.  
  88.  
  89. //Apply Margin to Popup
  90.  
  91. $('#' + popID).css({
  92.  
  93. 'margin-top' : -popMargTop,
  94.  
  95. 'margin-left' : -popMargLeft
  96.  
  97. });
  98.  
  99.  
  100.  
  101. //Fade in Background
  102.  
  103. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  104.  
  105. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  106.  
  107.  
  108.  
  109. return false;
  110.  
  111. });
  112.  
  113.  
  114.  
  115. //Close Popups and Fade Layer
  116.  
  117. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  118.  
  119. $('#fade , .popup_block').fadeOut(function() {
  120.  
  121. $('#fade, a.close').remove(); //fade them both out
  122.  
  123. });
  124.  
  125. return false;
  126.  
  127. });
  128.  
  129.  
  130.  
  131.  
  132.  
  133. });
  134.  
  135. </script>
  136.  
  137.  
  138. <style type="text/css">
  139.  
  140. ::-webkit-scrollbar {
  141. height: 10px;
  142. width: 5px;
  143. background: {color:background};
  144. }
  145.  
  146. ::-webkit-scrollbar-thumb:vertical {
  147. background: {color:linkhover};
  148. }
  149.  
  150. body {font-family: tahoma;
  151. font-size: 11px;
  152. color:{color:text};text-align: justify;
  153. background: {color:background};
  154. background-image: url('{image:background}');
  155. background-repeat: no-repeat; overflow: hidden;
  156. background-attachment: fixed; background-size: cover;
  157. }
  158.  
  159. a {
  160. color: {color:link};
  161. text-decoration: none;
  162. -moz-transition-duration:0.4s;
  163. -webkit-transition-duration:0.4s;
  164. -o-transition-duration:0.4s;
  165. }
  166.  
  167. a:hover {
  168. color: {color:linkhover};
  169. text-decoration: none;
  170. -moz-transition-duration:0.4s;
  171. -webkit-transition-duration:0.4s;
  172. -o-transition-duration:0.4s;
  173. }
  174. small { font-size:11px;
  175. }
  176. b{ font-size:12px;}
  177.  
  178. h1 {
  179. font-size:20px;
  180. text-align: center;
  181. font-family: georgia;
  182. line-height:95%;
  183. text-transform:Uppercase;
  184. letter-spacing:-1px;
  185. padding-right: 4px;
  186. color: {color:text};
  187. text-decoration: none;
  188. }
  189.  
  190. h2 {font-weight:bold;
  191. text-transform: uppercase;
  192. margin-bottom:5px; text-align: center;
  193. font-family: Orbitron;
  194. font-size:17px;
  195. line-height:95%;
  196. letter-spacing:-1px;
  197. }
  198.  
  199. #asker { text-transform:uppercase;
  200. padding: 20px;background-color:{color:background};
  201. text-align: center;
  202. margin-bottom: 20px;
  203. color: {color:text};
  204. border-radius: 3px;
  205. text-decoration: none;}
  206.  
  207. #asker a:hover {text-decoration: none;}
  208. #asker a {text-decoration: none;
  209. }
  210. #asker img{border-radius: 100px;margin-right:6px; margin-bottom: -15px;}
  211. #question {
  212. text-align: justify;
  213. margin-top:10px;
  214. margin-left: 50px;
  215. line-height: 105%;
  216. font-size:11px; font-family:arial;
  217. text-transform:none;
  218. text-align:left;}
  219. #answer{text-transform:none;
  220. font-size:11px;
  221. color:{color:text};}
  222. #answer img {
  223. border-radius: 0px;
  224. margin-right: 6px;
  225. margin-bottom: -5px;
  226. }
  227. #feels {position: fixed;
  228. opacity: 0.99;
  229. height: 400px;
  230. padding-right: 20px;
  231. overflow: auto; margin-top: 140px;
  232. margin-left: 250px;
  233. overflow-x: hidden;
  234. width: 450px;
  235. text-align:justify;
  236. color:{color:text};
  237. }
  238.  
  239. #posts {
  240. width:400px;
  241. text-align:justify;
  242. color:{color:text};
  243. }
  244. #posts img{opacity:0.98;
  245. }
  246. #posts img:hover{opacity:0.99;
  247. -moz-transition-duration:0.5s;-webkit-transition-duration:0.5s;
  248. -o-transition-duration:0.5s;}
  249.  
  250. .caption {
  251. width:400px;
  252. text-align:left;
  253. line-height:150%;
  254. font-size:9px;
  255. letter-spacing:1px;
  256. text-transform:uppercase;
  257. }
  258. #trident {
  259. width: 390px;line-height: 100%;
  260. font-family:fjalla one; text-transform: uppercase;
  261. opacity: 0.99; letter-spacing: -1px;
  262. font-size: 14px; padding-top: 10px;border-top: {color:navhover} dotted 1px; z-index: 1; text-align:left;
  263. -webkit-transition: all 0.5s ease-in-out;
  264. -moz-transition: all 0.5s ease-in-out;
  265. -o-transition: all 0.5s ease-in-out;
  266. -ms-transition: all 0.5s ease-in-out;
  267. transition: all 0.5s ease-in-out;
  268. }
  269.  
  270. #trident a {
  271. color: {color:Link};
  272. }
  273. #trident a:hover{color: {color:navhover};
  274. }
  275. #tags {
  276. color: {color:background};
  277. text-align: center;
  278. width:390px; font-size:11px;
  279. line-height:150%; background-color:{color:navigationline};
  280. text-align:left; letter-spacing:0px;
  281. padding:3px; font-family:arial;
  282. margin-bottom: 50px;opacity:0.98; text-transform: none!important;
  283. -moz-transition-duration:0.5s;
  284. -webkit-transition-duration:0.5s;
  285. -o-transition-duration:0.5s;
  286. }
  287.  
  288. #tags a { text-decoration: none; color: {color:background}; }
  289. #tags a:hover {text-decoration: none; color: {color:background};}
  290.  
  291. #odesta {
  292. position: fixed;
  293. padding: 20px;
  294. left: 330px;
  295. opacity: 0.98;
  296. margin-top: 1%;
  297. width: 200px;
  298. }
  299. .tumblr_blog {font-weight: bold;
  300. text-transform: uppercase;
  301. margin-bottom: 5px;
  302. font-family: 'Orbitron', sans-serif;
  303. font-size: 10px;
  304. letter-spacing: 1px;
  305. line-height: 125%;
  306. }
  307. .title {
  308. text-align: center;font-weight: bold;
  309. text-transform: uppercase;
  310. margin-bottom:5px;
  311. font-family: 'Orbitron', sans-serif;
  312. font-size:20px;
  313. line-height:65%; color: {color:text};
  314. letter-spacing:-1px;
  315. }
  316.  
  317. .subtitle {
  318. text-align: center; color: {color:text};
  319. font-family: 'fjalla one', sans-serif;
  320. opacity: 0.8;
  321. font-size: 10px;
  322. text-transform: uppercase;
  323. letter-spacing: 1px; }
  324. .subtitle a{font-style: none;}
  325.  
  326. .navigation {
  327. text-align: center;
  328. padding: 7px;
  329. text-transform: uppercase;
  330. margin-bottom: 5px;
  331. font-family: georgia;
  332. -moz-transition-duration: 0.4s;
  333. -webkit-transition-duration: 0.4s;
  334. -o-transition-duration: 0.4s;
  335. font-weight: normal;
  336. font-family: georgia;
  337. font-size: 19px;
  338. line-height: 120%;
  339. letter-spacing: 4px;
  340. margin-top: 130px;
  341. margin-left: 180px;
  342. display: inline-table;
  343. position: fixed;
  344. }
  345.  
  346. .navigation a {color: {color:navhover};
  347. text-decoration: none;
  348. padding:2px;
  349. background-color: none;}
  350.  
  351. .navigation a:hover {
  352. color: #222;color: {color:navlink};
  353. -moz-transition-duration:0.4s;
  354. -webkit-transition-duration:0.4s;
  355. -o-transition-duration:0.4s;
  356. }
  357.  
  358.  
  359. #description {width:250px;
  360. padding:1px;
  361. margin-top:10px;
  362. margin-left: -30px;
  363. border-left: 0px solid {color:background};
  364. font-size: 11px;
  365. text-align: center;
  366. float: center;
  367. }
  368.  
  369. #description a {text-decoration:none;}
  370.  
  371. ::selection {
  372. color: {color:select};
  373. background: {color:navhover};
  374. }
  375.  
  376. ::-moz-selection {
  377. color: {color:select};
  378. background: {color:navhover};
  379. }
  380.  
  381. ::-webkit-selection {
  382. color: {color:select};
  383. background: {color:navhover};
  384. }
  385.  
  386. blockquote {
  387. border-left:4px solid {color:navigationline};
  388. padding-left:5px;
  389. margin:3px 5px 3px 20px;}
  390.  
  391. #everlark
  392. #everlark a{
  393. display:block;position: absolute;
  394. }
  395. #everlark .dick {position: absolute;
  396. margin-top:0px;filter: alpha(opacity = 0);
  397. opacity:0;-webkit-transition: all 0.5s ease-out;
  398. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  399. }
  400.  
  401. #everlark:hover .dick {
  402. margin-top:0px;
  403. -webkit-transition: all 0.8s ease-out;
  404. -moz-transition: all 0.8s ease-out;
  405. transition: all 0.8s ease-out;
  406. filter: alpha(opacity = 100);
  407. filter: alpha(opacity = 100);
  408. opacity:100;
  409. }
  410.  
  411. #updates { font-size: 9px;
  412. width: 100px;
  413. height: auto;
  414. padding-top: 3px;
  415. margin-left: 155px;
  416. text-align: center;position: absolute;
  417. }
  418.  
  419. #anchor img{
  420. margin-left: 100px; position: absolute;
  421. }
  422.  
  423.  
  424. #fade {
  425. display: none;
  426. background: #000;
  427. position: fixed;
  428. left: 0;
  429. top: 0;
  430. width: 100%;
  431. height: 100%;
  432. opacity: .80;
  433. z-index: 9999;
  434. }
  435.  
  436. .popup_block{
  437. display: none;
  438. background: #FFFFFF;
  439. padding: 20px;
  440. float: left;
  441. position: fixed;
  442. top: 50%;
  443. left: 50%;
  444. z-index: 99999;
  445. }
  446.  
  447. img.btn_close {
  448. float: right;
  449. width: 15px;
  450. margin: -15px -15px 0 0;
  451. }
  452.  
  453. *html #fade {
  454. position: absolute;
  455. }
  456.  
  457. *html .popup_block {
  458. position: absolute;
  459. }
  460.  
  461. .notes{ list-style-type: none;}
  462. .notes img{
  463. border-radius: 3px;
  464. margin: 0px 10px -4px 0px;}
  465. .notes li {
  466. padding-bottom: 7px;
  467. }
  468. .mus {
  469. min-height: 100px;
  470. height: 100px;
  471. padding: 0px 20px;
  472. padding-left: 0px;
  473. display: table;
  474. {block:If250pxPost}{block:IndexPage}
  475. width: 210px;
  476. padding: 20px;
  477. height: 210px;
  478. {/block:IndexPage}{/block:If250pxPost}}
  479.  
  480. .mus img {width: 100px; position: absolute; border-radius: 5px;
  481. {block:If250pxPost}{block:IndexPage}
  482. width: 150px; margin-left: 30px; margin-top: 30px;
  483. {/block:IndexPage}{/block:If250pxPost}}
  484.  
  485. .musiclabel {
  486. padding: 10px 20px;
  487. padding-left: 120px;
  488. display: table-cell;
  489. {block:IfNot250pxPost}
  490. {block:IfNot400pxPost}width: 400px;{/block:IfNot400pxPost}
  491. {block:If400pxPost}width: 300px;{/block:If400pxPost}
  492. {/block:IfNot250pxPost}
  493. {block:If250pxPost}
  494. width: 150px;
  495. {block:PermalinkPage}width: 400px;{/block:PermalinkPage}
  496. {/block:If250pxPost}
  497. {block:IfUppercase}text-transform: uppercase;{/block:IfUppercase} }
  498. .audioverlay {opacity: 0.3;
  499. {block:IfAudioPlayerWhite}background-color: #fff;{/block:IfAudioPlayerWhite}
  500. {block:IfAudioPlayerGrey}background-color: #e4e4e4;{/block:IfAudioPlayerGrey}
  501. {block:IfAudioPlayerBlack}background-color: #000;{/block:IfAudioPlayerBlack}
  502. position: absolute;
  503. z-index: 10;
  504.  
  505. transition-duration: 0.6s;
  506. -moz-transition-duration: 0.6s;
  507. -webkit-transition-duration: 0.6s;
  508. -o-transition-duration: 0.6s;
  509. z-index: 100;}
  510.  
  511. .mus:hover .audioverlay {opacity: 0.8;
  512. transition-duration: 0.6s;
  513. -moz-transition-duration: 0.6s;
  514. -webkit-transition-duration: 0.6s;
  515. -o-transition-duration: 0.6s;}
  516.  
  517. .audioarrow { width: 20px;
  518. height: 30px;
  519. overflow: hidden;
  520. margin: 35px 45px 35px 35px;}
  521.  
  522. </style>
  523. <style type="text/css">{CustomCSS}</style>
  524.  
  525. </head>
  526.  
  527. <body>
  528.  
  529. <div id="ask" class="popup_block">
  530. <iframe frameborder="0" scrolling="yes" width="100%" height="190" src="http://www.tumblr.com/ask_form/YOURURL.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe></div>
  531.  
  532. <div id="everlark">
  533. <div id="anchor"><img src="{image:updates}" width="50"></div>
  534. <div style="font-family: 'Orbitron', sans-serif;font-size: 8px;text-transform: uppercase;letter-spacing: 3px;opacity:0.5;margin-left: 100px;margin-top:50px;position: fixed;">updates<br><embed src="http://www.sheepproductions.com/billy/billy.swf?autoplay=true&f0={text:mp3link}&t0=&total=1" quality="high" wmode="transparent" width="200" height="10" name="billy" align="middle" type="application/x-shockwave-flash" /></div>
  535. <div class="dick">
  536. <div id="updates">{text:updates}</div>
  537. </div></div>
  538.  
  539. <div id="odesta"><center>
  540. <div class="title">{text:title}</div>
  541. <div class="subtitle">{text:subtitle}</div></center>
  542. <div id="description">{Description}</div></div>
  543.  
  544. <div class="navigation">
  545. <a href="/" title="home page">●</a><br>
  546. <a href="#?w=450" rel="ask" class="poplight" title="message">●</a><br>
  547. <a href="{text:link1}" title="{text:textlink1}">●</a><br>
  548. <a href="{text:link2}" title="{text:textlink2}">●</a><br>
  549. <a href="{text:link3}" title="{text:textlink3}">●</a><br>
  550. {block:PreviousPage}<a href="{PreviousPage}" title="previous page" class="jump_page">◀</a>{/block:PreviousPage}<br>{block:NextPage}<a href="{NextPage}" title="next page" class="jump_page">▶</a>{/block:NextPage}{/block:Pagination}
  551. </div>
  552.  
  553. <div id="feels">
  554. {block:Posts}
  555. <div id="posts">
  556.  
  557. {block:Text}{block:Title}<h2>{Title}</h2>{/block:Title}{Body}{/block:Text}
  558.  
  559. {block:Quote}<h1>❝{Quote}❞</h1>&mdash;{Source}{/block:Quote}
  560.  
  561. {block:Link}<a href="{URL}"><h2>{Name}</h2></a>
  562. {block:Description}<p>{Description}</p>{/block:Description}{/block:Link}
  563.  
  564. {block:Photo}<center><img src="{PhotoURL-400}"></center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  565.  
  566. {block:Photoset}<center>{Photoset-400}</center>
  567. {block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  568.  
  569. {block:Audio}<div class="mus"><div class="audioverlay"><div class="audioarrow">{block:IfAudioPlayerWhite}{AudioPlayerWhite}{/block:IfAudioPlayerWhite}{block:IfAudioPlayerGrey}{AudioPlayerGrey}{/block:IfAudioPlayerGrey}
  570. {block:IfAudioPlayerBlack}{AudioPlayerBlack}{/block:IfAudioPlayerBlack}</div></div><img src="http://static.tumblr.com/jn9hrij/20Ul2zzsr/albumart.jpg" alt="default album art"/>{block:AlbumArt}<img class="cover" src="{AlbumArtURL}" />{/block:AlbumArt}<div class="musiclabel" {block:If250pxPost}{block:IndexPage}style="display: none"{/block:IndexPage}{/block:If250pxPost}>{block:TrackName}<span style="font-weight:normal;text-transform: uppercase;font-family: fjalla one;font-size:17px;letter-spacing:-1px;">{TrackName}</span>{/block:TrackName}<br>{block:Artist}{Artist}{/block:Artist} {block:Album}· {Album}{/block:Album}<br>
  571. {block:Playcount}{Playcount} Plays{/block:Playcount}</div></div>
  572. {block:Caption}{Caption}{/block:Caption}{/block:Audio}
  573.  
  574.  
  575. {block:Chat}<ul class="chat">{block:Title}<h2>{Title}</h2>{/block:Title}{block:Lines}<li>{block:Label}<span class="label">{Label}</span>{/block:Label}&nbsp;{Line}</li>{/block:Lines}</ul>{/block:Chat}
  576.  
  577. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  578.  
  579.  
  580. {block:Answer}
  581. <div id="asker"><img src="{AskerPortraitURL-40}"><span style="text-transform: uppercase;font-family: Orbitron;font-size:17px;line-height:110%;display: inline-table;text-align: left;font-weight: bold;">{Asker}:</span> <div id="question">{Question}</div></div>
  582. {block:Answerer}{Answer}{/block:Answerer}
  583. <div id="replies">{Replies}</div>
  584. {/block:Answer}
  585.  
  586. <div id="trident">
  587. {block:Date}<a href="{Permalink}">{TimeAgo}</a>{/block:Date}
  588. {block:NoteCount}| <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}
  589. {block:NotReblog}| <a href="{ReblogURL}" target="_blank">reblog</a>{/block:NotReblog} <br>
  590.  
  591. {block:HasTags} <div id="tags">
  592. {block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>
  593. {/block:HasTags}
  594. </div>
  595. {block:PostNotes}{PostNotes}{/block:PostNotes}
  596.  
  597. </div>
  598. {/block:Posts}
  599. </div>
  600. </body>
  601. </html>
Advertisement
Add Comment
Please, Sign In to add comment