Advertisement
ciralism

Video Killed the Radio Star - Theme III by CIRALISM

Apr 30th, 2015
8,383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.18 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <title>{Title}{block:TagPage}#{Tag}{/block:TagPage}</title>
  5. <link rel="shortcut icon" href="{Favicon}">
  6. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  7. {block:Description}<meta name="description" content="{MetaDescription}"/>{/block:Description}
  8.  
  9. <!---
  10.  
  11. Theme III by CIRALISM
  12.  
  13. VIDEO KILLED THE RADIO STAR
  14.  
  15. //use respectfully
  16. //edit as much as you want
  17. //my ask is always open if you need help
  18. //enjoy!
  19.  
  20. //some suggestions/troubleshooting:
  21. -if your posts look wonky, make sure you have EITHER one column OR two columns turned on, not neither and not both
  22. -if your music player is not working, make sure to add: style="margin-left:-20px;" to your billy code
  23. -if you're having any other difficulties, feel free to message me and let me know, and I'll do my best to fix them
  24.  
  25.  
  26. --->
  27.  
  28.  
  29. <!-- META TAGS --->
  30. <meta name="color:accent one" content="#ffffff"/>
  31. <meta name="color:accent two" content="#ffffff"/>
  32.  
  33. <meta name="text:link1" content="fresh"/>
  34. <meta name="text:link1url" content="link 1 url"/>
  35. <meta name="text:link2" content="mailbox"/>
  36. <meta name="text:link2url" content="link 2 url"/>
  37. <meta name="text:link3" content="navigate"/>
  38. <meta name="text:menu title" content="menu"/>
  39. <meta name="text:link3url" content="link 3 url"/>
  40. <meta name="text:link4" content="archive"/>
  41. <meta name="text:link4url" content="link 4 url"/>
  42. <meta name="text:link5" content="About"/>
  43. <meta name="text:link5url" content="link 5 url"/>
  44. <meta name="text:link6" content="Graphics"/>
  45. <meta name="text:link6url" content="link 6 url"/>
  46. <meta name="text:link7" content="Blogroll"/>
  47. <meta name="text:link7url" content="link 7 url"/>
  48. <meta name="text:link8" content="Tags"/>
  49. <meta name="text:link8url" content="link 8 url"/>
  50.  
  51.  
  52. <meta name="image:sidebarimage" content="" />
  53.  
  54. <meta name="if:only render captions on permalink page" content="1"/>
  55. <meta name="if:show tags on index page" content="0"/>
  56. <meta name="if:one column" content="0"/>
  57. <meta name="if:two columns" content="1"/>
  58. <meta name="if:lazy load images" content="1"/>
  59. <meta name="if: use portrait" content="1"/>
  60. <meta name="if:music player" content="1"/>
  61.  
  62.  
  63. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  64.  
  65. <link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900' rel='stylesheet' type='text/css'>
  66.  
  67. {block:IfLazyLoadImages}<script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/8mXm7q8vn/jquery.js"></script>
  68. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/ogWm7q8w1/lazyload.js"></script>
  69. <script type="text/javascript" charset="utf-8">
  70. var $j = jQuery.noConflict();
  71. $j(function() {
  72. if (navigator.platform == "iPad" || navigator.platform == "iPhone") return;
  73. $j("img").lazyload({
  74. placeholder : "http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif",
  75. effect: "fadeIn",
  76. });
  77. });
  78. </script>{/block:IfLazyLoadImages}
  79.  
  80.  
  81. <script type="text/javascript"
  82. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  83.  
  84. <script>
  85. $(document).ready(function() {
  86. //When you click on a link with class of poplight and the href starts with a #
  87. $('a.poplight[href^=#]').click(function() {
  88. var popID = $(this).attr('rel'); //Get Popup Name
  89. var popURL = $(this).attr('href'); //Get Popup href to define size
  90. //Pull Query & Variables from href URL
  91. var query= popURL.split('?');
  92. var dim= query[1].split('&');
  93. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  94. //Fade in the Popup and add close button
  95. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://38.media.tumblr.com/6af5d5c420629727df31cbb9e3b8329b/tumblr_inline_n2aj54kxoa1r7v6wt.png" class="btn_close" title="Close Window" alt="Close" /></a>');
  96. //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
  97. var popMargTop = ($('#' + popID).height() + 80) / 2;
  98. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  99. //Apply Margin to Popup
  100. $('#' + popID).css({
  101. 'margin-top' : -popMargTop,
  102. 'margin-left' : -popMargLeft
  103. });
  104. //Fade in Background
  105. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  106. $('#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
  107. return false;});
  108. //Close Popups and Fade Layer
  109. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  110. $('#fade , .popup_block').fadeOut(function() {
  111. $('#fade, a.close').remove(); });
  112. return false;
  113. });});
  114. </script>
  115.  
  116. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  117. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  118.  
  119. <script type="text/javascript">
  120. $(window).load(function () {
  121. $('#postcontainer').masonry({
  122. itemSelector : "#post",
  123. },
  124. function() { $('#postcontainer').masonry({ appendedContent: $(this) }); }
  125. );
  126. });
  127. </script>
  128.  
  129.  
  130. <style type="text/css">
  131.  
  132. /* BASICS */
  133.  
  134. #tumblr_controls, .tmblr-iframe {
  135. -webkit-transform:scale(.8);
  136. -moz-transform:scale(.8);
  137. -o-transform:scale(.8);
  138. -ms-transform:scale(.8);
  139. -webkit-filter:invert(100%);
  140. -moz-filter:invert(100%);
  141. -o-filter:invert(100%);
  142. -ms-filter:invert(100%);
  143. top:5px;
  144. right:-5px;
  145. position:fixed!important;
  146. opacity:.3;
  147. }
  148.  
  149.  
  150.  
  151. body {
  152. background-color:#f5f5f5;
  153. font-family:Lato, Sans-Serif;
  154. font-size:11px;
  155. color:#000;
  156. }
  157.  
  158. a {
  159. color:#000;
  160. text-decoration:none;
  161. }
  162.  
  163. a:hover {
  164. color:{color:accent four};
  165. text-decoration:none;
  166. }
  167.  
  168. h1 {
  169. font-family:Lato, Sans-Serif;
  170. text-align:left;
  171. font-size:10px;
  172. color:black;
  173. padding-left:10px;
  174. letter-spacing:2px;
  175. font-weight:bold;
  176. text-transform:uppercase;
  177. }
  178.  
  179.  
  180. blockquote {
  181. padding:10px;
  182. text-align:center;
  183. border:1px solid #eee;
  184. color:#555;
  185. -webkit-transition-duration:250ms;
  186. -o-transition-duration:250ms;
  187. -moz-transition-duration:250ms;
  188. -ms-transition-duration:250ms;
  189. }
  190.  
  191. pre {
  192. text-wrap:break-word!important;
  193. }
  194.  
  195. ul, ol {
  196. text-align:left!important;
  197. }
  198.  
  199. em, strong, b {
  200. font-size:inherit;
  201. font-weight:bold;
  202. }
  203.  
  204.  
  205. /* HEADER */
  206.  
  207. #header {
  208. width:101%;
  209. background-color:white;
  210. position:fixed;
  211. margin-top:-10px;
  212. margin-left:-15px;
  213. z-index:9;
  214. padding:10px 0px 10px 0px;
  215. }
  216.  
  217.  
  218. #links {
  219. width:100%;
  220. display:inline-block;
  221. text-align:left;
  222. font-size:10px;
  223. letter-spacing:2px;
  224. margin-top:-20px;
  225. margin-left:20px;
  226. color:black;
  227. font-size:10px;
  228. -webkit-transition-duration:1s;
  229. -ms-transition-duration:1s;
  230. -moz-transition-duration:1s;
  231. -o-transition-duration:1s;
  232. }
  233.  
  234. #links i {
  235. font-size:4px;
  236. color:#ddd;
  237. }
  238.  
  239.  
  240. #links a {
  241. color:#000;
  242. background-color:white;
  243. padding:3px;
  244. display:inline-block;
  245. text-transform:uppercase;
  246. font-size:8px;
  247. font-weight:300;
  248. font-family:Lato, Sans-Serif;
  249. width:80px;
  250. text-align:center;
  251. -webkit-transition-duration:250ms;
  252. -moz-transition-duration:250ms;
  253. -o-transition-duration:250ms;
  254. -ms-transition-duration:250ms;
  255. }
  256.  
  257. #links a:before {
  258. content:"";
  259. width:14px;
  260. position:absolute;
  261. margin-top:5px;
  262. margin-left:-20px;
  263. height:1px;
  264. background-color:{color:accent one};
  265. }
  266.  
  267.  
  268.  
  269. #links a:hover {color:{color:accent one};}
  270.  
  271. /* SIDEBAR */
  272.  
  273. #sidebar {
  274. position:fixed;
  275. width:180px;
  276. margin-top:100px;
  277. margin-left:100px;
  278. background-color:white;
  279. padding:30px;
  280. }
  281.  
  282. .inner {
  283. border:1px solid #f3f3f3;
  284. height:220px;
  285. }
  286.  
  287.  
  288.  
  289. .sidebarimage {
  290. width:80px;
  291. height:80px;
  292. padding:15px;
  293. padding-bottom:0px;
  294. position:fixed;
  295. margin-top:-5px;
  296. margin-left:105px;
  297. }
  298.  
  299. .sidebarimage img {
  300. width:50px;
  301. height:50px;
  302. margin-left:-2px;
  303. }
  304.  
  305. .inner:hover .billy {
  306. opacity:1;
  307. }
  308.  
  309. .billy {
  310. position:absolute;
  311. opacity:0;
  312. width:40px;
  313. height:40px;
  314. background-color:rgba(255,255,255,.8);
  315. margin-top:-47px;
  316. margin-left:3px;
  317. -webkit-transition-duration:600ms;
  318. -moz-transition-duration:600ms;
  319. -o-transition-duration:600ms;
  320. -ms-transition-duration:600ms;
  321. }
  322.  
  323. .billy_wrap
  324. {
  325. width:20px;
  326. position:absolute;
  327. margin-top:10px;
  328. margin-left:10px;
  329. overflow:hidden;
  330. }
  331.  
  332. .wrap {
  333. width:180px;
  334. height:70px;
  335. display:inline-block;
  336. }
  337.  
  338. .title {
  339. font-weight:bold;
  340. line-height:16px;
  341. font-family:Lato, Arial, Sans-Serif;
  342. width:90px;
  343. padding:10px;
  344. padding-bottom:0px;
  345. text-transform:uppercase;
  346. font-size:10px;
  347. letter-spacing:2px;
  348.  
  349. }
  350.  
  351.  
  352.  
  353. .desc {
  354. font-weight:300;
  355. font-size:7px;
  356. text-transform:uppercase;
  357. border-top:1px solid #f7f7f7;
  358. padding:10px;
  359. letter-spacing:1px;
  360. line-height:14px;
  361. }
  362.  
  363. .desc a {font-weight:bold; border-bottom:1px solid {color:accent one};padding-bottom:0px 2px 3px 2px;}
  364. .sfm {
  365. position:fixed;
  366. margin-top:325px;
  367. margin-left:130px;
  368. }
  369.  
  370. .sfm input {
  371. background-color: transparent;
  372. font-size: 10px;
  373. border: 0px;
  374. text-transform: none;
  375. color: #999;
  376. font-weight:300;
  377. letter-spacing: 1px;
  378. padding: 6px 25px 6px 10px;
  379. font-family: Lato, Sans-Serif;}
  380.  
  381. .sfm input:focus {
  382. outline:none;
  383. color:#000;
  384. }
  385.  
  386. .search .query {
  387. border: 0;
  388. outline: 0;
  389. font-family: inherit;
  390. font-size: inherit;
  391. color: inherit;
  392. background-color: transparent;
  393. }
  394.  
  395. #sb {height: 12px; vertical-align: top;}
  396.  
  397. ::-webkit-input-placeholder {color: inherit;}
  398. :-moz-placeholder {color: inherit; opacity:1;}
  399. ::-moz-placeholder {color: inherit; opacity:1;}
  400. :-ms-input-placeholder {color: inherit;}
  401.  
  402. input:focus::-webkit-input-placeholder {color: transparent;}
  403. input:focus:-moz-placeholder {color: transparent;}
  404. input:focus::-moz-placeholder {color: transparent;}
  405. input:focus:-ms-input-placeholder { color: transparent;}
  406.  
  407. /* POSTS */
  408.  
  409. #postcontainer {
  410. position:absolute;
  411. width:800px;
  412. top:0px;
  413. left:360px;
  414. padding-bottom:80px;
  415. padding-top:15px;
  416. }
  417.  
  418. #post {
  419. text-align:left;
  420. background-color:white;
  421. margin-top:90px;
  422. margin-left:70px;
  423. float:left;
  424. {block:IfOneColumn}width:400px;{/block:IfOneColumn}
  425. {block:IfTwoColumns}width:250px;{/block:IfTwoColumns}
  426. padding:20px;
  427. {block:PermalinkPage}width:500px;{/block:PermalinkPage}
  428. }
  429.  
  430.  
  431.  
  432. /* TEXT POSTS */
  433.  
  434. .tp {
  435. line-height:20px;
  436. text-align:left;
  437. margin-top:-2px;
  438. background-color:white;
  439. padding:10px;
  440. }
  441.  
  442. .tp h1 {
  443. padding-left:0px;
  444. }
  445. .textbody {
  446. font-weight:normal;
  447. letter-spacing:1px;
  448. font-size:9px;
  449. }
  450.  
  451. .textbody a {
  452. font-size:8px;
  453. font-weight:bold;
  454. color:#000;
  455. text-align:left;
  456. letter-spacing:1px;
  457. text-transform:uppercase;
  458. }
  459. .textbody blockquote
  460. {
  461. font-weight:lighter;
  462. margin-left:10px;
  463. text-align:left;
  464. padding:0px 5px;
  465. border:none;
  466. border-left:1px solid #eee;
  467. }
  468.  
  469.  
  470. /* QUESTIONS */
  471.  
  472. .question {
  473. text-align:left;
  474. text-wrap:break-word;
  475. background-color:#fff;
  476. border:1px solid #eee;
  477. font-size:7px;
  478. padding:10px;
  479. padding-bottom:20px;
  480. color:#000;
  481. line-height:150%;
  482. font-weight:lighter;
  483. letter-spacing:1px;
  484. }
  485.  
  486. .da_q {
  487. {block:IfTwoColumns}width:180px;{/block:IfTwoColumns}
  488. {block:IfOneColumn}width:330px;{/block:IfOneColumn}
  489. line-height:16px;
  490. font-size:9px;
  491. margin-left:50px;
  492. margin-top:-5px;
  493. text-align:left;
  494. }
  495.  
  496. .answer {
  497. color:black;
  498. line-height:17px;
  499. letter-spacing:1px;
  500. text-transform:uppercase;
  501. font-size:7px;
  502. font-weight:normal;
  503. margin-top:10px;
  504. }
  505.  
  506. .asker {
  507. font-size:9px;
  508. text-transform:uppercase;
  509. font-family:Lato, Sans-Serif;
  510. font-weight:bold;
  511. padding-left:5px;
  512. margin-top:5px;
  513. letter-spacing:2px;
  514. padding-bottom:0px;
  515. color:#000;
  516. }
  517.  
  518. .portrait img {
  519. width:40px;
  520. height:40px;
  521. padding:0px 5px 5px 0px;
  522. float:left;
  523. }
  524.  
  525. .asker a:hover {
  526. color:{color:accent three};
  527. }
  528.  
  529. /* CHAT POSTS */
  530.  
  531. .line {
  532. padding:8px 0px;
  533. display:block;
  534. border-bottom:1px solid #efefef;
  535. }
  536.  
  537. /* QUOTE POSTS */
  538. .quote {
  539. display:inline-block;
  540. -webkit-transition-duration:250ms;
  541. -moz-transition-duration:250ms;
  542. -o-transition-duration:250ms;
  543. -ms-transition-duration:250ms;
  544. }
  545.  
  546. .text {
  547. text-align:center;
  548. line-height:20px;
  549. font-size:12px;
  550. border-bottom:1px solid {color:accent two};
  551. padding-bottom:5px;
  552. letter-spacing:1px;
  553. }
  554.  
  555. .source {
  556. text-align:center;
  557. padding-top:10px;
  558. padding-bottom:0px;
  559. font-size:9px;
  560. font-weight:bold;
  561. letter-spacing:2px;
  562. text-transform:uppercase;
  563. }
  564.  
  565. /* AUDIO POSTS */
  566. .audio_wrapper {
  567. padding:10px;
  568. background-color:white;
  569. }
  570.  
  571. .play_wrapper {
  572. {block:IfOneColumn}width:400px;{/block:IfOneColumn}
  573. {block:IfTwoColumns}width:250px;{/block:IfTwoColumns}
  574. {block:PermalinkPage}width:500px;{/block:PermalinkPage}
  575. padding-bottom:15px;
  576. padding-top:5px;
  577. text-align:center;
  578. margin-top:0px;
  579. margin-left:-12px;
  580. font-family: Lato, Sans-Serif, Lato, Sans-Serif;
  581. Font-weight:bold;
  582. background-color:#fff;
  583. color:#000;
  584. border:1px solid #eee;
  585. }
  586.  
  587. .track {
  588. margin-top:-33px;
  589. {block:IfOneColumn}width:350px;{/block:IfOneColumn}
  590. {block:IfTwoColumns}width:200px;{/block:IfTwoColumns}
  591. {block:PermalinkPage}width:450px;{/block:PermalinkPage}
  592. margin-left:40px;
  593. font-weight:bold;
  594. font-size:9px;
  595. text-transform:uppercase;
  596. letter-spacing:5px;
  597. text-align:right;
  598. padding-right:20px;
  599. }
  600.  
  601. .player {
  602. width:50px;
  603. height:40px;
  604. overflow:hidden;
  605. text-align:center;
  606. background-color:transparent;
  607. border-right:none;
  608. }
  609.  
  610.  
  611. .audioplayer {
  612. width:20px;
  613. position:absolute;
  614. -webkit-transform:scale(0.8);
  615. -moz-transform:scale(0.8);
  616. -o-transform:scale(0.8);
  617. -ms-transform:scale(0.8);
  618. height:20px;
  619. overflow:hidden;
  620. margin-top:0px;
  621. margin-left:10px;
  622. }
  623.  
  624. .audioinfos {
  625. margin-top:10px;
  626. padding:10px;
  627. padding-left:0px;
  628. margin-left:-10px;
  629. }
  630.  
  631. .infotitle {
  632. text-align:center;
  633. padding:2px;
  634. padding-left:0px;
  635. font-size:8px;
  636. font-weight:bold;
  637. letter-spacing:2px;
  638. text-transform:uppercase;
  639. }
  640.  
  641. .audioinfo {
  642. text-align:center;
  643. text-transform:uppercase;
  644. font-weight:300;
  645. padding:2px;
  646. letter-spacing:2px;
  647. font-size:8px;
  648. }
  649.  
  650.  
  651. ::selection {color:{color:accent one};}
  652.  
  653.  
  654. #pagi {
  655. position:fixed;
  656. top:365px;
  657. left:130px;
  658. height:50px;
  659. width:180px;
  660. text-align:left;
  661. font-family:Lato, Sans-Serif;
  662. }
  663.  
  664. .jump_page {
  665. padding: 10px;
  666. color:#000;
  667. font-size:7px;
  668. text-decoration:none;
  669. margin-top:30px;
  670. font-weight:300;
  671. }
  672.  
  673. .current_page, .jump_page:hover {
  674. padding: 10px;
  675. margin-top:30px;
  676. color: black;
  677. font-size:7px;
  678. text-decoration:none;
  679. font-weight:normal;
  680. -webkit-transition-duration:.4s;
  681. -moz-transition-duration:.4s;
  682. -o-transition-duration:.4s;
  683. -ms-transition-duration:.4s;
  684. }
  685.  
  686.  
  687. #tags {
  688. text-align:center;
  689. display:inline-block;
  690. margin-top:57px;
  691. position:absolute;
  692. {block:IfOneColumn}width:400px;{/block:IfOneColumn}
  693. {block:IfTwoColumns}width:250px;{/block:IfTwoColumns}
  694. text-transform:uppercase;
  695. display:inline-block;
  696. -webkit-transition-duration:.7s;
  697. -moz-transition-duration:.7s;
  698. -o-transition-duration:.7s;
  699. -ms-transition-duration:.7s;
  700. }
  701.  
  702.  
  703. .tag {
  704. letter-spacing:1px;
  705. font-family:Lato, Sans-Serif;
  706. font-size:7px;
  707. color:black;
  708. -webkit-transition-duration:.7s;
  709. -moz-transition-duration:.7s;
  710. -o-transition-duration:.7s;
  711. -ms-transition-duration:.7s;
  712. }
  713.  
  714.  
  715. .caption {
  716. color:black;
  717. padding-bottom:15px;
  718. text-align:center;
  719. font-weight:lighter;
  720. letter-spacing:1px;
  721. display:block;
  722. margin-top:10px;
  723. {block:IfOneColumn}width:400px;{/block:IfOneColumn}
  724. {block:IfTwoColumns}width:250px;{/block:IfTwoColumns}
  725. {block:PermalinkPage}width:500px;{/block:PermalinkPage}
  726. }
  727.  
  728. .caption a {color:black;font-weight:bold;font-size:7px;
  729. text-transform:uppercase;letter-spacing:1px;text-align:center;
  730. }
  731.  
  732. /* PERMALINK PAGES */
  733.  
  734. #notesbin {
  735. width:520px;
  736. height:150px;
  737. overflow-x:hidden;
  738. padding:0px 10px;
  739. border-top:20px solid white;
  740. border-bottom:20px solid white;
  741. overflow-y:scroll;
  742. text-align:left;
  743. line-height:20px;
  744. background-color:#fff;
  745. margin-left:70px;
  746. margin-top:20px;
  747. }
  748. #postnotes {
  749. display:block;
  750. font-size:7px;
  751. text-transform:uppercase;
  752. letter-spacing:1px;
  753. }
  754.  
  755. #postnotes ol {
  756. list-style-type: none;
  757. }
  758.  
  759. #postnotes li {
  760. letter-spacing:2px;
  761. display:block;
  762. margin-top:5px;
  763. margin-left:-20px;
  764. color:#000;
  765. -webkit-transition-duration:.4s;
  766. -moz-transition-duration:.4s;
  767. -o-transition-duration:.4s;
  768. -ms-transition-duration:.4s;
  769. }
  770.  
  771. #postnotes li a {
  772. color:#000;
  773. font-weight:bold;
  774. font-size:7px;
  775. text-transform:uppercase;
  776. }
  777.  
  778. #postnotes li a:hover {
  779. color:#ccc;
  780. }
  781.  
  782. #postnotes img {
  783. width:0px;
  784. height:0px;
  785. }
  786.  
  787. .permalink_page_information {
  788. margin-top:20px;
  789. display:block;
  790. margin-left:70px;
  791. padding:20px;
  792. width:500px;
  793. background-color:white;
  794. color:#000;
  795. font-size:7px;
  796. line-height:15px;
  797. letter-spacing:1px;
  798. text-transform:uppercase;
  799. }
  800.  
  801. .permalink_page_information a {
  802. color:#000;
  803. }
  804.  
  805. .permalink_source_via {
  806. display:block;
  807. }
  808.  
  809. /* CREDIT */
  810. #credit {
  811. position:fixed;
  812. width:80px;
  813. text-align:right;
  814. right:5px;
  815. bottom:5px;
  816. padding:5px;
  817. font-family:Lato, Sans-Serif;
  818. font-weight:bold;
  819. font-size:7px;
  820. text-transform:uppercase;
  821. letter-spacing:1px
  822. }
  823.  
  824. #credit a {color:black;font-weight:bold;}
  825.  
  826. /* POP UP */
  827. #fade {
  828. display: none;
  829. background: #eee;
  830. position: fixed;
  831. left: 0;
  832. top: 0;
  833. width: 100%;
  834. height: 100%;
  835. opacity: .88;
  836. z-index: 999;
  837. }
  838.  
  839.  
  840. .popup_block{
  841. display: none;
  842. background: transparent;
  843. padding: 20px;
  844. float: left top;
  845. position: fixed;
  846. left:50%;
  847. top:50%;
  848. z-index: 99;
  849. }
  850.  
  851. img.btn_close {
  852. float: right;
  853. width:7px;
  854. margin: -10px -15px 0 0;
  855. }
  856.  
  857. *html #fade {
  858. position: absolute;
  859. }
  860.  
  861. *html .popup_block {
  862. position: absolute;
  863. }
  864.  
  865. #menu {
  866. width:250px;
  867. background-color:#fff;
  868. height:180px;
  869. padding:25px 30px 35px 30px;
  870. z-index:9999;
  871. }
  872.  
  873. #menu .inside {
  874. padding:20px;
  875. border:1px solid #eee;
  876. background-color:white;
  877. color:black;
  878. height:130px;
  879. text-transform:uppercase;
  880. font-weight:300;
  881. letter-spacing:2px;
  882. }
  883.  
  884. .inside a {
  885. display:block;
  886. font-size:7px;
  887. color:black;
  888. padding:7px 10px;
  889. }
  890.  
  891. .inside a:hover {
  892. color:{color:accent two};
  893. }
  894.  
  895. .inside a:before {
  896. content:"";
  897. position:absolute;
  898. width:10px;
  899. height:1px;
  900. background-color:{color:accent two};
  901. margin-top:4px;
  902. margin-left:-15px;
  903. }
  904.  
  905. #menu h1 {
  906. text-transform:lowercase;
  907. color:black;
  908. text-align:left;
  909. font-weight:bold;
  910. font-size:12px;
  911. margin-top:-10px;
  912. }
  913.  
  914. .photo {
  915. {block:IfOneColumn}width:400px;{/block:IfOneColumn}
  916. {block:IfTwoColumns}width:250px;{/block:IfTwoColumns}
  917. {block:PermalinkPage}width:500px;{/block:PermalinkPage}
  918. padding-bottom:10px;
  919. }
  920.  
  921. .other_info {
  922. margin-top:10px;
  923. position:absolute;
  924. background-color:#f3f3f3;
  925. border-top:7px solid #f3f3f3;
  926. display:block;
  927. {block:IfTwoColumns}width:300px;{/block:IfTwoColumns}
  928. {block:IfOneColumn}width:450px;{/block:IfOneColumn}
  929. margin-left:-25px;
  930. }
  931.  
  932. .other_info a {
  933. color:#000;
  934. padding:10px;
  935. {block:IfTwoColumns}width:70px;{/block:IfTwoColumns}
  936. {block:IfOneColumn}width:120px;{/block:IfOneColumn}
  937. text-align:center;
  938. font-weight:300;
  939. text-transform:uppercase;
  940. font-size:7px;
  941. letter-spacing:2px;
  942. display:inline-block;
  943. background-color:white;
  944. margin-left:5px;
  945. }
  946.  
  947. .o_notes {
  948. {block:IfTwoColumns}width:76px!important;{/block:IfTwoColumns}
  949. {block:IfOneColumn}width:127px!important;{/block:IfOneColumn}
  950. font-weight:bold!important;
  951. }
  952.  
  953. .other_info a:hover {
  954. color:{color:accent two};
  955. }
  956.  
  957. </style>
  958.  
  959. </head>
  960. <body>
  961. <!--HEADER-->
  962. <div id="header">
  963. <div id="links">
  964. <a href="{text:link1url}">{text:link1} </a>
  965. <a href="{text:link2url}">{text:link2} </a>
  966. <a href="#?w=250" rel="menu" class="poplight">Menu </a>
  967. </div>
  968. </div>
  969.  
  970. <!--SIDEBAR-->
  971. <div id="sidebar">
  972. <div class="inner">
  973. <div class="wrap">
  974.  
  975. <div class="sidebarimage">
  976. {block:IfUsePortrait}<img src="{PortraitURL-40}">{/block:IfUsePortrait}
  977. {block:IfNotUsePortrait}<img src="{image:sidebarimage}">{/block:IfNotUsePortrait}
  978. {block:IfMusicPlayer}
  979. <div class="billy">
  980. <div class="billy_wrap">
  981. <embed src="http://www.sheepproductions.com/billy/billy.swf?autoplay=false&f0=http://k003.kiwi6.com/hotlink/um26xel32p/38305-video-killed-the-radio-star-the-buggles--1411576156.mp3&t0=Video Killed The Radio Star&f1=http://k003.kiwi6.com/hotlink/tu6rfhe40s/Agusti_n_Amigo_-_Video_Killed_The_Radio_Star_The_Buggles_-_Solo_Acoustic_Guitar.mp3&t1=Acoustic Video Killed the Radio Star&total=2" quality="high" wmode="transparent" width="200" height="10" style="margin-left:-20px;" name="billy" align="middle" type="application/x-shockwave-flash" /></div></div><!---THIS IS WHERE YOUR BILLY CODE GOES (MUSIC PLAYER). If you do nothing, your blog will play Video Killed The Radio Star. To create your own music player, go to http://sheepproductions.com/billy. IMPORTANT: in the embedded code they give you, make sure to add style="margin-left:-20px;" Otherwise, your player will not show-->
  982. {/block:IfMusicPlayer}
  983. </div>
  984. <div class="title">{Title}</div>
  985. </div>
  986. <div class="desc">{Description}</div>
  987. </div>
  988. </div>
  989.  
  990. <form action="/search" method="get" class="sfm">
  991. <input type="text" name="q" value="{SearchQuery}" id="sf" class="query" placeholder="search tags"/>
  992. <input type="image" value="Search" src ="http://static.tumblr.com/f1skqpy/Oxbn13qun/search_icon.png" id="sb"/>
  993. </form>
  994.  
  995. <div id="pagi">
  996. {block:Pagination}
  997. {block:PreviousPage}<a href="{PreviousPage}" class="jump_page">&laquo;</a>{/block:PreviousPage}
  998.  
  999. {block:JumpPagination length="5"}
  1000. {block:CurrentPage}<span class="current_page">{PageNumber}</span>{/block:CurrentPage}
  1001. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}
  1002. {block:NextPage}<a href="{NextPage}" class="jump_page">&raquo;</a>{/block:NextPage}
  1003. {/block:Pagination}
  1004. </div>
  1005.  
  1006. <!---POSTS--->
  1007. <div id="postcontainer">
  1008. {block:Posts}
  1009. <!-- {block:NoRebloggedFrom}
  1010. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  1011. {/block:NoRebloggedFrom} -->
  1012.  
  1013. {block:ContentSource}<!-- {SourceURL}
  1014. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  1015. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  1016. {/block:ContentSource}
  1017.  
  1018.  
  1019. <div id="post">
  1020.  
  1021. <!---TEXT POSTS--->
  1022. {block:Text}<div class="tp">{block:Title}<h1>{Title}</h1>{/block:Title}{Body}</div>{/block:Text}
  1023.  
  1024.  
  1025.  
  1026. <!---PHOTO POSTS--->
  1027. {block:Photo}
  1028. <div class="photo">
  1029. {LinkOpenTag}
  1030. {block:IfTwoColumns}<img src="{PhotoURL-250}" width="250px">{/block:IfTwoColumns}
  1031. {block:IfOneColumn}<img src="{PhotoURL-400}" width="400px">{/block:IfOneColumn}{/block:IndexPage}
  1032. {LinkCloseTag}
  1033. {block:IfNotOnlyRenderCaptionsOnPermalinkPage}
  1034. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:IfNotOnlyRenderCaptionsOnPermalinkPage}
  1035. {block:PermalinkPage}<img src="{PhotoURL-500}" width="500px">{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:PermalinkPage}
  1036. </div>
  1037. {/block:Photo}
  1038.  
  1039.  
  1040.  
  1041. <!---PHOTOSET POSTS--->
  1042. {block:Photoset}
  1043. {block:IndexPage}{block:IfTwoColumns}{Photoset-250}{/block:IfTwoColumns}
  1044. {block:IfOneColumn}{Photoset-400}{/block:IfOneColumn}{/block:IndexPage}
  1045. {block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}
  1046. {block:IfOnlyRenderCaptionsOnPermalinkPage}
  1047. {block:PermalinkPage}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:PermalinkPage}{/block:IfOnlyRenderCaptionsOnPermalinkPage}
  1048. {block:IfNotOnlyRenderCaptionsOnPermalinkPage}
  1049. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:IfNotOnlyRenderCaptionsOnPermalinkPage}
  1050. {/block:Photoset}
  1051.  
  1052.  
  1053. <!---VIDEO POSTS--->
  1054. {block:Video}{block:IndexPage}{block:IfTwoColumns}{Video-250}{/block:IfTwoColumns}
  1055. {block:IfOneColumn}{Video-400}{/block:IfOneColumn}{/block:IndexPage}
  1056. {block:PermalinkPage}{Video-500}{/block:PermalinkPage}
  1057. {block:IfOnlyRenderCaptionsOnPermalinkPage}
  1058. {block:PermalinkPage}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:PermalinkPage}{/block:IfOnlyRenderCaptionsOnPermalinkPage}
  1059. {block:IfNotOnlyRenderCaptionsOnPermalinkPage}
  1060. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:IfNotOnlyRenderCaptionsOnPermalinkPage}{/block:Video}
  1061.  
  1062.  
  1063. <!---AUDIO POSTS--->
  1064. {block:Audio}
  1065. <div class="audio_wrapper">
  1066. <div class="play_wrapper">
  1067. <div class="player">
  1068. {Block:AudioPlayer}<div class="audioplayer">{AudioPlayer}</div>{/Block:AudioPlayer}</div>
  1069. {block:TrackName}<div class="track">{TrackName}</div>{/block:TrackName}</div>
  1070. <div class="audioinfos">
  1071. {Block:Artist}<span class="infotitle">Artist</span><span class="audioinfo">{Artist}</span>{/Block:Artist}<br>
  1072. {Block:Album}<span class="infotitle">Album</span><span class="audioinfo">{Album}</span>{/Block:Album}<br>
  1073. {Block:PlayCount}<span class="infotitle">Play Count</span><span class="audioinfo">{FormattedPlayCount}</span>{/Block:PlayCount}
  1074. </div>
  1075. </div>
  1076. {block:PermalinkPage}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:PermalinkPage}{/block:IfOnlyRenderCaptionsOnPermalinkPage}{/block:Audio}
  1077.  
  1078.  
  1079. <!---QUOTE POSTS--->
  1080. {block:Quote}<div class="quote"><div class="text">{Quote}</div>{block:Source}<div class="source">{Source}</div>{/block:Source}</div>{/block:Quote}
  1081.  
  1082. <!---LINK POSTS-->
  1083. {block:Link}<h1><a href="{URL}" {Target}>{Name}</h1></a>{block:Description}{Description}{/block:Description}{/block:Link}
  1084.  
  1085.  
  1086. <!---ANSWER POSTS--->
  1087. {block:Answer}<div class="question">
  1088. <div class="portrait"><img src="{AskerPortraitURL-40}"></div>
  1089. <div class="asker">{Asker}</div><br>
  1090. <div class="da_q">{Question}</div></div>
  1091. <div class="answer">{Answer}</div>
  1092. {/block:Answer}
  1093.  
  1094.  
  1095. <!---CHAT POSTS--->
  1096. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}
  1097. {block:Lines}<div class="line">{block:Label}<b style="text-transform:uppercase;letter-spacing:2px;font-weight:lighter">{Label}</b> {/block:Label}{Line}</div>{/block:Lines}{/block:Chat}
  1098.  
  1099.  
  1100. <!---POST INFORMATION--->
  1101. {block:IndexPage}
  1102. <div class="other_info">
  1103. <a href="{Permalink}">{ShortMonth} {DayOfMonthWithZero}</a>
  1104. <a class="o_notes" href="{ReblogURL}">Reblog</a>
  1105. <a href="{Permalink}">{NoteCountWithLabel}</a>
  1106. </div>
  1107. {block:IfShowTagsOnIndexPage}{block:HasTags}<div id="tags">{block:Tags}<a href="{TagURL}" class="tag">#{Tag}</a> {/block:Tags}</div>{/block:HasTags}
  1108. {/block:IndexPage}{/block:IfShowTagsOnIndexPage}
  1109. {/block:IndexPage}</div>
  1110. <!---INFORMATION ON PERMALINK PAGES--->
  1111. {block:PermalinkPage}
  1112. <div class="permalink_page_information">
  1113. {block:Date}Posted on {Month} {DayOfMonthWithZero} at {12Hour}:{Minutes}{ampm}{/block:Date}
  1114. {block:PostNotes}With {NoteCountWithLabel}{/block:PostNotes}
  1115. <div class="permalink_source_via">
  1116. {block:ContentSource}
  1117. Source: <a href="{SourceURL}">{SourceName}</a>
  1118. {/block:ContentSource}
  1119. {block:RebloggedFrom}
  1120. Via: <a href="{ReblogParentURL}">{ReblogParentName}</a>
  1121. {/block:RebloggedFrom}
  1122. </div>
  1123. {block:HasTags}Filed: {block:Tags}<b>#</b><a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}
  1124. </div>
  1125. {block:PostNotes}<div id="notesbin"><div id="postnotes">{PostNotes-16}</div></div>{/block:PostNotes}{/block:PermalinkPage}
  1126. {/block:Posts}
  1127. </div><!--close post container-->
  1128.  
  1129.  
  1130. </div>
  1131. <div id="credit"><a href="http://ciralism.tumblr.com">Ciralism</a></div>
  1132.  
  1133. </body>
  1134.  
  1135. <div id="menu" class="popup_block">
  1136. <h1>{text:menu title}</h1>
  1137. <div class="inside">
  1138. <a href="{text:link3url}" class="aa">{text:link3}</a>
  1139. <a href="{text:link4url}" class="bb">{text:link4}</a>
  1140. <a href="{text:link5url}" class="cc">{text:link5}</a>
  1141. <a href="{text:link6url}" class="dd">{text:link6}</a>
  1142. <a href="{text:link7url}" class="cc">{text:link7}</a>
  1143. <a href="{text:link8url}" class="dd">{text:link8}</a>
  1144. </div>
  1145. </div>
  1146. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement