-
-
Ansavehhhhhhhh?! =))
-
Eyes. ;)
-
for me? a shirt will do. :>
-
rice. :3
-
Here's the code and this is my tumblr url. http://supaargerfraan.tumblr.com Ohmygee. Thank ya. :>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script type='text/javascript'>
<!--
// JavaScript code to produce strobing rainbow-colored links
// on mouseovers. Coded by Timothy Boronczyk, © 2003.
// declare list of colors as a global array (goldenrod used
// because yellow was too difficult to against lighter
// backgrounds)
var colors = Array('red', 'orange', 'goldenrod', 'green',
'blue', 'purple');
// declare color pointer (current color in array by position)
var p_color = 0;
function strobe(x)
{
// set pointer to next color (reset pointer to beginning
// if current position is at the end of the list)
p_color = (p_color == 5) ? 0 : p_color + 1;
// set link color
document.links[x].style.color = colors[p_color];
return true; // no errors
}
function rainbow(link, toggle)
{
// determine which link called this function by matching
// the current key of the DOM's link array
for (id = 0; link != document.links[id]; id++);
if (toggle)
{
// identify setInterval function by name cycle and
// repeatedly call change_color passing current link
// array key
cycle = setInterval('strobe(id)', 100);
}
else
{
// terminate cycle calls
clearInterval(cycle);
// reset link color (assuming that green was original
// color)
link.style.color = 'green'
}
return true; // no errors
}
//-->
</script>
<META HTTP-EQUIV="imagetoolbar" CONTENT="no">
<SCRIPT TYPE="text/javascript"><!--//Disable right click script//visit http://www.rainbow.arch.scriptmania.com/scripts/var message="Sorry, right-click has been disabled";///////////////////////////////////function clickIE() {if (document.all) {(message);return false;}}function clickNS(e) {if(document.layers||(document.getElementById&&!document.all)) {if (e.which==2||e.which==3) {(message);return false;}}}if (document.layers){document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}document.oncontextmenu=new Function("return false")// --></SCRIPT>
<SCRIPT TYPE="text/javascript">
<!--
//Disable select-text script (IE4+, NS6+)
//visit http://www.rainbow.arch.scriptmania.com/scripts/
///////////////////////////////////
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
// -->
</SCRIPT>
<script type="text/javascript">
// <![CDATA[
var colour="#FF00CC";
var sparkles=70;
var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
var i, rats, rlef, rdow;
for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top="2px";
rlef.style.left="0px";
rdow.style.top="0px";
rdow.style.left="2px";
document.body.appendChild(star[i]=rats);
}
set_width();
sparkle();
}}
function sparkle() {
var c;
if (x!=ox || y!=oy) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
star[c].style.left=(starx[c]=x)+"px";
star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}
}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {
tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</script>
</script>
<!-- Theme Controls -->
<meta name="image:Background" content="" />
<meta name="color:Link" content="#85FF00" />
<meta name="color:Post Icon Hover" content="#FF0000" />
<meta name="color:Twitter Link" content="#19BEFF" />
<meta name="color:Pagination" content="#19BEFF" />
<meta name="color:Post Title Link" content="#19BEFF" />
<meta name="color:Note Links" content="#19BEFF" />
<meta name="color:Footer Link" content="#FF0000" />
<meta name="color:Header Link Hover" content="#FF0000" />
<meta name="color:Streampad Background" content="#000000" />
<meta name="color:Vimeo Video Player" content="#85FF00" />
<meta name="color:Youtube Video Player" content="#FFFFFF" />
<meta name="if:Centered Layout" content="0" />
<meta name="if:Three Column Layout" content="0" />
<meta name="if:Show Icon" content="1" />
<meta name="if:Enable Streampad" content="0" />
<meta name="if:Show Archive Link" content="1" />
<meta name="if:Show Random Link" content="1" />
<meta name="if:Show Feed Link" content="1" />
<meta name="text:Custom Link 1 URL" content="" />
<meta name="text:Custom Link 1 Title" content="" />
<meta name="text:Custom Link 2 URL" content="" />
<meta name="text:Custom Link 2 Title" content="" />
<meta name="text:Custom Link 3 URL" content="" />
<meta name="text:Custom Link 3 Title" content="" />
<meta name="text:Custom Link 4 URL" content="" />
<meta name="text:Custom Link 4 Title" content="" />
<meta name="text:Google Analytics ID" content="" />
<meta name="text:Disqus Shortname" content="" />
<!-- Meta -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
<!-- Title, Favicon, and RSS -->
<title>{Title} {block:SearchPage} — Search results for: {SearchQuery}{/block:SearchPage}{block:PostSummary} — {PostSummary}{/block:PostSummary}</title>
<link rel="shortcut icon" href="{Favicon}" />
<link rel="apple-touch-icon" href="{PortraitURL-128}"/>
<link rel="alternate" type="application/rss+xml" href="{RSS}" />
<!-- Stylesheets -->
<link rel="stylesheet" href="http://static.tumblr.com/3driglx/7Pcl2tjgx/reset.css" type="text/css">
<style type="text/css">
html, body {
background: #000 url("{block:ifNotBackgroundImage}http://i624.photobucket.com/albums/tt326/diorga/print.gif{/block:ifNotBackgroundImage}{block:ifBackgroundImage}{image:Background}{/block:ifBackgroundImage}") fixed;
color: #fff;
font: normal 11px/14px Helvetica, Arial, Sans-Serif;
height: 100%;
-webkit-text-stroke: 1px transparent;
word-wrap: break-word;
}
#container {
{block:ifBackgroundImage}height: auto!important;
height: 100%;{/block:ifBackgroundImage}
margin: 0 0 0 104px;
{block:ifBackgroundImage}min-height: 100%;{/block:ifBackgroundImage}
{block:ifCenteredLayout}margin: 0 auto!important;{/block:ifCenteredLayout}
padding: 11px 0 18px 32px;
width: 575px;
{block:ifThreeColumnLayout}width: 861px!important;{/block:ifThreeColumnLayout}
}
#header, #searchtagpage, .posts .body, .posts .body2, ol.notes li, #footer, #twitterfeed, input.srch, #pagination a {background: #111 url("http://static.tumblr.com/3driglx/vsvl2tjhi/themocrityblackbackground.png") fixed;}
/* ___________________________________________________________ Themocrity Sprite */
.posts .text, .posts .foto, .posts .quote, .posts .link, .posts .chat, .posts .audio, .posts .video, .posts .answer, .posts .body2 ul li.time, .posts .body2 ul li.tags, .posts .body2 ul li.notes, .posts .body2 ul li.download, .posts .body2 ul li.reblog, .posts .body ul.music li, .posts .body ul.music li a, #twitterbird, #next, #previous {background: url("http://static.tumblr.com/3driglx/9hsl6eo9f/themocritysprite.png") no-repeat;}
/* ___________________________________________________________ Header Styling */
#header {
margin: 0 0 11px 0;
padding: 10px;
width: 523px;
{block:ifThreeColumnLayout}width: 810px!important;{/block:ifThreeColumnLayout}
}
#header h1 {
font: normal 33px/30px Helvetica, Arial Narrow, Sans-Serif;
{block:ifThreeColumnLayout}font: normal 45px/45px Helvetica, Arial Narrow, Sans-Serif!important;
margin-bottom: -3px;{/block:ifThreeColumnLayout}
}
#header h1 a {color: #fff;}
#header h1 a:hover {color:{color:Link}!important;}
#header h1 img {
width: 25px;
{block:ifThreeColumnLayout}width: 34px!important;{/block:ifThreeColumnLayout}
}
#header #bigicon {
margin-left: -135px;
margin-top: -10px;
position: absolute;
}
#header #bigicon img {width: 114px;}
#header ul {
border-top: 1px solid #161616;
list-style: none;
margin-bottom: -10px;
margin-left: 0;
margin-right: 0;
margin-top: 10px;
}
#header ul li {
border-right: 1px solid #161616;
float: left;
padding: 8px 0 8px 0;
}
#header ul li a {
color: #fff;
padding: 8px 10px 8px 10px;
}
#header ul li a:hover {color: {color:Header Link Hover}!important;}
/* ___________________________________________________________ Search & Tag Page Styling */
#searchtagpage {
font: normal 30px/30px Georgia, Serif;
margin: 0 0 11px 0;
padding: 10px 10px 6px 10px;
width: 523px;
{block:ifThreeColumnLayout}width: 810px!important;{/block:ifThreeColumnLayout}
text-transform: uppercase;
}
#searchtagpage span {color: {color:Post Icon Hover};}
/* ___________________________________________________________ Twitter Styling */
#twitter {
{block:TagPage}display: none!important;{/block:TagPage}
{block:SearchPage}display: none!important;{/block:SearchPage}
margin: 0 0 11px 0;
width: 543px;
{block:ifThreeColumnLayout}width: 830px!important;{/block:ifThreeColumnLayout}
}
#twitter a {color: {color:Twitter Link};}
#twitterfeed {
float: right;
padding: 8px 10px 10px 10px;
width: 475px;
{block:ifThreeColumnLayout}width: 762px!important;{/block:ifThreeColumnLayout}
}
#twitterfeed ul {
list-style: none;
margin: 0;
}
a#twitterbird {
background-position: -275px -129px;
display: block;
float: left;
height: 30px;
width: 43px;
}
/* ___________________________________________________________ Posts Styling */
{block:PermalinkPage}#content {padding: 0 0 10px 0;}{/block:PermalinkPage}
.posts {
margin-bottom: -5px;
{block:IndexPage}float: left;
margin: 0 31px 11px 0!important;
width: 256px!important;{/block:IndexPage}
{block:PermalinkPage}margin: 0 0 1px 0;{/block:PermalinkPage}
{block:PermalinkPage}{block:Posts}{block:Date}margin: 0 0 6px 0!important;{/block:Date}{/block:Posts}{/block:PermalinkPage}
width: 543px;
{block:ifThreeColumnLayout}{block:PermalinkPage}width: 830px!important;{/block:PermalinkPage}{/block:ifThreeColumnLayout}
}
.posts .text, .posts .foto, .posts .quote, .posts .link, .posts .chat, .posts .audio, .posts .video, .posts .answer {
background-color: #fff;
display: block;
height: 29px;
margin-left: -22px;
margin-top: 1px;
position: absolute;
width: 29px;
}
.posts .text {background-position: 0 0;}
.posts .foto {background-position: 0 -29px;}
.posts .quote {background-position: 0 -58px;}
.posts .link {background-position: 0 -87px;}
.posts .chat {background-position: 0 -116px;}
.posts .audio {background-position: 0 -145px;}
.posts .video {background-position: 0 -174px;}
.posts .answer {background-position: 0 -203px;}
.posts:hover .text, .posts:hover .foto, .posts:hover .quote, .posts:hover .link, .posts:hover .chat, .posts:hover .audio, .posts:hover .video, .posts:hover .answer{background-color: {color:Post Icon Hover};}
.posts img {
margin-bottom: -3px;
{block:IndexPage}max-width: 236px;{/block:IndexPage}
{block:PermalinkPage}max-width: 523px;{/block:PermalinkPage}
{block:ifThreeColumnLayout}{block:PermalinkPage}max-width: 810px!important;{/block:PermalinkPage}{/block:ifThreeColumnLayout}
}
.posts .body, .posts .body2 {overflow: hidden;}
.posts .indexpoles {
background: url("http://static.tumblr.com/3driglx/kXdl5zyu8/indexpoles.png");
display: block;
height: 11px;
width: 256px;
}
.posts #permapole {
background: url("http://static.tumblr.com/3driglx/jZel5zyuo/permapoles.png");
display: block;
height: 11px;
width: 543px;
}
.posts .body2 {
{block:PermalinkPage}{block:PostNotes}margin-bottom: 11px!important;{/block:PostNotes}{/block:PermalinkPage}
{block:PermalinkPage}{block:Posts}{block:Date}margin-bottom: -6px;{/block:Date}{/block:Posts}{/block:PermalinkPage}
padding: 5px 10px 5px 10px;
}
.posts .body2 ul {
margin: 0;
list-style: none;
}
.posts .body2 ul li.time, .posts .body2 ul li.tags {float: left;}
.posts .body2 ul li.tags {
background-position: -61px -28px;
margin: 0 10px 0 0;
padding: 0 0 0 11px;
}
.posts .body2 ul li.notes, .posts .body2 ul li.download, .posts .body2 ul li.reblog {
float: right;
padding: 0 0 0 12px;
}
.posts .body2 ul li.notes, .posts .body2 ul li.reblog {margin: 0 0 0 10px;}
.posts .body2 ul li.notes {background-position: -61px -14px;}
.posts .body2 ul li.download {background-position: -61px -57px;}
.posts .body2 ul li.reblog {background-position: -61px -43px;}
.posts .body2 ul li.time {
background-position: -61px -2px;
{block:PermalinkPage}margin: 0 10px 0 0;{/block:PermalinkPage}
padding: 0 0 0 12px;
}
.posts .body {padding: 8px 10px 10px 10px;}
.posts .bodydate {margin: 0 0 11px 0;}
.posts .body h1 {
{block:IndexPage}font: normal 20px/25px Helvetica, Arial Narrow, Sans-Serif!important;{/block:IndexPage}
font: normal 30px/35px Helvetica, Arial Narrow, Sans-Serif;
{block:PermalinkPage}margin-bottom: -5px;
margin-top: -3px!important;{/block:PermalinkPage}
margin-top: -3px;
}
.posts .body h1 a, .posts .body h2 a {color:{color:Post Title Link};}
.posts .body h1 span {color: {color:Link};}
.posts h1.linkk {margin-bottom: -5px;}
.posts .body h1.chatheader {
margin-bottom: 4px;
margin-top: -4px;
}
.posts .body h1.question br {display: none;}
.posts .body .textt {margin-top: -5px;}
.posts .body .textt img {margin-top: 2px;}
.posts .body .caption {
margin-bottom: -1px;
margin-top: 7px;
}
/* ___________________________________________________________ Video Post Styling */
.posts .body .videopost embed, .posts .body .videopost object, .posts .body .photosett embed, .posts .body .photosett object {
margin-bottom: -3px;
{block:IndexPage}height: 170px;{/block:IndexPage}
{block:PermalinkPage}height: 400px;{/block:PermalinkPage}
{block:ifThreeColumnLayout}{block:PermalinkPage}height: 538px!important;{/block:PermalinkPage}{/block:ifThreeColumnLayout}
{block:IndexPage}width: 236px;{/block:IndexPage}
{block:PermalinkPage}width: 523px;{/block:PermalinkPage}
{block:ifThreeColumnLayout}{block:PermalinkPage}width: 810px!important;{/block:PermalinkPage}{/block:ifThreeColumnLayout}
}
.posts .body .linktextt {margin-top: -5px;}
.posts .body .photo {position: relative;}
.posts .body .photo img {background: #fff;}
/* ___________________________________________________________ Photo Post Styling */
.posts .body .photo {
background: #000 url("http://static.tumblr.com/3driglx/i3Jl2tjfs/themocritybodybackground.png");
text-align: center;
}
.posts .body .photo img {
{block:PermalinkPage}max-width: 523px;{/block:PermalinkPage}
{block:ifThreeColumnLayout}{block:PermalinkPage}max-width: 810px!important;{/block:PermalinkPage}{/block:ifThreeColumnLayout}
}
.posts .body a.highquality {
background: #fff;
bottom: 0;
color: #000;
font-size: 18px;
font-weight: bold;
line-height: 10px;
padding: 5px 10px 0 10px;
position: absolute;
right: 0;
text-transform: uppercase;
visibility: hidden;
}
.posts .body:hover a.highquality {visibility: visible!important;}
/* ___________________________________________________________ Chat Post Styling */
.posts .body .odd, .posts .body .even {
display: block;
margin: 0;
padding: 5px 8px 5px 8px;
}
.posts .body .odd {background: url("http://static.tumblr.com/3driglx/i3Jl2tjfs/themocritybodybackground.png");}
.posts .body .even {background: url("http://static.tumblr.com/3driglx/K1ml2tjmb/themocritychatevenbackground.png");}
/* ___________________________________________________________ Audio Post Styling */
.posts .body .player {
background: #fff;
display: block;
margin-left: 109px;
-moz-border-radius: 50px;
padding: 10px;
position: absolute;
margin-top: 80px;
}
.posts .body .audioplayer {
height: 27px;
overflow: auto;
width: 27px;
}
.posts .body .audiocaption {
float: right;
width: 277px;
{block:ifThreeColumnLayout}width: 564px!important;{/block:ifThreeColumnLayout}
}
.posts .body .audioplayer2 {
background: #fff;
display: block;
margin: 0 0 12px 0;
padding: 3px 0 0 0;
}
.posts .body .audiocaption h1.audiopost {
font-size: 27px;
line-height: 8px;
{block:ifThreeColumnLayout}
font-size: 34px;
line-height: 8px;
{/block:ifThreeColumnLayout}
margin-top: 10px!important;
}
.posts .body .audiocaption h1.audiopost span {color: {color:Footer Link};}
.posts .body .audiocaption h1.audiopost span.audioodd {color: {color:Link};}
.posts .body .audiopostcaption {margin: 8px 0 0 0;}
/* __________________ Thanks to Rogie from Komodomedia.com. */
.posts .body ul.music {
list-style: none;
margin: 0;
}
.posts .body ul.music li {
background-position: 0 -232px;
float: left;
position: relative;
}
.posts .body ul.music li a {
background-position: 0 -438px;
display: block;
float: left;
height: 206px;
overflow: hidden;
position: relative;
text-indent: -1000em;
width: 236px;
z-index: 1;
}
.posts .body ul.music li img {
height: 196px;
left: 35px;
position: absolute;
top: 5px;
width: 196px;
}
/* ___________________________________________________________ Notes Styling */
ol.notes {
list-style: none;
margin: 0;
width: 543px;
{block:ifThreeColumnLayout}width: 830px!important;{block:ifThreeColumnLayout}
}
ol.notes li {
padding: 5px;
margin: 5px 0 0 0;
}
ol.notes li a {color: {color:Note Links};}
ol.notes li img {
height: 10px;
position: relative;
top: 1px;
}
/* ___________________________________________________________ Footer Styling */
#footer {
margin: 16px 0 11px 0;
{block:PermalinkPage}{block:Posts}{block:Date}margin-top: 1px!important;{/block:Date}{/block:Posts}{/block:PermalinkPage}
{block:IndexPage}margin: 0 0 11px 0!important;{/block:IndexPage}
{block:PermalinkPage}margin: 0 0 11px 0;{/block:PermalinkPage}
{block:PermalinkPage}{block:PostNotes}margin: 1px 0 11px 0!important;{/block:PostNotes}{/block:PermalinkPage}
padding: 6px 10px 7px 10px;
width: 523px;
{block:ifThreeColumnLayout}width: 810px!important;{/block:ifThreeColumnLayout}
}
#footer a {color: {color:Footer Link};}
#footer .credit {float: left;}
#footer .top {
color: #fff;
float: right;
margin-top: -1px;
}
#footer .top a {color: #ccc;}
#footer .top a {color: #fff!important;}
/* ___________________________________________________________ Pagination Styling */
#pagination {
float: right;
margin-right: 32px;
margin-top: 5px;
}
#pagination a, #pagination span {
margin-left: 3px;
padding: 5px;
}
#pagination span, #pagination a:hover {color: #0b0b0b!important;}
#pagination span {background: {color:Pagination};}
#pagination a.next, #pagination a.previous {padding: 5px 8px 5px 8px;}
#pagination a {color: #fff;}
#pagination a:hover {background: #ccc;}
/* ___________________________________________________________ Extra Styling */
h1, h2, h3, h4 {text-transform: uppercase;}
b, strong {
color: {color:Link};
font-weight: bold!important;}
i, em {font-style: italic!important;}
small {font-size: 10px;}
#disqus_thread h3 {
font-family: LeagueGothicRegular!important;
font-size: 28px!important;
}
a {
color: {color:Link};
text-decoration: none;
}
a:hover, a.top:hover {color: #ccc!important;}
a:focus {outline: none;}
p.formspringmeFooter {
margin-bottom: -1px!important;
{block:IndexPage}margin-top: 3px;{/block:IndexPage}
}
@font-face {
font-family: 'LeagueGothicRegular';
src: url('http://static.tumblr.com/3driglx/l8dl6c9ej/league_gothic_0-webfont.eot';);
src: local('League Gothic'), local('LeagueGothic'),
url('http://static.tumblr.com/3driglx/6J8l6c9fb/league_gothic_0-webfont.ttf';) format('truetype');
}
ul, ol {margin: 5px 0 0 30px;}
blockquote {
border-left: 5px solid #111;
margin: 5px 0 0 0;
padding: 0 0 0 8px;
}
blockquote img {
max-height: 200px!important;
max-width: 150px!important;
}
blockquote br {display: none;}
input.srch {
border: none;
color: #fff;
font: normal 11px/14px Helvetica, Arial, Sans-Serif;
width: 60px;
}
.clear, .clear2 {clear: both;}
.clear2 {margin-bottom: -10px;}
p {margin: 5px 0 0 0;}
.answer_form_container {
margin-bottom: -3px!important;
margin-top: 10px!important;
}
#submit_form {margin-bottom: -130px;}
#ask_form {
margin-bottom: -3px;
margin-top: 3px;
}
#tumblr_controls {position: fixed!important;}
img {border: none;}
.movedown {margin-top: 2px;}
.space {
display: block;
height: 30px;
width: 100%;
}
/* ___________________________________________________________ Custom CSS */
{CustomCSS}
</style>
<script type="text/javascript" src="http://static.tumblr.com/3driglx/VJtl5wfj2/jquery_themocrity.js"></script>
{block:IndexPage}<!-- jQuery Masonry by http://desandro.com/resources/jquery-masonry/ -->
<script type="text/javascript" src="http://static.tumblr.com/3driglx/ljol5wfjm/masonry_themocrity.js"></script>
<script type="text/javascript">$(window).load(function () { $('#content').masonry(); });</script>{/block:IndexPage}
<!-- Cufon http://cufon.shoqolate.com/generate/ -->
<script type="text/javascript" src="http://static.tumblr.com/3driglx/Okkl5xym9/cufon_themocrity.js"></script>
<script type="text/javascript" src="http://static.tumblr.com/3driglx/IfDl5wflw/font_themocrity.js"></script>
<script type="text/javascript" language="Javascript">Cufon('h1, h2, .posts .body a.highquality, #searchtagpage', { hover: true });</script>
<!-- Courtesy of http://matthewbuchanan.name -->
<script type="text/javascript" src="http://static.tumblr.com/3driglx/Eb4l5wfl9/vimeo_themocrity.js"></script>
<script type="text/javascript" src="http://static.tumblr.com/3driglx/aS7l5wfkx/youtube_themocrity.js"></script>
<script type="text/javascript">function formatColor(color) { var formattedColor = color.split("#")[1]; if (formattedColor.length == 3) { var colorValues = formattedColor.split(""); formattedColor = colorValues[0]+colorValues[0]+colorValues[1]+colorValues[1]+colorValues[2]+colorValues[2]; } return formattedColor; } vimeoColor = "{color:Vimeo Video Player}"; vimeoColor = formatColor(vimeoColor); youtubeColor = "{color:Youtube Video Player}"; youtubeColor = formatColor(youtubeColor);</script>
<script type="text/javascript" src="http://static.tumblr.com/3driglx/NI1kzhm8a/animatedcollapse.js"></script>
<script type="text/javascript">animatedcollapse.addDiv('bigicon', 'fade=1')
animatedcollapse.ontoggle=function($, divobj, state){
}
animatedcollapse.init()</script>
</head>
<body>
<script src="http://www.stormpages.com/sheenababie/rainboweffect.js"></script>
<div id="container">
<div id="header">
<div id="bigicon" style="display: none;"><img src="{PortraitURL-128}" alt="me" /></div>
<h1>{block:ifShowIcon}<a href="javascript:animatedcollapse.toggle ('bigicon')"><img src="{PortraitURL-128}" alt="me" /></a> {block:ifShowIcon}<a>{Title}</a></h1>
{Description}
<ul>
<li><a href="/">{lang:Home}</a></li>
{block:HasPages}{block:Pages}<li><a href="{URL}">{Label}</a></li>{/block:Pages}{/block:HasPages}
{block:ifShowArchiveLink}<li><a href="/archive">{lang:Archive}</a></li>{/block:ifShowArchiveLink}
{block:ifShowRandomLink}<li><a href="/random">{lang:Random}</a></li>{/block:ifShowRandomLink}
{block:ifShowFeedLink}<li><a href="{RSS}">{lang:Feed}</a></li>{/block:ifShowFeedLink}
{block:AskEnabled}<li><a href="/ask">{block:English}Ask{/block:English}{block:German}Fragen{/block:German}{block:French}Demandez{/block:French}{block:Italian}Chiedere{/block:Italian}{block:Japanese}??{/block:Japanese}</a></li>{/block:AskEnabled}
{block:SubmissionsEnabled}<li><a href="/submit">Submit</a></li>{/block:SubmissionsEnabled}
{block:ifCustomLink1Title}<li><a href="{text:Custom Link 1 URL}">{text:Custom Link 1 Title}</a></li>{/block:ifCustomLink1Title}
{block:ifCustomLink2Title}<li><a href="{text:Custom Link 2 URL}">{text:Custom Link 2 Title}</a></li>{/block:ifCustomLink2Title}
{block:ifCustomLink3Title}<li><a href="{text:Custom Link 3 URL}">{text:Custom Link 3 Title}</a></li>{/block:ifCustomLink3Title}
{block:ifCustomLink4Title}<li><a href="{text:Custom Link 4 URL}">{text:Custom Link 4 Title}</a></li>{/block:ifCustomLink4Title}
<div class="clear"></div>
</ul>
</div><!-- end #header -->
{block:Twitter}
{block:IndexPage}
<div id="twitter">
<a id="twitterbird" href="http://twitter.com/{TwitterUsername}"></a>
<div id="twitterfeed">
<ul id="twitter_update_list"></ul>
</div><!-- end #twitterfeed -->
<div class="clear"></div>
</div><!-- end #twitter -->
{/block:IndexPage}
{/block:Twitter}
{block:SearchPage}<div id="searchtagpage">{lang:Found SearchResultCount results for SearchQuery 2}</div>{/block:SearchPage}
{block:TagPage}<div id="searchtagpage">{lang:Showing posts tagged Tag 2}</div>{/block:TagPage}
<div id="content">
{block:Posts}
<div class="posts">
{block:IndexPage}
{block:Text}<a class="text" href="{Permalink}"></a>{/block:Text}
{block:Photo}<a class="foto" href="{Permalink}"></a>{/block:Photo}
{block:Photoset}<a class="foto" href="{Permalink}"></a>{/block:Photoset}
{block:Quote}<a class="quote" href="{Permalink}"></a>{/block:Quote}
{block:Link}<a class="link" href="{Permalink}"></a>{/block:Link}
{block:Chat}<a class="chat" href="{Permalink}"></a>{/block:Chat}
{block:Audio}<a class="audio" href="{Permalink}"></a>{/block:Audio}
{block:Video}<a class="video" href="{Permalink}"></a>{/block:Video}
{block:Answer}<a class="answer" href="{Permalink}"></a>{/block:Answer}
{/block:IndexPage}
{block:Text}
<div class="body">
{block:Title}<div class="movedown"><h1>{Title}</h1></div>{/block:Title}
<div class="textt">
{Body}
{block:More}<p><a href="{Permalink}">{lang:Read more}...</a></p>{/block:More}
</div><!-- end .textt -->
</div><!-- end .body -->
{/block:Text}
{block:Photo}
<div class="body">
<div class="movedown">
<div class="photo">
{block:HighRes}<a class="highquality" href="{PhotoURL-HighRes}" target="_blank">{lang:High-res photo}</a>{/block:HighRes}
{LinkOpenTag}<img src="{block:IndexPage}{PhotoURL-250}{/block:IndexPage}{block:PermalinkPage}{PhotoURL-HighRes}{/block:PermalinkPage}" alt="{PhotoAlt}" />{LinkCloseTag}
</div><!-- end .photo -->
{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
</div><!-- end .movedown -->
</div><!-- end .body -->
{/block:Photo}
{block:Photoset}
<div class="body">
<div class="movedown">
<div class="photosett">{Photoset-500}</div>
{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
</div><!-- end .movedown -->
</div><!-- end .body -->
{/block:Photoset}
{block:Quote}
<div class="body">
<div class="movedown">
<h1>"{Quote}"</h1>
{block:Source}<div class="textt"><p>— {Source}</p></div>{/block:Source}
</div><!-- end .movedown -->
</div><!-- end .body -->
{/block:Quote}
{block:Link}
<div class="body">
<div class="movedown">
<h1 class="linkk"><a href="{URL}">{Name}</a></h1>
{block:Description}<div class="linktextt">{Description}</div>{/block:Description}
</div><!-- end .movedown -->
</div><!-- end .body -->
{/block:Link}
{block:Chat}
<div class="body">
<div class="movedown">
{block:Title}<h1 class="chatheader">{Title}</h1>{/block:Title}
{block:Lines}<div class="{Alt}">{block:Label}<b>{Label}</b>{/block:Label} {Line}</div>{/block:Lines}
</div><!-- end .movedown -->
</div><!-- end .body -->
{/block:Chat}
{block:Audio}
<div class="body">
<div class="movedown">
<ul class="music">
<li><a href="{Permalink}"></a>{block:AlbumArt}<img src="{AlbumArtURL}" alt="" />{/block:AlbumArt}</li>
{block:IndexPage}
<div class="player">
<div class="audioplayer">{AudioPlayerWhite}</div>
</div><!-- end .player -->
{/block:IndexPage}
</ul>
{block:PermalinkPage}
<div class="audiocaption">
<div class="audioplayer2">{AudioPlayerWhite}</div>
{block:Artist}<h1 class="audiopost"><span>{block:English}Artist{/block:English}{block:German}Künstler{/block:German}{block:French}Artiste{/block:French}{block:Italian}Artista{/block:Italian}:</span> {Artist}</h1>{/block:Artist}
{block:TrackName}<h1 class="audiopost"><span class="audioodd">{block:English}Song{/block:English}{block:German}Lied{/block:German}{block:French}Chanson{/block:French}{block:Italian}Canzone{/block:Italian}:</span> {TrackName}</h1>{/block:TrackName}
{block:Album}<h1 class="audiopost"><span>Album:</span> {Album}</h1>{/block:Album}
<h1 class="audiopost"><span class="audioodd">{lang:Plays}:</span> {FormattedPlayCount}</h1>
</div><!-- end .audiocaption -->
<div class="clear"></div>
{block:Caption}<div class="audiopostcaption">{Caption}</div>{/block:Caption}
{/block:PermalinkPage}
</div><!-- end .movedown -->
</div><!-- end .body -->
{/block:Audio}
{block:Video}
<div class="body">
<div class="movedown">
<div class="videopost">{Video-500}</div>
{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
</div><!-- end .movedown -->
</div><!-- end .body -->
{/block:Video}
{block:Answer}
<div class="body">
<div class="movedown">
<h1 class="question">@<span>{Asker}</span> "{Question}"</h1>
<div class="textt">{Answer}</div>
</div><!-- end .movedown -->
</div><!-- end .body -->
{/block:Answer}
{block:Date}
<center>{block:IndexPage}<div class="indexpoles"></div>{block:IndexPage}
{block:PermalinkPage}<div id="permapole"></div>{/block:PermalinkPage}</center>
<div class="body2">
<ul>
<li class="time">{block:IndexPage}{TimeAgo}{/block:IndexPage}{block:PermalinkPage}{MonthNumberWithZero}.{DayOfMonthWithZero}.{ShortYear}{/block:PermalinkPage}</li>
{block:PermalinkPage}{block:HasTags}{block:Tags}<li class="tags"><a href="{TagURL}">{Tag}</a></li>{/block:Tags}{/block:HasTags}{/block:PermalinkPage}
{block:NoteCount}<li class="notes">{NoteCount}</li>{/block:NoteCount}
{block:PermalinkPage}{block:RebloggedFrom}<li class="reblog"><a href="{ReblogParentURL}">{ReblogParentName}</a></li>{/block:RebloggedFrom}{/block:PermalinkPage}
{block:ExternalAudio}<li class="download"><a href="{ExternalAudioURL}" title="Download the audio.">{lang:Download}</a></li>{/block:ExternalAudio}
</ul>
</div><!-- end .body2 -->
{/block:Date}
</div><!-- end .posts-->
{/block:Posts}
{block:PostNotes}
{PostNotes}
{/block:PostNotes}
{block:PermalinkPage}
{block:Posts}
{block:Date}
{block:IfDisqusShortname}
<div class="posts">
<div id="disqus_thread"></div>
<script type="text/javascript" src="http://disqus.com/forums/{text:Disqus Shortname}/embed.js"></script>
<noscript><a href="http://{text:Disqus Shortname}.disqus.com/?url=ref">{lang:View the discussion thread}</a></noscript>
{lang:Blog comments powered by Disqus 2}
</div><!-- end .posts -->
{/block:IfDisqusShortname}
{/block:Date}
{/block:Posts}
{/block:PermalinkPage}
</div><!-- end #content -->
{block:IndexPage}<div class="clear"></div>{/block:IndexPage}
<div id="footer">
<div class="top">
<table><tr><td><a href="#header">{block:English}Back To Top{/block:English}{block:German}Zurück zum seitenanfang{/block:German}{block:French}Haut de page{/block:French}{block:Italian}Torna su{/block:Italian}</a></td>
<td> </td>
<td><form action="/search" method="get">
<input class="srch" type="text" name="q" value="{lang:Search}" onclick="value=''" onblur="if(this.value=='') this.value='{lang:Search}';" />
</form></td></tr></table>
</div><!-- end .top -->
<div class="clear"></div>
</div><!-- end #footer -->
{block:Pagination}
<div id="pagination">
{block:PreviousPage}<a class="previous" href="{PreviousPage}">← {lang:Previous page}</a>{/block:PreviousPage}
{block:JumpPagination length="10"}
{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:NextPage}<a class="next" href="{NextPage}">{lang:Next page} →</a>{/block:NextPage}
</div><!-- end #pagination -->
{/block:Pagination}
{block:PermalinkPagination}
<div id="pagination">
{block:NextPost}<a class="next" href="{NextPost}">← {lang:Previous post}</a>{/block:NextPost}
{block:PreviousPost}<a class="previous" href="{PreviousPost}">{lang:Next post} →</a>{/block:PreviousPost}
</div><!-- end #pagination -->
{/block:PermalinkPagination}
<div class="clear"></div>
</div><!-- end #container -->
<script type="text/javascript">Cufon.now();</script>
{block:Twitter}
<script src="http://static.tumblr.com/thpaaos/ZCdkl306g/twitter.js" type="text/javascript"></script>
<script src="http://twitter.com/statuses/user_timeline/{TwitterUsername}.json?callback=twitterCallback2&count=1" type="text/javascript"></script>
{/block:Twitter}
{block:ifEnableStreampad}
<div class="space"> </div>
<script type="text/javascript" src="http://o.aolcdn.com/art/merge?f=/_media/sp/sp-player.js&f=/_media/sp/sp-player-tumblr.js&expsec=86400&ver=11&bgcolor={color:Streampad Background}&clicktext=Play%20All%20Audio%20Posts&clickimg=true&showpop=false"></script>
{/block:ifEnableStreampad}
{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}
{block:ifGoogleAnalyticsID}
<!-- Google Analytics -->
<script type="text/javascript">
// <![CDATA[
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '{text:Google Analytics ID}']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl'; : 'http://www';) + '.google-analytics.com/ga.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
})();
// ]]>
</script>
{/block:ifGoogleAnalyticsID}
<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>
</head>
</body>
</html> -
ilovemyvlaad for twitter dear. :>
-
JAA’s Bio
i won't bite ya monstaar. ♥

