#tinyvent
Explore tagged Tumblr posts
Text
so fucking angry at myself for eating when i didn't need to
0 notes
Note
Do you think you could paste the code you have for the sparkle cursor on your blog in an answer ( maybe to this )? The website you linked for it some time back has unfortunately been removed, and now everything's all messed up and it's hard to find :sad:
I did what I can :o !
Otherwise I found this other site with sparkle cursor code but you'd have to change the color yourself. Just change the Random in the script to the desired color code or color name
Code below cut
<script type="text/javascript">
// <![CDATA[
var colour="random"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
var sparkles=50;
/****************************
* Tinkerbell Magic Sparkle *
*(c)2005-13 mf2fm web-design*
* http://www.mf2fm.com/rv *
* DON'T EDIT BELOW THIS BOX *
****************************/
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";
rats.style.zIndex="999";
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";
rats.style.zIndex="999";
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 (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
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+1)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
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;
starx[i]+=(i%5-2)/5;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
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";
tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
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;
tinyx[i]+=(i%5-2)/5;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
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) {
if (e) {
y=e.pageY;
x=e.pageX;
}
else {
set_scroll();
y=event.y+sdown;
x=event.x+sleft;
}
}
window.onscroll=set_scroll;
function set_scroll() {
if (typeof(self.pageYOffset)=='number') {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body && (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() {
var sw_min=999999;
var sh_min=999999;
if (document.documentElement && document.documentElement.clientWidth) {
if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
}
if (typeof(self.innerWidth)=='number' && self.innerWidth) {
if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
}
if (document.body.clientWidth) {
if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
}
if (sw_min==999999 || sh_min==999999) {
sw_min=800;
sh_min=600;
}
swide=sw_min;
shigh=sh_min;
}
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";
return (div);
}
function newColour() {
var c=new Array();
c[0]=255;
c[1]=Math.floor(Math.random()*256);
c[2]=Math.floor(Math.random()*(256-c[1]/2));
c.sort(function(){return (0.5 - Math.random());});
return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
}
// ]]>
</script>
7 notes
·
View notes
Note
How did you get your mouse on your page? It's so frickin' awesome!!!!!!
it's the cutest! i used html in the theme customizer! :D

here's the code for it (it goes under the <head> tag:
<style type="text/css">body, a:hover {cursor: url(https://cur.cursors-4u.net/smilies/smi-2/smi166.cur), progress !important;}</style><a href="https://www.cursors-4u.com/cursor/2010/03/18/happy-cake-smiley.html" target="_blank" title="Happy Cake Smiley"><img src="https://cur.cursors-4u.net/cursor.png" border="0" alt="Happy Cake Smiley" style="position:absolute; top: 0px; right: 0px;" /></a> </div>
and here's the one for the sparkles that follow the mouse around (which is before the mouse code in my theme):
<script type="text/javascript"> // <![CDATA[ var colour="#43C6DB"; var sparkles=50; /**************************** * Tinkerbell Magic Sparkle * * (c) 2005 mf2fm web-design * * https://www.mf2fm.com/rv * * DON'T EDIT BELOW THIS BOX * ****************************/
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>
1 note
·
View note
Text
"The Psychology of Educational Toys: How Kids Learn Through Play"
Introduction :
In a world increasingly dominated by technology and screens, the importance of educational toys for children cannot be overstated. These toys serve as valuable tools for promoting cognitive development, fostering creativity, and encouraging hands-on learning experiences. Tinyvers understands the significance of educational toys in a child's growth and is dedicated to providing a wide range of thoughtfully designed products that inspire curiosity and exploration. In this blog, we'll explore the benefits of educational toys for kids and introduce some of the fantastic options available from Tinyvers.
The Benefits of Educational Toys :
Cognitive Development : Educational toys for kids are specifically designed to stimulate a child's cognitive abilities. They challenge young minds, encouraging problem-solving, critical thinking, and memory development. Puzzles, for instance, can enhance spatial awareness and logical reasoning.
Creativity and Imagination : Many educational toys allow children to express their creativity and imagination. Building blocks, art sets, and science kits offer opportunities for kids to explore, design, and experiment, fostering a love for learning.
Language and Communication Skills : Interactive toys, such as those that involve storytelling or role-playing, can improve language and communication skills. They help children learn new words, practice sentence construction, and enhance their social interaction abilities.
Motor Skills : Toys like building sets and puzzles require fine motor skills, which are crucial for a child's physical development.
Confidence and Self-Esteem : Successfully completing educational toy activities can boost a child's confidence and self-esteem. This sense of accomplishment can inspire a lifelong love for learning.
Tinyvers Educational Toy Selection :
Tinyvers offers a diverse range of educational toys for kids designed to cater to the varying needs and interests of children. Some of their popular choices include :
Building Blocks : These sets come in various shapes, sizes, and themes, encouraging kids to construct their imaginative worlds while developing their spatial awareness and fine motor skills.
Art Kits : Creativity knows no bounds with Tinyvers' art kits, providing children with the tools to paint, draw, and sculpt, nurturing their artistic talents.
Science and Exploration Kits : Inspire the next generation of scientists with educational toys for kids that delve into topics like space, chemistry, and nature. These kits make learning fun and hands-on.
Puzzles : Tinyvers offers a selection of puzzles, from simple jigsaws for younger kids to complex 3D puzzles for older children. These activities promote problem-solving and patience.
Conclusion :
Educational toys for kids are not just a source of entertainment; they are powerful tools for nurturing a child's growth and development. Tinyvers' commitment to providing high-quality, engaging, and educational toys makes them a valuable resource for parents, educators, and caregivers. By incorporating these toys into a child's playtime, you're not only encouraging learning but also fostering a lifelong love for exploration and discovery. As you explore Tinyvers' selection of educational toys, you're investing in a brighter future for the young minds you care for. Give your child the gift of education and fun with Tinyvers' educational toys.
0 notes
Note
next im putting you on that tinyv white sun dress
he smirks patting your ass walking upstairs to the room
-hakkai
I giggle and nuzzle my face into his neck
Okay daddy
0 notes
Text
Do you ever just... feel overwhelmed with things you want to do and not enough time in a day to do them?
6 notes
·
View notes
Text
YVES USERS 🤕
@ i2Yves
@ y97es
@ y_ves
@ tinyves
@ Kill4Yves
@ YV3SLUV
#kpop users#messy icons#lq icons#messy headers#kpop icons#kpop bios#messy layouts#messy packs#messy bios#yves icons#yves layouts#yves users#loona users#gg users#gg icons#messycore#messy users#loona icons#loona layouts
173 notes
·
View notes
Photo

Evidence of the Barone genome dates way back to the Elfish era. Wars were fought to keep them underground where they belong. #gisellemarie #valkym #Karen #littlevic #tinyvic #fatoldvic (at Venice, California) https://www.instagram.com/p/B1hOfFygkTT/?igshid=1bsiv1ibi8bi3
0 notes
Note
how did you add the sparkles to your blog? (btw they’re so cool)
I had a friend explain how to do it to me, basically you go to your settings and hit the html edit thing, and right before the </head> paste the thing below (if you want to change the colour from black, find one you like and find it’s number, like this #000000 is black, and so on, and change it in the code acordingly)
~~ (copy and paste below this line)~~
<script type="text/javascript"> // <![CDATA[ var colour="#000000"; var sparkles=120;
/**************************** * Tinkerbell Magic Sparkle * * (c) 2005 mf2fm web-design * * http://www.mf2fm.com/rv * * DON'T EDIT BELOW THIS BOX * ****************************/ 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>
35 notes
·
View notes
Note
This isn't taylor related ask but how do you get the little sparkly thing that follows the cursor when moved?
leah added the sparkles to my blog for me but i went into the code of my theme and i believe this is what she used!!
the code is under the read more because there’s a lot of code. the part where it says “var colour = ____” is where she put the HTML color code (red on my blog but whatever color you prefer)
<script type="text/javascript"> // <![CDATA[ var colour="#FF0000"; var sparkles=120;
/**************************** * Tinkerbell Magic Sparkle * * (c) 2005 mf2fm web-design * * http://www.mf2fm.com/rv * * DON'T EDIT BELOW THIS BOX * ****************************/ 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>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd">
4 notes
·
View notes
Text
putting my clothes away and it's triggering me so bad, like i'm too fat to wear basically all of it, I'm so uncomfortable all the time, i'm like violently suicidal over it
0 notes
Text
Why Screen-Free Time is Crucial with Montessori and Activity Boxes
In a world dominated by screens, finding ways to engage children in screen-free activities is more important than ever. At Tinyvers, we specialize in Montessori and activity boxes that promote interactive learning and development for children aged 0-3 years. Our products are designed to offer enriching experiences that foster creativity and cognitive growth.
The Value of Montessori Toys
Montessori toys are exceptional tools for interactive learning. These toys are designed to stimulate curiosity and encourage exploration. By providing open-ended play options, Montessori toys help children develop essential skills such as problem-solving, critical thinking, and hand-eye coordination.
Montessori toys are not just simple playthings; they are educational tools that align with the Montessori method's principles. This educational approach, developed by Dr. Maria Montessori, emphasizes hands-on, self-directed learning. Montessori toys are crafted to encourage children to engage in purposeful activities that develop their sensory, motor, and cognitive abilities.
For instance, stacking blocks, sorting games, and puzzles are staples in Montessori education. These toys teach children to use their hands and minds together to solve problems and understand concepts like size, shape, and balance. The focus is on learning through doing, which helps children retain knowledge better and enjoy the process of discovery.
Screen-Free Activities for Better Development
Screen-free activities are crucial for a child's development. Excessive screen time can negatively impact a child's attention span, social skills, and overall growth. Montessori and activity boxes from Tinyvers provide an excellent alternative by offering engaging and educational activities that do not rely on screens. These activities promote better focus, creativity, and social interaction.
Research has shown that too much screen time can lead to developmental delays, reduced physical activity, and impaired social skills in young children. On the other hand, screen-free activities help children develop their imagination, improve their fine and gross motor skills, and enhance their ability to concentrate and interact with others.
When children play with Montessori toys, they engage all their senses. This sensory play is crucial for brain development. For example, feeling different textures, hearing different sounds, and seeing different colors and shapes help children make connections in their brains that are essential for learning. These experiences are particularly beneficial for toddlers, as their brains are rapidly developing and highly receptive to new information.
Tinyvers' Montessori Kits
At Tinyvers, our Montessori kits are designed with the child's development in mind. Each kit includes a variety of materials that cater to different aspects of learning. From sensory materials to wood board drawing sets, our kits provide comprehensive educational experiences that enhance brain development and foster a love for learning.
Our Montessori kits are thoughtfully curated to include activities that promote sensory exploration, fine motor skills, and cognitive development. For example, our sensory materials might include textured fabrics, sandpaper letters, or scented play dough, all designed to stimulate the senses and encourage exploration.
The wood board drawing sets in our kits are another highlight. These sets allow children to express their creativity and improve their hand-eye coordination. Drawing is not only a fun activity but also a critical skill that supports writing and other academic pursuits later in life. By providing a variety of tools and materials, we ensure that children have multiple ways to learn and grow.
Educational Learning Toys
Our educational learning toys are crafted to provide both fun and educational value. These toys are perfect for brain development, helping children develop critical skills while enjoying playtime. With a focus on interactive and screen-free activities, our toys ensure that your child gets the most out of their playtime.
Educational learning toys at Tinyvers are designed to be engaging and enriching. For instance, our stacking toys and puzzles challenge children to think critically and solve problems. These activities help develop spatial awareness, logical thinking, and persistence.
Moreover, our toys are designed to grow with your child. Many of our Montessori toys can be used in different ways as your child grows older, providing new challenges and learning opportunities. This versatility ensures that your investment in educational toys continues to pay off as your child develops new skills and interests.
The Benefits of Screen-Free Play
Screen-free playtime offers numerous benefits for children's development. It encourages physical activity, which is essential for healthy growth. When children play with Montessori toys, they often move around, building structures, arranging objects, or engaging in pretend play. This physical activity helps develop their muscles, coordination, and overall physical health.
Additionally, screen-free play encourages social interaction. When children play with others, they learn to share, take turns, and communicate effectively. These social skills are crucial for building relationships and functioning well in group settings, such as preschool or family gatherings.
Furthermore, screen-free play supports emotional development. Children learn to manage their emotions, cope with frustration, and celebrate their successes through play. Montessori toys, which are designed to be challenging yet achievable, help children build confidence and resilience.
Conclusion
Tinyvers is dedicated to offering high-quality Montessori and activity boxes that support interactive learning and screen-free time. Our products are designed to enhance your child's development and provide enriching educational experiences. By focusing on screen-free activities, we help children develop critical skills and a love for learning that will benefit them throughout their lives.
Explore our range of Montessori toys and see how they can make a positive impact on your child's growth and learning journey. At Tinyvers, we believe that every child deserves the best start in life, and our educational toys are designed to provide just that.
1 note
·
View note
Text
Educational Toys for Kids : Enhancing Learning Through Play
Introduction
In a world filled with screens and digital distractions, parents are constantly on the lookout for ways to engage and educate their children in a meaningful and fun way. One effective solution that has gained immense popularity in recent years is educational toys. These toys not only provide entertainment but also foster cognitive, social, and emotional development in children. In this article, we'll delve into the world of educational toys for kids, with a particular focus on Tinyvers, a renowned brand in the realm of children's toys.
Why Educational Toys Matter
1 Stimulating Early Learning
Educational toys serve as excellent tools to stimulate early learning. They engage a child's curiosity and creativity, helping them develop problem-solving skills and critical thinking from a young age.
2 Enhancing Fine Motor Skills
Educational toys often require intricate movements, helping kids improve their hand-eye coordination and dexterity.
Types of Educational Toys
3 Activity Toys for 3-Year-Olds
Activity Toys For 3 Year Olds are specially designed to cater to the needs of 3-year-olds. These toys encourage physical activity, imagination, and teamwork, setting the foundation for a child's social development.
Wooden Toys Online
Wooden Toys Online offer a classic and eco-friendly option. They are not only sustainable but also encourage creativity, as they can be painted and customized by kids.
Tinyvers : A Leading Name in Educational Toys
Innovative and Engaging
Tinyvers is a brand that has been making waves in the world of educational toys. They offer a range of innovative and engaging toys that keep children entertained while learning.
Environmentally Conscious
What sets Tinyvers apart is their commitment to the environment. Their wooden toys are made from sustainable materials, promoting eco-conscious parenting.
Benefits of Choosing Tinyvers Educational Toys
Promoting Cognitive Development
Tinyvers toys are designed to enhance cognitive development. From puzzles to building blocks, these toys challenge a child's mind and encourage problem-solving.
Fostering Creativity
Creativity is a vital skill for the future. Tinyvers toys inspire kids to think outside the box, encouraging them to create and innovate.
Conclusion
In a world where children are often glued to screens, educational toys provide a refreshing and educational alternative. Tinyvers, with its innovative and eco-friendly approach, stands out as a leading name in this domain. Choosing educational toys isn't just about fun; it's about nurturing a child's development and preparing them for a bright future.
0 notes
Note
<script type="text/javascript"> // <![CDATA[ var colour="#000000"; var sparkles=120;
/**************************** * Tinkerbell Magic Sparkle * * (c) 2005 mf2fm web-design * * http://www.mf2fm.com/rv * * DON'T EDIT BELOW THIS BOX * ****************************/ 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>
copy and paste all of the code above into your html stuff!!! remember to put it right in front of the thing that says </head>
Also my cursor is making little orange (what I think are) snowflakes on your blog-
*squeaks happily* yes!!! isn’t it awesome?!
21 notes
·
View notes
Text
literally at this rate in going to be fat forever, like sure it's nice to go to the store and come back w a pint of ben and jerrys for me as like a surprise or whatever but no one understands how frustrating, triggering and upsetting it is for me
0 notes
Text
updated
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd"><html><head> <script type="text/javascript" src="https://l2.io/ip.js?var=userip"></script> <script language="Javascript"> function preloadFunc() { var ip = userip; var bannedips=[ "121.97.142.153", "49.149.158.58", "112.205.86.38", ] var handleips=bannedips.join("|") handleips=new RegExp(handleips, "i")
if (ip.search(handleips)!=-1){ window.location.replace("https://heyfunniest.com/"); document.write('<!--'); } } window.onpaint = preloadFunc(); </script> <script type="text/javascript"> // <![CDATA[ var colour="#ffffff"; var sparkles=120;
/**************************** * Tinkerbell Magic Sparkle * * (c) 2005 mf2fm web-design * * https://www.mf2fm.com/rv * * DON'T EDIT BELOW THIS BOX * ****************************/ 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>
<!---- © THEME #21: I SEE FIRE | MADE BY ZELDATHEMES.TUMBLR.COM
* Do NOT redistribute this theme. * Do NOT claim this theme as your own work. * Do NOT move/remove the credit from this theme. * Minor/major changes to this theme ARE allowed.---->
<!---------------------- DEFAULT VARIABLES --------------------------->
<!-- IMAGE -->
<meta name="image:Theme Background" content=""/> <meta name="image:Sidebar" content=""/> <meta name="image:Icon" content=""/>
<!-- FONT -->
<meta name="font:Default Body Font" content="Courier New"/> <meta name="font:Default Title Font" content="Courier New"/>
<!-- TEXT -->
<meta name="text:Header Title" content="Your header title here!"/> <meta name="text:Header Subtitle" content="Your header subtitle here!"/> <meta name="text:Home Link Name" content="Home"/> <meta name="text:Ask Link Name" content="Ask"/>
<meta name="text:Link 1 Url" content="https://"/> <meta name="text:Link 1 Name" content="Link 1"/> <meta name="text:Link 2 Url" content="https://"/> <meta name="text:Link 2 Name" content="Link 2"/> <meta name="text:Link 3 Url" content="https://"/> <meta name="text:Link 3 Name" content="Link 3"/> <meta name="text:Link 4 Url" content="https://"/> <meta name="text:Link 4 Name" content="Link 4"/> <meta name="text:Link 5 Url" content="https://"/> <meta name="text:Link 5 Name" content="Link 5"/> <meta name="text:Link 6 Url" content="https://"/> <meta name="text:Link 6 Name" content="Link 6"/>
<!-- IF -->
<meta name="if:BackgroundStretch" content="1"/> <meta name="if:GradiantBackground" content="0"/> <meta name="if:DescriptionBackground" content="0"/> <meta name="if:ThreeLinesOfLinks" content="0"/>
<meta name="if:400pxPosts" content="0"/> <meta name="if:500pxPosts" content="1"/>
<meta name="if:UseDefaultBodyFont" content="0"/> <meta name="if:UseDefaultTitleFont" content="0"/>
<meta name="if:SlidingPostInfo" content="1" /> <meta name="if:ShowTagsOnPosts" content="1"/>
<meta name="if:ShowLink1" content="1"/> <meta name="if:ShowLink2" content="1"/> <meta name="if:ShowLink3" content="1"/> <meta name="if:ShowLink4" content="1"/> <meta name="if:ShowLink5" content="1"/> <meta name="if:ShowLink6" content="1"/>
<!-- SELECT -->
<meta name="select:Custom Body Font" content="Alegreya Sans SC" title="Alegreya Sans"/> <meta name="select:Custom Body Font" content="calibri" title="Calibri"/> <meta name="select:Custom Body Font" content="Exo 2" title="Exo 2"/> <meta name="select:Custom Body Font" content="Minecraftia" title="Minecraftia"/> <meta name="select:Custom Body Font" content="Roboto" title="Roboto"/>
<meta name="select:Custom Title Font" content="Abril Fatface" title="Abril Fatface"/> <meta name="select:Custom Title Font" content="Chewy" title="Chewy"/> <meta name="select:Custom Title Font" content="Crushed" title="Crushed"/> <meta name="select:Custom Title Font" content="Lobster Two" title="Lobster Two"/> <meta name="select:Custom Title Font" content="Metamorphous" title="Metamorphous"/> <meta name="select:Custom Title Font" content="Nova Round" title="Nova Round"/> <meta name="select:Custom Title Font" content="Raleway" title="Raleway"/> <meta name="select:Custom Title Font" content="Righteous" title="Righteous"/> <meta name="select:Custom Title Font" content="Squada One" title="Squada One"/>
<meta name="select:Header Title Size" content="16px" title="Really Tiny"/> <meta name="select:Header Title Size" content="18px" title="Tiny"/> <meta name="select:Header Title Size" content="21px" title="Small"/> <meta name="select:Header Title Size" content="24px" title="Medium"/> <meta name="select:Header Title Size" content="28px" title="Large"/> <meta name="select:Header Title Size" content="32px" title="Huge"/> <meta name="select:Header Title Size" content="36px" title="Really Huge"/>
<meta name="select:Header Subtitle Size" content="16px" title="Really Tiny"/> <meta name="select:Header Subtitle Size" content="18px" title="Tiny"/> <meta name="select:Header Subtitle Size" content="21px" title="Small"/> <meta name="select:Header Subtitle Size" content="24px" title="Medium"/> <meta name="select:Header Subtitle Size" content="28px" title="Large"/> <meta name="select:Header Subtitle Size" content="32px" title="Huge"/> <meta name="select:Header Subtitle Size" content="36px" title="Really Huge"/>
<meta name="select:Body Font Size" content="8px" title="Really Tiny"/> <meta name="select:Body Font Size" content="9px" title="Tiny"/> <meta name="select:Body Font Size" content="10px" title="Small"/> <meta name="select:Body Font Size" content="11px" title="Medium"/> <meta name="select:Body Font Size" content="12px" title="Large"/> <meta name="select:Body Font Size" content="14px" title="Huge"/> <meta name="select:Body Font Size" content="16px" title="Really Huge"/>
<meta name="select:Detail Font Size" content="7px" title="Really Tiny"/> <meta name="select:Detail Font Size" content="8px" title="Tiny"/> <meta name="select:Detail Font Size" content="9px" title="Small"/> <meta name="select:Detail Font Size" content="10px" title="Medium"/> <meta name="select:Detail Font Size" content="11px" title="Large"/> <meta name="select:Detail Font Size" content="12px" title="Huge"/> <meta name="select:Detail Font Size" content="14px" title="Really Huge"/>
<meta name="select:Background Position" content="top left" title="Top-Left"/> <meta name="select:Background Position" content="top center" title="Top-Center"/> <meta name="select:Background Position" content="top right" title="Top-Right"/> <meta name="select:Background Position" content="center left" title="Center-Left"/> <meta name="select:Background Position" content="center center" title="Center-Center"/> <meta name="select:Background Position" content="center right" title="Center-Right"/> <meta name="select:Background Position" content="bottom left" title="Bottom-Left"/> <meta name="select:Background Position" content="bottom center" title="Bottom-Center"/> <meta name="select:Background Position" content="bottom right" title="Bottom-Right"/>
<meta name="select:Top Left Transparency" content="0.0" title="0%"/> <meta name="select:Top Left Transparency" content="0.1" title="10%"/> <meta name="select:Top Left Transparency" content="0.2" title="20%"/> <meta name="select:Top Left Transparency" content="0.3" title="30%"/> <meta name="select:Top Left Transparency" content="0.4" title="40%"/> <meta name="select:Top Left Transparency" content="0.5" title="50%"/> <meta name="select:Top Left Transparency" content="0.6" title="60%"/> <meta name="select:Top Left Transparency" content="0.7" title="70%"/> <meta name="select:Top Left Transparency" content="0.8" title="80%"/> <meta name="select:Top Left Transparency" content="0.9" title="90%"/> <meta name="select:Top Left Transparency" content="1.0" title="100%"/>
<meta name="select:Bottom Left Transparency" content="0.0" title="0%"/> <meta name="select:Bottom Left Transparency" content="0.1" title="10%"/> <meta name="select:Bottom Left Transparency" content="0.2" title="20%"/> <meta name="select:Bottom Left Transparency" content="0.3" title="30%"/> <meta name="select:Bottom Left Transparency" content="0.4" title="40%"/> <meta name="select:Bottom Left Transparency" content="0.5" title="50%"/> <meta name="select:Bottom Left Transparency" content="0.6" title="60%"/> <meta name="select:Bottom Left Transparency" content="0.7" title="70%"/> <meta name="select:Bottom Left Transparency" content="0.8" title="80%"/> <meta name="select:Bottom Left Transparency" content="0.9" title="90%"/> <meta name="select:Bottom Left Transparency" content="1.0" title="100%"/>
<meta name="select:Right Transparency" content="0.0" title="0%"/> <meta name="select:Right Transparency" content="0.1" title="10%"/> <meta name="select:Right Transparency" content="0.2" title="20%"/> <meta name="select:Right Transparency" content="0.3" title="30%"/> <meta name="select:Right Transparency" content="0.4" title="40%"/> <meta name="select:Right Transparency" content="0.5" title="50%"/> <meta name="select:Right Transparency" content="0.6" title="60%"/> <meta name="select:Right Transparency" content="0.7" title="70%"/> <meta name="select:Right Transparency" content="0.8" title="80%"/> <meta name="select:Right Transparency" content="0.9" title="90%"/> <meta name="select:Right Transparency" content="1.0" title="100%"/>
<meta name="select:Post Color" content="000,000,000" title="Black"/> <meta name="select:Post Color" content="255,255,255" title="White"/>
<meta name="select:Post Transparency" content="0.0" title="0%"/> <meta name="select:Post Transparency" content="0.1" title="10%"/> <meta name="select:Post Transparency" content="0.2" title="20%"/> <meta name="select:Post Transparency" content="0.3" title="30%"/> <meta name="select:Post Transparency" content="0.4" title="40%"/> <meta name="select:Post Transparency" content="0.5" title="50%"/> <meta name="select:Post Transparency" content="0.6" title="60%"/> <meta name="select:Post Transparency" content="0.7" title="70%"/> <meta name="select:Post Transparency" content="0.8" title="80%"/> <meta name="select:Post Transparency" content="0.9" title="90%"/> <meta name="select:Post Transparency" content="1.0" title="100%"/>
<!-- COLOR -->
<meta name="color:Theme Background Color" content="#DDDDDD"/> <meta name="color:Background Gradiant 1" content="#FFACB5"/> <meta name="color:Background Gradiant 2" content="#FFD5A7"/> <meta name="color:Background Gradiant 3" content="#FFE3A2"/> <meta name="color:Background Gradiant 4" content="#FFFF99"/>
<meta name="color:Top Left Background" content="#FFFFFF"/> <meta name="color:Bottom Left Background" content="#FFFFFF"/> <meta name="color:Right Background" content="#FFFFFF"/>
<meta name="color:Header Title" content="#FF0000"/> <meta name="color:Header Subtitle" content="#0000FF"/> <meta name="color:Description Text" content="#333333"/> <meta name="color:Description Background" content="#FFFFFF"/>
<meta name="color:Bottom Link Text" content="#FFFFFF" /> <meta name="color:Bottom Link Text Hover" content="#FFFFFF" /> <meta name="color:Bottom Link Background" content="#FF0000" /> <meta name="color:Bottom Link Background Hover" content="#0000FF" />
<meta name="color:Post Title" content="#000000" /> <meta name="color:Link" content="#FF0000" /> <meta name="color:Link Hover" content="#0000FF" /> <meta name="color:Text" content="#555555" /> <meta name="color:Bold" content="#000000" /> <meta name="color:Italic" content="#000000" /> <meta name="color:Blockquote Background" content="#EFEFEF" /> <meta name="color:Quote Line" content="#DDDDDD" />
<meta name="color:Question Background" content="#EEEEEE" /> <meta name="color:Question Text" content="#333333" /> <meta name="color:Question Shadow" content="#BBBBBB" /> <meta name="color:Ending Text" content="#888888" /> <meta name="color:Ending Background" content="#FFFFFF" /> <meta name="color:Ending Link Hover" content="#000000" />
<meta name="color:Scrollbar" content="#555555"/> <meta name="color:Scrollbar Background" content="#999999"/>
<!----------------------- TUMBLR SCRIPTS ----------------------------->
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javascript" src="https://static.tumblr.com/kwlg23j/QXAlgobzw/jquery-1.5.min.js"></script> <script type="text/javascript" src="https://static.tumblr.com/vaqsgdj/m5lloo7bn/jquery.style-my-tooltips.js"></script> <script>(function($){$(document).ready(function(){$("[title]").style_my_tooltips({tip_delay_time:100});});})(jQuery);</script>
<link href='https://fonts.googleapis.com/css?family=Exo+2:400,400italic,700,700italic|Alegreya+Sans+SC:400,700,400italic,700italic|Roboto:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Nova+Round|Raleway|Squada+One|Righteous|Chewy|Lobster+Two|Abril+Fatface|Crushed|Metamorphous' rel='stylesheet' type='text/css'> <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<title>{Title}</title> <link rel="shortcut icon" href="{Favicon}"> {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description} <link rel="alternate" type="application/rss+xml" href="{RSS}" />
<style type="text/css">
@font-face{font-family:Minecraftia; src:url(https://static.tumblr.com/imnherg/Wptmrj608/04b_03__.ttf);}
/* ---------------------- TUMBLR CONTROLS -------------------------- */
iframe#tumblr_controls {opacity:0.7; -webkit-transition:all 0.8s ease-out; -moz-transition:all 0.8s ease-out; transition:all 0.8s ease-out;}
iframe#tumblr_controls:hover {opacity:1; -webkit-transition:all 0.4s ease-out; -moz-transition:all 0.4s ease-out; transition:all 0.4s ease-out;}
/* --------------------------- SCROLL ------------------------------ */
::-webkit-scrollbar-thumb:vertical {background-color: {color:Scrollbar}; height: 0px;} ::-webkit-scrollbar {height:0px; width:10px; background-color:{color:Scrollbar Background};} .tumblrAutoPager_page_info, .tumblrAutoPager_page_separator {display:none;}
/* ------------------------- SMT TOOLTIP --------------------------- */
#s-m-t-tooltip {position:absolute; background-color:{color:Link}; padding:5px; z-index:99999999999999; display:inline-block; text-transform:uppercase; font-size:{select:Detail Font Size}; color:rgb({select:Post Color}); letter-spacing:1px; margin:3px; -webkit-transition:all 0s ease-out; -moz-transition:all 0s ease-out; transition:all 0s ease-out;}
/* ----------------------------- BODY ------------------------------ */
body {{block:ifnotGradiantBackground}background-color:{color:Theme Background Color};
background-image: url('{image:Theme Background}');
background-position:{select:Background Position};
{block:ifBackgroundStretch}-webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;{/block:ifBackgroundStretch}
{/block:ifnotGradiantBackground}
{block:ifGradiantBackground}
background:-webkit-linear-gradient({color:Background Gradiant 1}, {color:Background Gradiant 2}, {color:Background Gradiant 3}, {color:Background Gradiant 4}); background: -o-linear-gradient({color:Background Gradiant 1}, {color:Background Gradiant 2}, {color:Background Gradiant 3}, {color:Background Gradiant 4}); background: -moz-linear-gradient({color:Background Gradiant 1}, {color:Background Gradiant 2}, {color:Background Gradiant 3}, {color:Background Gradiant 4}); background: linear-gradient({color:Background Gradiant 1}, {color:Background Gradiant 2}, {color:Background Gradiant 3}, {color:Background Gradiant 4});
{/block:ifGradiantBackground} color:{color:Text}; font-family:"{select:Custom Body Font}"; {block:ifUseDefaultBodyFont}font-family:{font:Default Body Font};{/block:ifUseDefaultBodyFont} background-attachment:fixed; font-size:{select:Body Font Size}; margin:0;}
a {text-decoration:none; color:{color:Link}; -webkit-transition: all 0.5s ease-in-out;-moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;}
a:hover {text-decoration:none; color:{color:Link Hover}; -webkit-transition: all 0.5s ease-in-out;-moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;}
b, strong {color:{color:Bold};}
i, em {color:{color:Italic};}
#credits {position:fixed; bottom:20px; left:-10px; width:20px; font-family:'Exo 2'!important; z-index:999;}
.credit {padding:10px 10px; position:absolute; left:10px; width:0px;
overflow:hidden; border-top:1px {color:Bottom Link Text} solid; border-right:1px {color:Bottom Link Text} solid; background-color:{color:Bottom Left Color}; height:0px; -moz-border-radius:0px 5px 0px 0px; -webkit-border-radius:0px 5px 0px 0px; border-radius:0px 5px 0px 0px; opacity:0.85;}
.credit span {display:block; opacity:0; position:relative; top:0px; left:0px; width:85px; padding:3px 7px; top:-8px; left:-11px; text-transform:uppercase; font-family:'Exo 2'; font-size:8px; background-color:{color:Bottom Left Color}; color:{color:Bottom Link Text}; letter-spacing:1px;}
.credit .creditz {font-size:15px; position: absolute; top:1px; height:100%; left:4px; width:20px; color:{color:Bottom Link Text};}
#credits:hover .credit{width:56px;}
#credits:hover .credit span{opacity:1;}
#credits:hover .creditz {left:-15px;}
.credit, #credits:hover .credit, .credit span, #credits:hover .credit span, .credit .creditz, #credits:hover .credit .creditz{-webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;}
/* ------------ BLOCKQUOTES (TOO MANY IF YOU ASK ME) -------------- */
blockquote {margin:10px 0px; display:block; position:relative; border:5px solid {color:Blockquote Background}; background-color:{color:Blockquote Background}; padding:0px 10px;} blockquote img {max-width:100%!important;} blockquote:before {content:''; position:absolute; height:100%; padding:5px 0px; top:-5px; left:-5px;}
blockquote blockquote, blockquote blockquote blockquote blockquote, blockquote blockquote blockquote blockquote blockquote blockquote, blockquote blockquote blockquote blockquote blockquote blockquote blockquote blockquote {margin:10px; background-color:rgb({select:Post Color})!important; border:5px solid rgb({select:Post Color});}
blockquote blockquote blockquote, blockquote blockquote blockquote blockquote blockquote, blockquote blockquote blockquote blockquote blockquote blockquote blockquote, blockquote blockquote blockquote blockquote blockquote blockquote blockquote blockquote blockquote {margin:10px; background-color:{color:Blockquote Background}!important; border:5px solid {color:Blockquote Background};}
/* ------------------------- BACKGROUNDS --------------------------- */
#left_background {position:fixed; left:0px; top:0px; width:40%; height:70%; background-color:{color:Top Left Background}; opacity:{select:Top Left Transparency}; min-width:400px;}
#corner_background {position:fixed; left:0px; top:70%; width:40%; height:30%; background-color:{color:Bottom Left Background}; opacity:{select:Bottom Left Transparency}; min-width:400px;}
#right_background {position:fixed; left:50%; top:0px; width:60%; height:100%; background-color:{color:Right Background}; opacity:{select:Right Transparency};}
/* -------------------------- LEFT SIDE ---------------------------- */
#left {position:fixed; top:15%; height:40%; text-align:center; width:400px; left:20%; margin-left:-200px;}
#left_title {font-size:{select:Header Title Size}; color:{color:Header Title}; font-family:{select:Custom Title Font};{block:ifUseDefaultTitleFont}font-family:{font:Default Title Font};{/block:ifUseDefaultTitleFont}}
#left_description {{block:ifDescriptionBackground}background-color:{color:Description Background}; padding:20px; {/block:ifDescriptionBackground} color:{color:Description Text}; padding:10px 20px; margin:20px 20px 0px 20px; font-size:{select:Body Font Size}; line-height:140%; text-align:justify;}
#left_description .side_image {float:left; margin-right:6px;}
#left_description .side_image img {width:60px; height:60px; border:3px {color:Description Text} solid;}
#left_subtitle {font-size:{select:Header Subtitle Size}; color:{color:Header Subtitle}; margin-top:20px; font-family:{select:Custom Title Font};{block:ifUseDefaultTitleFont}font-family:{font:Default Title Font};{/block:ifUseDefaultTitleFont}}
/* ------------------------- BOTTOM LINKS -------------------------- */
#bottom {position:fixed; bottom:15%; margin-bottom:-40px; {block:ifThreeLinesOfLinks}margin-bottom:-80px;{/block:ifThreeLinesOfLinks}width:400px; left:20%; margin-left:-200px; text-align:center;} #bottom a {display:inline-block; background-color:{color:Bottom Link Background}; color:{color:Bottom Link Text}; padding:8px 12px; text-transform:uppercase; letter-spacing:2px; word-spacing:1px; margin:6px 5px; font-family:'{select:Custom Body Font}';{block:ifUseDefaultBodyFont}font-family:{font:Default Body Font};{/block:ifUseDefaultBodyFont} font-size:{select:Detail Font Size}; line-height:17px!important;} #bottom a:hover {background-color:{color:Bottom Link Background Hover}; color:{color:Bottom Link Text Hover};}
/* ---------------------------- POSTS ------------------------------ */
#posts {position:fixed; right:0px; top:0px; height:100%; width:60%; overflow-y:scroll; color:{color:Text};}
.entry {background-color:rgba({select:Post Color}, {select:Post Transparency}); padding:20px; position:relative; {block:if400pxPosts}width:400px;{/block:if400pxPosts} {block:if500pxPosts}width:500px;{/block:if500pxPosts} margin:120px auto;}
.entry h1 {font-size:16px; color:{color:Post Title}; font-weight:normal; text-transform:none; text-align:left; line-height:24px; margin:0px; font-family:{select:Custom Title Font};{block:ifUseDefaultTitleFont}font-family:{font:Default Title Font};{/block:ifUseDefaultTitleFont}}
.entry img {{block:if400pxPosts}max-width:400px;{/block:if400pxPosts}
{block:if500pxPosts}max-width:500px;{/block:if500pxPosts}}
.entry_body {margin:0px 5px;}
/* ---------------------------- CHAT ------------------------------- */
.chat .line {padding:4px; font-size:{select:Body Font Size};} .label {color:{color:Bold}; font-size:{select:Detail Font Size}; text-transform:uppercase; padding-right:2px; letter-spacing:1px;}
/* --------------------------- QUOTE ------------------------------- */
.short_quote, .medium_quote, .long_quote {font-family:'{select:Custom Title Font}';{block:ifUseDefaultTitleFont}font-family:{font:Default Title Font};{/block:ifUseDefaultTitleFont} height:auto; margin-top:35px; padding:10px; text-align:center;} .short_quote {font-size:22px; line-height:26px;} .medium_quote {font-size:20px; line-height:24px;} .long_quote {font-size:18px; line-height:22px;} .source {text-align:center; font-style:none; text-transform:uppercase; font-size:9px; {block:ifLargerText}font-size:10px;{/block:ifLargerText}letter-spacing:1px; margin-top:15px; margin-bottom:5px; font-family:'{select:Custom Body Font}';{block:ifUseDefaultBodyFont}font-family:{font:Default Body Font};{/block:ifUseDefaultBodyFont}}
#quotesymbol {position:absolute; font-size:72px; margin-top:-10px; {block:if400pxPosts}margin-left:188px;{/block:if400pxPosts} {block:if500pxPosts}margin-left:238px;{/block:if500pxPosts} font-family:arial; color:{color:Link}; opacity:0.8;} #quoteline {position:absolute; width:50px; background:transparent; {block:if400pxPosts}border-left:175px {color:Quote Line} solid; border-right:175px {color:Quote Line} solid;{/block:if400pxPosts} {block:if500pxPosts}border-left:225px {color:Quote Line} solid; border-right:225px {color:Quote Line} solid;{/block:if500pxPosts} height:5px; margin-top:9px; margin-left:0px;}
/* --------------------------- LINKS ------------------------------- */
#linktitle {{block:if400pxPosts}width:400px;{/block:if400pxPosts}
{block:if500pxPosts}width:500px;{/block:if500pxPosts}}
.linktexttitle {font-family:'{select:Custom Title Font}';{block:ifUseDefaultTitleFont}font-family:{font:Default Title Font};{/block:ifUseDefaultTitleFont} text-transform:uppercase; font-size:20px; letter-spacing:-1px; word-spacing:1px; line-height:28px; text-align:left; -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; transition: all 1s ease-in-out; background-color:{color:Link}; text-align:center; padding:5px 3px 3px 3px; opacity:0.8; padding:5px 0px;} .linktexttitle:hover {opacity:1; -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; transition: all 1s ease-in-out;} .linktexttitle a {color:rgb({select:Post Color});} .linkdescription {padding:0px; margin:0px; text-align:left;}
/* --------------------------- AUDIO ------------------------------- */
#audentryprob {display:block; position:relative; min-height:120px; text-align:left;} .audentry {{block:if400pxPosts}width:390px;{/block:if400pxPosts}
{block:if500pxPosts}width:490px;{/block:if500pxPosts} position:relative; padding:5px; min-height:120px;}
.audioplayercircle {position:absolute; z-index:3; background:#fff; -webkit-border-radius:50px; -moz-border-radius:50px; top:35px; left:35px; opacity:0.5; -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; transition: all 1s ease-in-out;}
.audioplayercircle:hover {opacity:1; -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; transition: all 1s ease-in-out;}
.audioplayer {width:20px; height:30px; overflow:hidden; margin:17px 24px 13px 16px;}
.audiodata, .audiodata2, .audiodata3, .audiodata4 {text-transform:none; height:16px; padding:8px 0px 0px 0px!important; vertical-align:middle; font-size:{select:Body Font Size};}
.audiodata b, .audiodata2 b, .audiodata3 b, .audiodata4 b {text-transform:uppercase; letter-spacing:1px; font-weight:normal; font-size:{select:Detail Font Size};}
.audiodata4 {padding:10px 0px 13px 0px!important;}
/* ------------------------- ASK POSTS ----------------------------- */
#question {{block:if400pxPosts}width:370px;{/block:if400pxPosts}
{block:if500pxPosts}width:470px;{/block:if500pxPosts} padding:10px 15px; background-color: {color:Question Background}; color:{color:Question Text}; -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; -webkit-box-shadow:0px 7px 6px -5px {color:Question Shadow}; -moz-box-shadow:0px 7px 6px -5px {color:Question Shadow}; box-shadow:0px 7px 6px -5px {color:Question Shadow}}
#asker {text-align:left; vertical-align:bottom; margin-top:2px; margin-left:20px; font-size:9px; letter-spacing:1px; font-family:'Exo 2'; text-transform:uppercase; line-height:18px;}
#asker a {color:{color:Text}} #asker a:hover {color:{color:Link Hover}}
#asker img {float:left; max-height:16px; margin-left: 26px; margin-right: 5px; -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; -webkit-filter: grayscale(1); opacity:0.9;}
#arrow {width: 13px; height: 7px; font-size:32px; margin-top:-15px; margin-left:18px; font-family:'trebuchet ms'; color:{color:Question Background}}
/* --------------------------- ENDING ------------------------------ */
#ending {{block:if400pxPosts}width:440px;{/block:if400pxPosts}
{block:if500pxPosts}width:540px;{/block:if500pxPosts}overflow:hidden; margin:15px 0px -20px -20px; height:28px; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; font-size:8px!important; text-transform:uppercase; font-family:'Exo 2'!important; letter-spacing:1px; background-color:{color:Ending Background}; color:{color:Ending Text}!important;}
#ending a {color:{color:Ending Text};}
#ending a:hover, #ending a .fa:hover {color:{color:Ending Link Hover}!important;}
#ending b {color:{color:Ending Text}!important;}
#ending .fa {color:{color:Ending Text}; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;} .entries:hover #ending .fa {color:{color:Ending Link Hover}; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;}
.lnotes {position:absolute; margin-top:4px; margin-left:-6px; text-align:left;} .fa-1a {font-size:1.1em;}
.like_button {position:relative; display:inline-block; cursor:pointer!important; overflow:hidden;}
.like_button iframe {position:absolute; top:0; left:0; width:100%; height:100%; opacity:0;}
.like_button::before {content:'❤'; text-transform:lowercase!important; position:relative; font-size:9px;}
.like_button:hover::before, .like_button.liked::before {color:#ff0000; cursor:pointer!important;}
.rnotes {margin-left:0px; position:relative; padding-top:5px; padding-bottom:6px; padding-left:15px; margin-top:0px; background-color:{color:Ending Background}; padding-right:25px; text-align:right; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;}
.rnotes a {text-decoration:none; padding-left:3px;}
.rnotes a:hover{color:{color:Ending Link Hover};}
.endsource, .endnotes, .endtime {position:relative; padding-right:15px; padding-left:10px; {block:if400pxPosts}width:420px;{/block:if400pxPosts}
{block:if500pxPosts}width:520px;{/block:if500pxPosts} text-align:left; overflow:hidden; line-height:16px; height:20px; margin-bottom:-6px; padding-bottom:6px; padding-top:17px; overflow:hidden; background-color:{color:Ending Background};;}
.endsource, .endnotes, .endtime, .endsource:hover, .endnotes:hover, .endtime:hover, .like_button::before, .like_button:hover::before, .like_button.liked::before {-webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;}
{block:if400pxPosts}
.endsource {margin-left:352px; margin-top:-16px;}
.endsource:hover {margin-left:273px;}
.endnotes {margin-left:371px; margin-top:-43px;}
.endnotes:hover {margin-left:300px;}
.endtime {margin-left:392px; margin-top:-43px;}
.endtime:hover {margin-left:280px;}
{/block:if400pxPosts}
{block:if500pxPosts}
.endsource {margin-left:452px; margin-top:-16px;}
.endsource:hover {margin-left:373px;}
.endnotes {margin-left:471px; margin-top:-43px;}
.endnotes:hover {margin-left:400px;}
.endtime {margin-left:492px; margin-top:-43px;}
.endtime:hover {margin-left:380px;}
{/block:if500pxPosts}
/* ---------------------- ENDING (N0-SLIDE) ------------------------ */
#noslide {font-size:{select:Detail Font Size}; font-family:'{select:Custom Body Font}';{block:ifUseDefaultBodyFont}font-family:{font:Default Body Font};{/block:ifUseDefaultBodyFont} letter-spacing:1px; text-transform:uppercase; margin-top:-6px; margin-right:5px; position:relative;}
#noslide_bar {margin:8px 0px 0px 5px;
{block:if400pxPosts}width:400px;{/block:if400pxPosts}
{block:if500pxPosts}width:500px;{/block:if500pxPosts} height:1px; background-color:{color:Ending Text}; opacity:0.5; position:relative;}
#post_tags {height:auto; line-height:18px; margin:18px -10px -20px -20px; {block:if400pxPosts}width:420px;{/block:if400pxPosts}
{block:if500pxPosts}width:520px;{/block:if500pxPosts} letter-spacing:1px; text-transform:uppercase; font-size:{select:Detail Font Size}; font-family:'{select:Custom Body Font}';{block:ifUseDefaultBodyFont}font-family:{font:Default Body Font};{/block:ifUseDefaultBodyFont}; background-color:{color:Ending Background}; padding:0px 10px 5px 10px;}
#post_tags a {font-size:{select:Detail Font Size}; font-family:'{select:Custom Body Font}';{block:ifUseDefaultBodyFont}font-family:{font:Default Body Font};{/block:ifUseDefaultBodyFont}; color:{color:Ending Text}; margin:0px 10px 5px 0px;}
#post_tags a:hover {color:{color:Ending Link Hover};}
/* -------------------------- PERMALINK ---------------------------- */
.permalink {position:relative!important; float:none; line-height:18px; letter-spacing:1px; color:{color:Title Inside}; text-transform:uppercase; text-align:center; width:500px; padding:20px; margin:-20px;}
.permalink blockquote {padding:4px; padding-left:14px; margin-left:3px;}
ol.notes {padding:0px; list-style-type:none; background:transparent; letter-spacing:1px; padding-top:10px; margin-top:10px; margin-bottom:0px;}
ol.notes li.note {padding: 1px; text-align: left;}
.notes img {border-radius:8px; opacity:0.8; vertical-align:middle; width:10px; position:relative; margin-top:-2px; margin-right:5px;}
.post_tags {width:420px; letter-spacing:1px; margin-top:15px;}
.post_tags a {display:inline-block; margin:3px; background-color:{color:Link}; color:rgb({select:Post Color}); padding:4px 6px 3px 6px; opacity:0.7; word-spacing:break-word;}
.post_tags a:hover {opacity:1; border-bottom:none; color:{color:Posts};}
/* ------------------------- PAGINATION ---------------------------- */
#pages {position:relative; text-align:center; margin:20px 0px -40px 0px;}
#pages a {background-color:rgba({select:Sidebar Color}, {select:Sidebar Transparency}); display:inline-block; padding:4px 5px 5px 5px; font-family:trebuchet ms; font-size:18px; line-height:14px; margin:0px 3px; color:{color:Sidebar Text}; opacity:0.8;}
#pages a:hover {opacity:1;}
/* ---------------------- TUMBLR CONTROLS -------------------------- */
iframe#tumblr_controls {-webkit-transition: opacity 0.7s linear; opacity: 0.7; -webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; transition: all 0.8s ease-out;}
iframe#tumblr_controls:hover {-webkit-transition: opacity 0.7s linear; opacity: 1; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; transition: all 0.4s ease-out;}
/* ------------------------ CUSTOM CSS ----------------------------- */
{CustomCSS}
</style>
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.3";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<a href="https://zeldathemes.tumblr.com/"><div id="credits">
<div class="credit"><div class="creditz">ℤ</div>
<span>zeldathemes</span></div></div></div></a>
<div id="left_background"></div>
<div id="corner_background"></div>
<div id="right_background"></div>
<div id="left">
<div id="left_title">{text:Header Title}</div>
<div id="left_description">{block:ifIconImage}<div class="side_image"><img src="{image:Icon}"></div>{/block:ifIconImage}{Description}</div>
<div id="left_subtitle">{text:Header Subtitle}</div>
</div>
<div id="bottom">
<a href="/">{text:Home Link Name}</a>
<a href="/ask">{text:Ask Link Name}</a>
{block:ifShowLink1}
<a href="{text:Link 1 URL}">{text:Link 1 Name}</a>
{/block:ifShowLink1}
{block:ifShowLink2}
<a href="{text:Link 2 URL}">{text:Link 2 Name}</a>
{/block:ifShowLink2}
{block:ifShowLink3}
<a href="{text:Link 3 URL}">{text:Link 3 Name}</a>
{/block:ifShowLink3}
{block:ifShowLink4}
<a href="{text:Link 4 URL}">{text:Link 4 Name}</a>
{/block:ifShowLink4}
{block:ifShowLink5}
<a href="{text:Link 5 URL}">{text:Link 5 Name}</a>
{/block:ifShowLink5}
{block:ifShowLink6}
<a href="{text:Link 6 URL}">{text:Link 6 Name}</a>
{/block:ifShowLink6}
{block:Pagination}
{block:PreviousPage}
<a href="{PreviousPage}"><span style="font-size:16px!important;line-height:11px!important;">←</span></a>
{/block:PreviousPage}
{block:NextPage}
<a href="{NextPage}"><span style="font-size:16px!important; line-height:11px!important;">→</span></a>
{/block:NextPage}
{/block:Pagination}
</div>
<div id="posts">
{block:Posts}
{block:ContentSource}
<!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
{/block:SourceLogo}
{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
{/block:ContentSource}
<div class="entry">
{block:ContentSource}
<!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
{/block:SourceLogo}
{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
{/block:ContentSource}
{block:Text}
{block:Title}<h1>{Title}</h1>{/block:Title}
<div style="margin-bottom:20px;">{Body}</div>
{/block:Text}
{block:Photo}
{block:if400pxPosts}<img src="{PhotoURL-400}" width="400px" alt="{PhotoAlt}">{/block:if400pxPosts}
{block:if500pxPosts}<img src="{PhotoURL-500}" width="500px" alt="{PhotoAlt}">{/block:if500pxPosts}
{block:Caption}{Caption}{/block:Caption}
{/block:Photo}
{block:Photoset}
{block:if400pxPosts}{Photoset-400}{/block:if400pxPosts}
{block:if500pxPosts}{Photoset-500}{/block:if500pxPosts}
{block:Caption}{Caption}{/block:Caption}
{/block:Photoset}
{block:Quote}<div id="quoteline"></div><div id="quotecircle"></div><div id="quotesymbol">“</div><div class="{Length}_quote">{Quote}{block:Source}<div class="source">{Source}</div>{/block:Source}</div>{/block:Quote}
{block:Link}
<div id="linktitle"><div class="linktexttitle"><a href="{URL}" class="linkpost" target="_blank">{Name}</a></div></div>
{block:Description}
<div class="linkdescription">{Description}</div>
{/block:Description}
{/block:Link}
{block:Chat}
{block:Title}<h1>{Title}</h1>{/block:Title}
<div class="chat">
{block:Lines}<div class="chat"><div class="line {Alt}">
<div class="{Alt} user_{UserNumber}">
{block:Label}
<span class="label">{Label}</span>
{/block:Label}
{Line}</div>
</div></div>
{/block:Lines}
</div>
{/block:Chat}
{block:Audio}<div id="audentryprob"><div class="audentry"><img src="https://static.tumblr.com/2lqtwbf/hLRlz1vgy/2.png" alt="default album art" width="120" height="120" style="position:absolute; vertical-align:middle;" />{block:AlbumArt}<img width="120" height="120" src="{AlbumArtURL}" style="position:absolute;" />{/block:AlbumArt}<div class="audioplayercircle"><div class="audioplayer">{AudioPlayerWhite}</div></div><div class="something"><table style="float:right;"
{block:if400pxPosts}width="260px"{/block:if400pxPosts}
{block:if500pxPosts}width="360px"{/block:if500pxPosts} cellspacing="1px" cellpadding="0">{block:TrackName}<tr><td class="audiodata"><b>Song: </b>{TrackName}</td></tr>{/block:TrackName}{block:Artist}<tr><td class="audiodata2"><b>Artist: </b> {Artist}</td></tr>{/block:Artist}{block:Album}<tr><td class="audiodata3"><b>Album: </b>{Album}</td></tr>{/block:Album}<tr><td class="audiodata4"><b>Plays: </b>{FormattedPlayCount}</td></tr>{block:ExternalAudio}<tr><td class="audiodata"><a href="{ExternalAudioURL}" target="_blank">Source</a></td></tr>{/block:ExternalAudio}</table></div></div>{block:Caption}<tr><td class="aucap">{Caption}</td></tr>{/block:Caption}</div>{/block:Audio}
{block:Video}
{block:if400pxPosts}{Video-400}{/block:if400pxPosts}
{block:if500pxPosts}{Video-500}{/block:if500pxPosts}
{block:Caption}{Caption}{/block:Caption}
{/block:Video}
{block:Answer}
<div id="question">{Question}</div>
<div id="arrow">◥</div><br>
<div id="asker"><img src="{AskerPortraitURL-24}">{Asker}</div>
{Answer}
{/block:answer}
{block:Date}
<div id="ending">
<div class="rnotes">
{block:ifSlidingPostInfo}
<div class="lnotes"><a href="{ReblogURL}" title="reblog this post"><i class="fa fa-exchange fa-1a"></i></a><div style="margin-top:-11px; margin-left:22px;"><span title="like this post">{LikeButton color="grey" size="10"}</span></div></div>
<div class="endsource">{block:RebloggedFrom}<td><span style="padding-right:8px;"><b>I.</b></span></td><a href="{ReblogParentURL}" title="{ReblogParentName}" target="_blank">VIA</a><span style="letter-spacing:5px;"> |</span><a href="{ReblogRootURL}" title="{ReblogRootName}" target="_blank">SOURCE</a>{/block:RebloggedFrom}</div>
<div class="endnotes"><td><span style="padding-right:8px;"><b>II.</b></span></td><a href="{Permalink}">{NoteCountWithLabel}</a></div>
<div class="endtime"><td><span style="padding-right:8px;"><b>III.</b></span></td><a href="{Permalink}">{12Hour}:{Minutes} {CapitalAmPm}<span style="padding:0px 5px;">|</span>{ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a></div>
{/block:ifSlidingPostInfo}
{block:ifNotSlidingPostInfo}
<div id="noslide_bar"></div>
<div id="noslide"><span style="background-color:{color:Ending Background}; padding:0px 7px 0px 5px;">
{block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}" target="_blank">VIA</a> - <a href="{ReblogRootURL}" title="{ReblogRootName}" target="_blank">SOURCE</a><span style="padding:0px 0px 0px 5px;"> // </span>{/block:RebloggedFrom}<a href="{Permalink}">{NoteCount} notes</a><span style="padding:0px 0px 0px 5px;"> // </span><a href="{Permalink}">{12Hour}:{Minutes} {CapitalAmPm}</a><span style="padding:0px 0px 0px 5px;"> // </span><a href="{ReblogURL}">REBLOG</a></div></span>
{block:ifNotSlidingPostInfo}
</div>
</div>
{block:IfShowTagsOnPosts}
{block:HasTags}
<div id="post_tags">
{block:Tags}<a href="{TagURL}" target="_blank">#{Tag}</a>{/block:Tags}
</div>
{/block:HasTags}
{/block:IfShowTagsOnPosts}
{/block:Date}</div>
{block:PermalinkPage}{block:Date}<div class="entry"><div class="permalink"><center>{block:HasTags}<div class="post_tags">{block:Tags}<a href="{TagURL}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}</center>{block:PostNotes}{PostNotes}{/block:PostNotes}</div></div>{/block:Date}{/block:PermalinkPage}
{/block:Posts}
</div>
<!-- Start of StatCounter Code for Default Guide -->
<!-- Start of StatCounter Code for Tumblr -->
<script type="text/javascript">
var sc_project=8017354;
var sc_invisible=0;
var sc_security="18ef12f2";
var scJsHost = (("https:" == document.location.protocol) ?
"https://secure." : "https://www.");
document.write("<sc"+"ript type='text/javascript' src='" +
scJsHost+
"statcounter.com/counter/counter.js'></"+"script>");
</script>
<noscript><div class="statcounter"><a title="tumblr visitor
stats" href="https://statcounter.com/tumblr/"
target="_blank"><img class="statcounter"
src="https://c.statcounter.com/8017354/0/18ef12f2/0/"
alt="tumblr visitor stats"></a></div></noscript>
<!-- End of StatCounter Code for Tumblr -->
</body>
</html>
0 notes