Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <!--
- REDUX REVAMP 2 BY CYBERSITY.TUMBLR.COM
- IF YOU ARE GOING TO REMOVE THE CREDIT BOX, PLEASE PUT CREDIT ELSEWHERE
- I DON'T MIND WHERE AS LONG AS IT'S SOMEWHERE THANK YOU
- -->
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- {block:ifRainbowLinks}
- <script type='text/javascript'>
- //<![CDATA[
- var rate = 20;
- if (document.getElementById)
- window.onerror=new Function("return true")
- var objActive; // The object which event occured in
- var act = 0; // Flag during the action
- var elmH = 0; // Hue
- var elmS = 128; // Saturation
- var elmV = 255; // Value
- var clrOrg; // A color before the change
- var TimerID; // Timer ID
- if (document.all) {
- document.onmouseover = doRainbowAnchor;
- document.onmouseout = stopRainbowAnchor;
- }
- else if (document.getElementById) {
- document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
- document.onmouseover = Mozilla_doRainbowAnchor;
- document.onmouseout = Mozilla_stopRainbowAnchor;
- }
- function doRainbow(obj)
- {
- if (act == 0) {
- act = 1;
- if (obj)
- objActive = obj;
- else
- objActive = event.srcElement;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- function stopRainbow()
- {
- if (act) {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- function doRainbowAnchor()
- {
- if (act == 0) {
- var obj = event.srcElement;
- while (obj.tagName != 'A' && obj.tagName != 'BODY') {
- obj = obj.parentElement;
- if (obj.tagName == 'A' || obj.tagName == 'BODY')
- break;
- }
- if (obj.tagName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function stopRainbowAnchor()
- {
- if (act) {
- if (objActive.tagName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function Mozilla_doRainbowAnchor(e)
- {
- if (act == 0) {
- obj = e.target;
- while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
- obj = obj.parentNode;
- if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
- break;
- }
- if (obj.nodeName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = obj.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function Mozilla_stopRainbowAnchor(e)
- {
- if (act) {
- if (objActive.nodeName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function ChangeColor()
- {
- objActive.style.color = makeColor();
- }
- function makeColor()
- {
- // Don't you think Color Gamut to look like Rainbow?
- // HSVtoRGB
- if (elmS == 0) {
- elmR = elmV; elmG = elmV; elmB = elmV;
- }
- else {
- t1 = elmV;
- t2 = (255 - elmS) * elmV / 255;
- t3 = elmH % 60;
- t3 = (t1 - t2) * t3 / 60;
- if (elmH < 60) {
- elmR = t1; elmB = t2; elmG = t2 + t3;
- }
- else if (elmH < 120) {
- elmG = t1; elmB = t2; elmR = t1 - t3;
- }
- else if (elmH < 180) {
- elmG = t1; elmR = t2; elmB = t2 + t3;
- }
- else if (elmH < 240) {
- elmB = t1; elmR = t2; elmG = t1 - t3;
- }
- else if (elmH < 300) {
- elmB = t1; elmG = t2; elmR = t2 + t3;
- }
- else if (elmH < 360) {
- elmR = t1; elmG = t2; elmB = t1 - t3;
- }
- else {
- elmR = 0; elmG = 0; elmB = 0;
- }
- }
- elmR = Math.floor(elmR).toString(16);
- elmG = Math.floor(elmG).toString(16);
- elmB = Math.floor(elmB).toString(16);
- if (elmR.length == 1) elmR = "0" + elmR;
- if (elmG.length == 1) elmG = "0" + elmG;
- if (elmB.length == 1) elmB = "0" + elmB;
- elmH = elmH + rate;
- if (elmH >= 360)
- elmH = 0;
- return '#' + elmR + elmG + elmB;
- }
- //]]>
- </script>
- {/block:ifrainbowlinks}
- <!-- DEFAULT VARIABLES -->
- <meta name="color:Background" content="#3b627e" />
- <meta name="font:Title" content="Arial" />
- <meta name="font:Body" content="Arial" />
- <meta name="font:Accent" content="Lucida Sans" />
- <meta name="if:Show Tags" content="1" />
- <meta name="if:Show Album Art on Audio Posts" content="1" />
- <meta name="if:Maximised Background Image" content="0"/>
- <meta name="if:Rounded Corners" content="0">
- <meta name="if:Rainbow Links" content=""/>
- <meta name="if:Show Links" content="" />
- <meta name="if:Show Captions" content="" />
- <meta name="if:Infinite Scrolling" content="" />
- <meta name="text:Disqus Shortname" content="" />
- <meta name="color:Sidebar" content="" />
- <meta name="color:Posts" content="" />
- <meta name="color:Links" content="" />
- <meta name="color:Footer" content="" />
- <meta name="color:Title" content="" />
- <meta name="color:Text" content="" />
- <meta name="image:Background" content="" />
- <meta name="image:Header" content="" />
- <meta name="image:Sidebar background" content="" />
- <meta name="image:Post background" content= "" />
- <meta name="image:Permalink" content="" />
- <meta name="image:Footer" content="" />
- <meta name="text:Link One Title" content="link" />
- <meta name="text:Link One" content="" />
- <meta name="text:Link Two Title" content="link" />
- <meta name="text:Link Two" content="" />
- <meta name="text:Link Three Title" content="link" />
- <meta name="text:Link Three" content="" />
- <meta name="text:Link Four Title" content="link" />
- <meta name="text:Link Four" content="" />
- <meta name="text:Link Five Title" content="link" />
- <meta name="text:Link Five" content="" />
- <meta name="text:Link Six Title" content="link" />
- <meta name="text:Link Six" content="" />
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>{Title}{block:SearchPage}, {lang:Search results for SearchQuery}{/block:SearchPage}{block:PostSummary}, {PostSummary}{/block:PostSummary}</title>
- {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
- <link rel="shortcut icon" href="{Favicon}" />
- <link rel="apple-touch-icon" href="{PortraitURL-128}"/>
- <link rel="alternate" type="application/rss+xml" href="{RSS}" />
- <style type="text/css">
- {block:IfMaximisedBackgroundImage}
- #bg img {
- z-index:-1;
- position:fixed;
- top:0;
- left:0;
- height:100%;
- width:100%;
- }
- {block:IfMaximisedBackgroundImage}
- a:link, a:visited, a:active {
- text-decoration: none;
- transition-duration: 0.50s;
- -moz-transition-duration: 0.50s;
- -webkit-transition-duration: 0.50s;
- -o-transition-duration: 0.50s;
- }
- body {
- background: {color:Background} url('{image:Background}') top left fixed repeat;
- margin: 0;
- padding: 0;
- font-family: '{font:body}';
- font-size: 11px;
- }
- #wrapper #content #navigation.jump_pagination {}
- #wrapper #content #navigation.jump_pagination a {color: #fff;
- background-color: rgba(255,255,255, 0.1);
- border: 2px solid #fff;
- padding: 3px 8px;
- margin: 0 0 0 4px;
- {block:IfRoundedCorners}
- -moz-border-radius: 10px; -webkit-border-radius: 10px;
- {/block:IfRoundedCorners}
- }
- #wrapper #content #navigation.jump_pagination .current_page {
- }
- #wrapper #content #navigation.jump_pagination .jump_page {}
- .clear {
- clear: both;
- height: 0px;
- overflow: hidden;
- }
- a img {
- border: none;
- }
- #wrapper {
- width: 845px;
- margin: 0 auto;
- }
- #wrapper #title {
- margin: 10px 10;
- color: {color:title};
- font-size: 50px;
- font-weight: ;
- font-family: '{font:title}';
- text-shadow: 1px 3px 5px rgba(0,0,0, 0.5);
- letter-spacing: -1px;
- }
- #wrapper #title a {
- color: #fff;
- text-decoration: none;
- }
- #wrapper #content {
- width: 540px;
- float: left;
- margin-left: 150px;
- }
- #wrapper #content .post {
- font-family: {font:Body};
- background: {color:posts};
- background-image:url('{image:post background}');
- padding: 15px;
- position: relative;
- border: 5px outset;
- border-colour; #ff33CC;
- {block:IfRoundedCorners}
- -moz-border-radius: 10px; -webkit-border-radius: 10px;
- {/block:IfRoundedCorners}
- }
- #wrapper #content .post .media {
- text-align: center;
- margin-bottom: 10px;
- }
- #wrapper #content .post .quotebg {
- font-family: georgia, serif;
- font-size: 150px;
- color: #fff;
- opacity: 0.2;
- filter: alpha(opacity=20);
- -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
- position: absolute;
- top: 70px;
- left: 10px;
- }
- #wrapper #content .post .quote {
- color: {color:text};
- font-weight: bold;
- padding: 20px 20px 5px 20px;
- }
- #wrapper #content .post .quote.short {
- font-size: 18px;
- line-height: 22px;
- }
- #wrapper #content .post .quote.medium {
- font-size: 18px;
- line-height: 22px;
- }
- #wrapper #content .post .quote.long {
- font-size: 18px;
- line-height: 22px;
- }
- #wrapper #content .post .quote_source *:first-child {
- margin-top: 0px;
- }
- #wrapper #content .post .quote_source *:last-child {
- margin-bottom: 0px;
- }
- #wrapper #content .post .quote *:first-child {
- margin-top: 0px;
- }
- #wrapper #content .post .quote *:last-child {
- margin-bottom: 0px;
- }
- #wrapper #content .post .copy {
- color: {color:text};
- padding: 10px;
- font-size: 13px;
- line-height: 15px;
- }
- #wrapper #content .post .copy a {
- color: {Color:Links};
- text-decoration: none;
- }
- #wrapper #content .post .copy p {
- margin: 10px 0 0 0;
- padding: 0;
- }
- #wrapper #content .post .copy pre {
- margin: 10px 0px 10px 0px;
- padding: 10px;
- background-color: #e6e6e6;
- font: normal 11px Courier, monospace;
- overflow: auto;
- }
- #wrapper #content .post .copy > p:first-child {
- margin-top: 0;
- }
- #wrapper #content .post .copy img {
- max-width: 100%;
- }
- #wrapper #content .post .question {
- color: #494949;
- font-size: 16px;
- font-weight: bold;
- background: #cbcbf1;
- -moz-border-radius: 8px;
- -webkit-border-radius: 8px;
- border-radius: 8px;
- margin: 0 0 15px 0;
- padding: 15px 20px;
- position: relative;
- }
- #wrapper #content .post .question .nipple {
- width: 13px;
- height: 7px;
- background: url('http://i724.photobucket.com/albums/ww250/Miaaxxx/REDUXARROW.png');
- position: absolute;
- bottom: -7px;
- left: 30px;
- }
- #wrapper #content .post .asker_container {
- margin: 0 0 20px 24px;
- }
- #wrapper #content .post .asker_container img {
- margin: 0 12px -7px 0;
- }
- #wrapper #content .post .asker_container a.asker {
- color: {color:Body};
- }
- #wrapper #content .post .title {
- color: {color:title};
- font-size: 16px;
- font-weight: bold;
- padding: 10px 10px 0 10px;
- }
- #wrapper #content .post .title a {
- color: {color:links};
- font-size: 16px;
- text-decoration: none;
- padding: 10px 10px 0 10px;
- }
- #wrapper #content .post img {
- max-width: 500px;
- }
- #wrapper #content .post .chat {
- background-color: #;
- border-left: 1px solid #fff;
- margin: 10px 10px 0 10px;
- font-size: 12px;
- }
- #wrapper #content .post .chat .lines {
- margin-left: 1px;
- }
- #wrapper #content .post .chat .lines .line {
- background-color: #fff;
- color: #000;
- margin-bottom: 1px;
- padding: 3px 5px;
- }
- #wrapper #content .post .chat .lines .line.even {
- background-color: #fff;
- }
- #wrapper #content .post .link {
- margin: 4px 0 2px 0;
- font-size: 16px;
- line-height: 25px;
- }
- #wrapper #content .post .link a {
- background-color: {color:background};
- color: #fff;
- padding: 5px 7px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
- }
- #wrapper #content .post .link a:hover {
- opacity: 0.9;
- filter: alpha(opacity=90);
- -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
- }
- #wrapper #content .post .footer{
- background-image: url('{image:footer}');
- background-color: {color:footer};
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
- font-family: '{font:accent}';
- font-size: 12px;
- color: #FFF;
- padding: 3px 10px;
- margin-top: 10px;
- }
- #wrapper #content .post .footer.for_permalink:hover {
- opacity: 0.9;
- filter: alpha(opacity=90);
- -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
- }
- #wrapper #content .post .footer .date {
- width: 67%;
- float: left;
- color: {Color:Links};
- }
- #wrapper #content .post .footer .notes {
- width: 33%;
- float: right;
- text-align: right;
- color: {Color:Links};
- }
- #wrapper #content .post .footer .notes a {
- color: #000;
- }
- #wrapper #content .post .footer .tags a {
- color: {Color:Links};
- text-decoration: underline;
- }
- #wrapper #content .post .footer .tags .tag-commas:last-child {
- display: none;
- }
- #wrapper #content .post a {
- color: {color:text};
- text-decoration: none;
- }
- #wrapper #content .post .copy blockquote {
- margin: 10px 0px 10px 10px;
- padding-left: 15px;
- border-left: solid 4px #dcdcdc;
- }
- #wrapper #content .post .copy blockquote blockquote {
- border-left: solid 4px #cccccc;
- }
- #wrapper #content .post .copy blockquote blockquote blockquote {
- border-left: solid 4px #bcbcbc;
- }
- #wrapper #content .post .copy blockquote blockquote blockquote blockquote {
- border-left: solid 4px #acacac;
- }
- #wrapper #content .post .copy blockquote blockquote blockquote blockquote blockquote {
- border-left: solid 4px #9c9c9c;
- }
- #wrapper #content .post .copy blockquote blockquote blockquote blockquote blockquote blockquote {
- border-left: solid 4px #8c8c8c;
- }
- #wrapper #content .bottom {
- background: url('http://assets.tumblr.com/themes/redux/shadow-post.png') top center no-repeat transparent;
- width: 513px;
- height: 40px;
- margin: 0 auto;
- }
- @font-face { font-family: "silkscreen"; src: url('http://static.tumblr.com/1kdckk4/9yjlolf0w/slkscr.ttf'); }
- #wrapper #content #navigation {
- text-align: right;
- padding-bottom: 35px;
- text-transform: lowercase;
- }
- #wrapper #content #navigation a {
- background-color: #fff;
- color: {color:Background};
- font-weight: normal;
- padding: 5px 10px;
- text-decoration: none;
- margin-left: 25px;
- }
- #wrapper #content #navigation a:hover {
- opacity: 0.9;
- filter: alpha(opacity=90);
- -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
- }
- #wrapper #content
- .notecontainer {
- background: #fff;
- text-align: left;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
- font-family: {font:Body};
- font-size: 10px;
- overflow: hidden;
- color: {color:text};
- margin-top: 10px;
- margin-bottom: -10px;
- }
- #wrapper #content .post .notecontainer a {
- color: {Color:Links};
- text-decoration: none;
- }
- #wrapper #content .post .notecontainer ol.notes {
- padding: 0px 0 10px 0;
- list-style-type: none;
- font-size: 11px;
- }
- #wrapper #content .post .notecontainer ol.notes li.note {
- padding: 10px 10px 0 10px;
- }
- #wrapper #content .post .notecontainer ol.notes li.note img.avatar {
- vertical-align: -4px;
- margin-right: 10px;
- width: 16px;
- height: 16px;
- }
- #wrapper #content .post .notecontainer ol.notes li.note span.action {
- font-weight: normal;
- }
- #wrapper #content .post .notecontainer ol.notes li.note .answer_content {
- font-weight: normal;
- }
- #wrapper #content .post .notecontainer ol.notes li.note blockquote {
- border-left: 2px solid #666;
- padding: 4px 10px;
- margin: 10px 0px 0px 25px;
- }
- #wrapper #content .post .notecontainer ol.notes li.note blockquote a {
- text-decoration: none;
- }
- #wrapper #content #searchresults {
- color: #fff;
- margin: 0 0 15px 0;
- text-shadow: 1px 3px 5px rgba(0,0,0, 0.5);
- font-family: {font:Body};
- font-size: 20px;
- }
- #wrapper #content #searchresults .search_query {
- font-weight: bold;
- }
- #wrapper #content #searchresults .search_query:before {
- content:'“';
- }
- #wrapper #content #searchresults .search_query:after {
- content:'”';
- }
- #sidebar{
- position:relative !important;
- width: 510px;
- color: #000;
- margin-top: 4px;
- margin-left: 150px;
- padding: 10px;
- font-family: {font:body};
- border: 5px outset;
- border-colour; #ff33CC;
- background-color: {color:sidebar};
- background-image:url({image:sidebar background});
- {block:IfRoundedCorners}
- -moz-border-radius: 10px; -webkit-border-radius: 10px;
- {/block:IfRoundedCorners}
- }
- #wrapper #sidebar h1 a {
- color: #000;
- font-weight: bold;
- text-decoration: none;
- font-size: 16px;
- text-align: center;
- }
- #wrapper #sidebar a {
- color: {Color:Links};
- }
- #wrapper #sidebar #top {
- background: #fff;
- padding: 0 20px;
- }
- #wrapper #sidebar #top #avatar {
- width: 146px;
- height: 146px;
- padding: 8px 0 0 9px;
- position: relative;
- top: -24px;
- left: -5px;
- }
- #wrapper #sidebar #top #pages {
- margin-bottom: 15px;
- font-size: 12px;
- }
- #wrapper #sidebar #top #pages.ask_and_submit {
- display: none;
- {block:AskEnabled}display: block;{/block:AskEnabled}
- {block:SubmissionsEnabled}display: block;{/block:SubmissionsEnabled}
- }
- #wrapper #sidebar #top #pages a.page {
- display: block;
- float: left;
- background-color: #eaeaea;
- color: #fff;
- padding: 4px 5px;
- margin: 0 5px 5px 0;
- }
- #wrapper #sidebar #top #pages a.page:last-child {
- margin-right: 0;
- }
- #wrapper #sidebar #top #pages a.page:hover {
- opacity: 0.9;
- filter: alpha(opacity=90);
- -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
- }
- #wrapper #sidebar #top #description {
- font-size: 11px;
- position: relative;
- top: -18px;
- }
- #wrapper #sidebar #top #description a {
- color: {color:Background};
- text-decoration: none;
- }
- #wrapper #sidebar #top #search {
- background: #fff;
- border: 1px solid #eaeaea;
- }
- #wrapper #sidebar #top #search-scope {
- padding-top: 5px;
- font-size: 11px;
- text-align: center;
- }
- #wrapper #sidebar #top #search-scope input,
- #wrapper #sidebar #top #search-scope label {
- }
- #wrapper #sidebar #top #search form {
- margin: 0;
- }
- #wrapper #sidebar #top #search form .query {
- padding: 5px;
- border: none;
- background: transparent;
- outline: none;
- width: 125px;
- float: left;
- color: #eaeaea;
- }
- #wrapper #sidebar #top #search form .submit {
- background: #eaeaea;
- color: #fff;
- border: none;
- padding: 5px 7px;
- margin: 3px 3px 2px 0;
- float: right;
- }
- #wrapper #sidebar #top #search form .submit:hover {
- opacity: 0.9;
- filter: alpha(opacity=90);
- -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
- }
- #wrapper #sidebar #top .heading {
- color: #fff;
- font-family: {font:Body};
- font-size: 12px;
- margin-top: 20px;
- padding: 10px;
- background-color: #eaeaea;
- -webkit-border-top-left-radius: 4px;
- -webkit-border-top-right-radius: 4px;
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
- }
- #wrapper #sidebar #top a .heading {
- color: #fff;
- text-decoration: none;
- }
- #wrapper #sidebar #top .heading#followontumblr {
- background: url('http://assets.tumblr.com/themes/redux/sidebar-follow-on-en_US.png') center left no-repeat #eaeaea;
- text-indent: -9999px;
- {block:German}
- background-image: url('http://assets.tumblr.com/themes/redux/sidebar-follow-on-de_DE.png');
- {/block:German}
- {block:Japanese}
- background-image: url('http://assets.tumblr.com/themes/redux/sidebar-follow-on-ja_JP.png');
- {/block:Japanese}
- {block:Italian}
- background-image: url('http://assets.tumblr.com/themes/redux/sidebar-follow-on-it_IT.png');
- {/block:Italian}
- {block:French}
- background-image: url('http://assets.tumblr.com/themes/redux/sidebar-follow-on-fr_FR.png');
- {/block:French}
- }
- #wrapper #sidebar #top .heading#followontumblr:hover,
- #wrapper #sidebar #top .heading#twitter:hover {
- opacity: 0.9;
- filter: alpha(opacity=90);
- -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
- }
- #wrapper #sidebar #top .heading#twitter {
- background: url('http://assets.tumblr.com/themes/redux/sidebar-twitter.png') right center no-repeat #eaeaea;
- }
- #wrapper #sidebar #top .heading#following {
- background: url('http://assets.tumblr.com/themes/redux/sidebar-following.png') right center no-repeat #eaeaea;
- }
- #wrapper #sidebar #top .content {
- margin-top: 2px;
- padding: 7px 10px;
- background: #eaeaea;
- color: #b1b1b1;
- font-size: 11px;
- overflow: hidden;
- }
- #wrapper #sidebar #top a {
- text-decoration: none;
- }
- #wrapper #sidebar #top #following-avatars.content {
- padding: 4px;
- }
- #wrapper #sidebar #top #following-avatars.content a img {
- margin: 5px;
- }
- #wrapper #sidebar #top #buttons {
- padding: 20px 0 0 0;
- }
- #wrapper #sidebar #top #buttons .button {
- width: 35%;
- height: 21px;
- float: left;
- background: left center no-repeat transparent;
- padding: 2px 0 0 30px;
- font-size: 14px;
- }
- #wrapper #sidebar #top #buttons a {
- color: #eaeaea;
- text-decoration: none;
- }
- #wrapper #sidebar #top #buttons div {
- padding-bottom: 10px;
- }
- #wrapper #sidebar #top #buttons .button#button-rss {
- background-image: url('http://assets.tumblr.com/themes/redux/button-rss.png?2');
- text-transform: capitalize;
- }
- #wrapper #sidebar #top #buttons .button#button-random {
- background-image: url('http://assets.tumblr.com/themes/redux/button-random.png?2');
- }
- #wrapper #sidebar #top #buttons .button#button-archive {
- background-image: url('http://assets.tumblr.com/themes/redux/button-archive.png?2');
- }
- #wrapper #sidebar #top #buttons .button#button-mobile {
- background-image: url('http://assets.tumblr.com/themes/redux/button-mobile.png?2');
- }
- #wrapper #sidebar #bottom {
- width: 250px;
- height: 25px;
- }
- #wrapper #sidebar #copyright {
- text-align: center;
- color: #fff;
- font-size: 12px;
- margin-bottom: 10px;
- }
- #wrapper #sidebar #copyright a {
- color: #fff;
- margin-left: 15px;
- }
- #by {
- width: 100px;
- padding: 2px;
- line-height: 15px;
- bottom: 2px;
- background: white;
- position: fixed;
- opacity: .9;
- right: 2px;
- font-size: 7px;
- letter-spacing: 1px;
- font-family: {font:body};
- }
- </style>
- <!--[if lt IE 7.]>
- <style type="text/css">
- #wrapper #sidebar #bottom {
- background: transparent;
- }
- #wrapper #sidebar #top #avatar {
- background: none;
- }
- #wrapper #sidebar #top #avatar img {
- border: 5px solid #f1f1f1;
- }
- #wrapper #sidebar #top .heading#followontumblr {
- background-image: none;
- text-indent: 0;
- }
- #wrapper #sidebar #top .heading#twitter {
- background-image: none;
- }
- #wrapper #sidebar #top .heading#following {
- background-image: none;
- }
- #wrapper #content .audio .player {
- float: none;
- }
- #wrapper #content .post .audio .meta {
- display: none;
- float: none;
- }
- </style>
- <![endif]-->
- <!--[if lt IE 8.]>
- <style type="text/css">
- #wrapper #content .bottom {
- background: transparent;
- }
- #wrapper #content .post .footer {
- background: transparent;
- color: #000;
- }
- #wrapper #content .post .audio {
- float: none;
- background: transparent;
- }
- #wrapper #content .post .notecontainer .notes {
- padding: 0;
- margin: 0;
- }
- </style>
- <![endif]-->
- <style type="text/css">
- #top-link{ display:none; position:fixed; right:40px; bottom:40px;color: #fff;font-family: {font:Body};text-decoration:none;font-weight: bold;background:none;font-size:18px;}
- </style>
- {block:IfInfiniteScrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
- <script type="text/javascript" src="http://davidwalsh.name/dw-content/jquery-1.3.2.js"></script>
- <script type="text/javascript" src="http://davidwalsh.name/dw-content/jquery.scrollTo-1.4.0-min.js"></script>
- <script type="text/javascript">
- jQuery.fn.topLink = function(settings) {
- settings = jQuery.extend({
- min: 1,
- fadeSpeed: 200,
- ieOffset: 50
- }, settings);
- return this.each(function() {
- //listen for scroll
- var el = $(this);
- el.css('display','none'); //in case the user forgot
- $(window).scroll(function() {
- if(!jQuery.support.hrefNormalized) {
- el.css({
- 'position': 'absolute',
- 'top': $(window).scrollTop() + $(window).height() - settings.ieOffset
- });
- }
- if($(window).scrollTop() >= settings.min)
- {
- el.fadeIn(settings.fadeSpeed);
- }
- else
- {
- el.fadeOut(settings.fadeSpeed);
- }
- });
- });
- };
- $(document).ready(function() {
- $('#top-link').topLink({
- min: 400,
- fadeSpeed: 500
- });
- //smoothscroll
- $('#top-link').click(function(e) {
- e.preventDefault();
- $.scrollTo(0,300);
- });
- });
- </script>{/block:IfInfiniteScrolling}
- </head>
- <body>
- {block:IfMaximisedBackgroundImage}<div id="bg"><img src="{image:Background}"></div>{/block:IfMaximisedBackgroundImage}
- {block:IndexPage}
- </div>
- {/block:IndexPage}
- <div id="wrapper">
- <div id="sidebar">
- <div id="title">
- <a href="/">
- {block:IfHeaderImage}<center><img src="{image:Header}" /></center>{/block:IfHeaderImage}
- {block:IfNotHeaderImage}<center><FONT FACE="silkscreen"><font color="{color:title}">{title}</font></font></center>{/block:IfNotHeaderImage}</a></div>
- <font size="2"><font color=black><body link="#000000" vlink="#000000" alink="#000000"><FONT FACE="ARIAL"><center>{Description}</font></font><br> {block:IfShowLinks} <a href="{text:Link One}">{text:Link One Title}</a>
- {/block:ifLinkOneTitle} /
- {block:ifLinkTwoTitle}
- <a href="{text:Link Two}">{text:Link Two Title}</a>
- {/block:ifLinkTwoTitle} /
- {block:ifLinkThreeTitle}
- <a href="{text:Link Three}">{text:Link Three Title}</a>
- {/block:ifLinkThreeTitle} /
- {block:ifLinkFourTitle}
- <a href="{text:Link Four}">{text:Link Four Title}</a>
- {/block:ifLinkFourTitle} /
- {block:ifLinkFiveTitle}
- <a href="{text:Link Five}">{text:Link Five Title}</a>
- {/block:ifLinkFiveTitle} /
- {block:ifLinkSixTitle}
- <a href="{text:Link Six}">{text:Link Six Title}</a>
- {/block:ifLinkSixTitle} </center>{/block:IfShowLinks}
- </div>
- <br><br><br>
- <div id="content">
- {block:SearchPage}
- {block:SearchResults}
- <div id="searchresults">{lang:SearchResultCount results for SearchQuery 2}</div>
- {/block:SearchResults}
- {block:NoSearchResults}
- <div id="searchresults">{lang:No search results for SearchQuery 2}</div>
- {/block:NoSearchResults}
- {/block:SearchPage}
- <div class="autopagerize_page_element">
- {block:posts}
- <div class="post">
- {block:Photo}
- <div class="media">{LinkOpenTag}<a href="{permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}" /></a>{LinkCloseTag}</div>{block:IfShowCaptions}{Caption}{/block:IfShowCaptions}
- {block:PermalinkPage}{block:Caption}<div class="copy">{block:IfNotShowCaptions}{Caption}{/block:IfNotShowCaptions}</div>{/block:Caption}{TimeAgo}{/block:PermalinkPage}
- {/block:Photo}
- {block:Photoset}<div class="photoset">
- {Photoset-500}{block:IfShowCaptions}{Caption}{/block:IfShowCaptions}
- {block:PermalinkPage}{block:Caption}<div class="copy">{block:IfNotShowCaptions}{Caption}{/block:IfNotShowCaptions}</div>{/block:Caption}{TimeAgo}{/block:PermalinkPage}
- </div>{/block:Photoset}
- {block:Video}
- <div class="media">{Video-500}</div>
- {block:IfShowCaptions}{Caption}{/block:IfShowCaptions}
- {block:PermalinkPage}{block:Caption}<div class="copy">{block:IfNotShowCaptions}{Caption}{/block:IfNotShowCaptions}</div>{/block:Caption}{TimeAgo}{/block:PermalinkPage}
- {/block:Video}
- {block:Audio}
- {AudioPlayerBlack}
- {block:Caption}<div class="copy">{Caption}</div>{/block:Caption}{block:PermalinkPage}<br>{TimeAgo}{/block:PermalinkPage}
- {/block:Audio}
- {block:Quote}
- <div class="quote {Length}">{Quote}</div>
- <div class="copy">
- <div class="quotebg">“</div>
- {block:Source}
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td valign="top" style="width:20px;">—</td>
- <td valign="top" class="quote_source">
- {Source}
- </td>
- </tr>
- </table>
- {/block:Source}
- </div>{block:PermalinkPage}<br>{TimeAgo}{/block:PermalinkPage}
- {/block:Quote}
- {block:Text}
- {block:Title}<div class="title">{Title}</div>{/block:Title}
- <div class="copy">{Body}</div>{block:PermalinkPage}<br>{TimeAgo}{/block:PermalinkPage}
- {/block:Text}
- {block:Answer}
- <div class="question">
- <div class="nipple"></div>
- {Question}
- </div>
- <div class="asker_container"><img src="{AskerPortraitURL-24}">{Asker}</div>
- <div class="copy">{Answer}</div>{block:PermalinkPage}<br>{TimeAgo}{/block:PermalinkPage}
- {/block:Answer}
- {block:Chat}
- {block:Title}<div class="title">{Title}</div>{/block:Title}
- <div class="chat">
- <div class="lines">
- {block:Lines}
- <div class="line {Alt}">{block:Label}<strong>{Label}</strong>{/block:Label} {Line}</div>
- {/block:Lines}
- </div>
- </div>
- <div class="clear"></div>
- <div style="height:10px;"></div>{block:PermalinkPage}<Br>{TimeAgo}{/block:PermalinkPage}
- {/block:Chat}
- {block:Link}
- <div class="title"><a href="{URL}" {Target}>{Name} »</a></div>
- {block:Description}<div class="copy">{Description}</div>{/block:Description}{block:PermalinkPage}<br>{TimeAgo}{/block:PermalinkPage}
- {/block:Link}
- {block:Date}
- <a href="{Permalink}">
- <div class="footer for_permalink">
- <div class="date">
- {block:Reblog}
- {/block:Reblog}
- {block:NotReblog}
- {/block:NotReblog}
- </div>
- <div class="notes"><font face="arial">{NoteCount}</font> <img src="{image:permalink}"></div>
- <div class="clear"></div>
- </div>
- </a>
- {/block:Date}
- <div class="footer" style="
- display:none;
- {block:IfShowTags}{block:HasTags}display:block;{/block:HasTags}{/block:IfShowTags}
- ">
- {block:IfShowTags}
- {block:HasTags}<div class="tags"><font color="000">{lang:Tagged}:</font> {block:Tags}<a href="{TagURL}">{Tag}</a><span class="tag-commas">, </span>{/block:Tags}.</div>{/block:HasTags}
- {/block:IfShowTags}
- {block:ContentSource}
- <a href="{SourceURL}" class="source_url">
- {lang:Source}:
- {block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
- {block:NoSourceLogo}{SourceTitle}{/block:NoSourceLogo}
- </a>
- {/block:ContentSource}
- <div class="clear"></div>
- </div>
- {block:PostNotes}<div class="notecontainer">{PostNotes}</div>{/block:PostNotes}
- </div>
- <div class="bottom"></div>
- {/block:Posts}
- </div>
- {block:IfNotInfiniteScrolling}
- {block:Pagination}
- <div id="navigation" {block:IfEnableJumpPagination}class="jump_pagination"{/block:IfEnableJumpPagination}>
- {block:PreviousPage}<a href="{PreviousPage}">← {lang:Previous}</a>{/block:PreviousPage}
- {block:IfEnableJumpPagination}
- {block:JumpPagination length="5"}
- {block:CurrentPage}
- <span class="current_page">{PageNumber}</span>
- {/block:CurrentPage}
- {block:JumpPage}
- <a class="jump_page" href="{URL}">{PageNumber}</a>
- {/block:JumpPage}
- {/block:JumpPagination}
- {/block:IfEnableJumpPagination}
- {block:NextPage}<a href="{NextPage}">{lang:Next page} →</a>{/block:NextPage}
- </div>
- {/block:Pagination}
- {/block:IfNotInfiniteScrolling}
- </div>
- {block:Twitter}
- <script type="text/javascript" src="/tweets.js"></script>
- {/block:Twitter}
- {block:IfDisqusShortname}
- <script type="text/javascript">
- //<![CDATA[
- (function() {
- var links = document.getElementsByTagName('a');
- var query = '?';
- for(var i = 0; i < links.length; i++) {
- if(links[i].href.indexOf('#disqus_thread') >= 0) {
- query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
- }
- }
- document.write('<script charset="utf-8" type="text/javascript" src="http://disqus.com/forums/{text:Disqus Shortname}/get_num_replies.js' + query + '"></' + 'script>');
- })();
- //]]>
- </script>
- {/block:IfDisqusShortname}
- </body>
- <div id="by">
- <center>THEME BY <a href="http://CYBERSITY.tumblr.com">CYBERSITY</a></center></div>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment