Tumblr Theme
Tumblr Theme
Tumblr Theme
0 Transitional//EN"
"https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title>{Title}</title>
<link rel="shortcut icon" href="{Favicon}" />
<link rel="alternate" type="application/rss+xml" href="{RSS}" />
<link rel="stylesheet" type="text/css"
href="https://static.tumblr.com/imovwvl/YEhlhfb7u/museo.css" />
<meta https-equiv="Content-Type" content="text/javascript; charset=utf-8" />
<meta name="description" content="{MetaDescription}" />
<!--
THEME BY ELLETRICITY
Theme Name: Minimo
Theme URI: https://www.tumblr.com/theme/27838
Author: Gabrielle Wee
Credit: https://elletricity.com
Music Overlays: https://komodomedia.com
-->
<script type="text/javascript">
var rev = "fwd";
function titlebar(val)
{
var msg = "THIS IS MY DESIGN";
var res = " ";
var speed = 100;
var pos = val;
msg = "THIS IS MY DESIGN";
var le = msg.length;
if(rev == "fwd"){
if(pos < le){
pos = pos+1;
scroll = msg.substr(0,pos);
document.title = scroll;
timer = window.setTimeout("titlebar("+pos+")",speed);}
else{
rev = "bwd";
timer = window.setTimeout("titlebar("+pos+")",speed);}}
else{
if(pos > 0){
pos = pos-1;
var ale = le-pos;
scrol = msg.substr(ale,le);
document.title = scrol;
timer = window.setTimeout("titlebar("+pos+")",speed);}
else{
rev = "fwd";
timer = window.setTimeout("titlebar("+pos+")",speed);
}}}
titlebar(0);
</script>
<script type="text/javascript"
src="https://static.tumblr.com/iuggpng/bGqm4yfv9/jquery-1.7.2.js"></script>
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
//
$('a.poplight[href^=#]').click(function() {
var popID = $(this).attr('rel'); //Get Popup Name
var popURL = $(this).attr('href'); //Get Popup href to define size
var query= popURL.split('?');
var dim= query[1].split('&');
var popWidth = dim[0].split('=')[1]; //Gets the first query string value
$('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('');
var popMargTop = ($('#' + popID).height() + 80) / 2;
var popMargLeft = ($('#' + popID).width() + 80) / 2;
//Apply Margin to Popup
$('#' + popID).css({
'margin-top' : -popMargTop,
'margin-left' : -popMargLeft
});
$('body').append('<div id="fade"></div>');
$('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer
- .css({'filter' : 'alpha(opacity=80)'})
return false;
});
$('a.close, #fade').live('click', function() {
$('#fade , .popup_block').fadeOut(function() {
$('#fade, a.close').remove(); //fade them both out
});
return false;
});
});
</script>
<style type="text/css">
html * {
margin: 0;
padding: 0;
}
body {
background: {color:Background};
font: {text:Text Size}px {font:Text};
color: {color:Text};
word-wrap: break-word;
}
a:hover {
color: {color:Link Hover};
-webkit-transition: color .5s linear;
-moz-transition: color .5s linear;
-o-transition: color .5s linear;
transition: color .5s linear;
}
blockquote {
margin: 5px 0 0 11px;
padding-left: 10px;
border-left: 1px solid;
}
p { padding-top: 5px; }
blockquote p:first-child, .body p:first-child { padding: 0; }
ol, ul { padding: 5px 0 0 25px; }
ul { list-style-type: square; }
ul ul, ul ol, ol ol, ol ul { padding-bottom: 5px; }
pre {
padding: 5px;
word-wrap: break-word;
background: {color:Chat Line};
max-height: 300px;
overflow: auto;
}
#container {
margin: auto;
padding: 0px;
}
#content {
margin: 25px auto;
padding: 0;
width: 500px;
}
h1 a {
font: normal {text:Header Size}px {font:Header and Titles};
color: {color:Header}!important;
{block:ifLowercaseHeaders}text-transform:
lowercase;{/block:ifLowercaseHeaders}
}
h3, h3 a {
font: normal {text:Answer Size}px {font:Header and Titles};
color: {color:Answer};
{block:ifLowercaseHeaders}text-transform:
lowercase;{/block:ifLowercaseHeaders}
}
{block:ifZoom}.zoom, .zoom:hover {
font: 11px Helvetica, Arial, sans-serif;
position: relative;
z-index: 1;
visibility: hidden;
padding: 2px 4px;
color: #fff!important;
text-decoration: none;
background: #000!important;
background: rgba(0, 0, 0, 0.5)!important;
}
.photo img {
position: relative;
margin-top: -15px;
z-index: 0;
}
#nav {
position: fixed;
margin-left: -250px;
width: 150px;
text-align: right;
opacity: 1;
-webkit-transition: opacity 1s linear;
-moz-transition: opacity 1s linear;
-o-transition: opacity 1s linear;
transition: opacity 1s linear;
}
#nav:hover {
opacity: 1;
-webkit-transition: opacity .5s linear;
-moz-transition: opacity .5s linear;
-o-transition: opacity .5s linear;
transition: opacity .5s linear;
}
#nav a {
display: block;
font: {text:Nav Size}px {font:Nav};
{block:ifUppercaseNav}text-transform: uppercase;{/block:ifUppercaseNav}
{block:ifSpacedNav}letter-spacing: 1px;{/block:ifSpacedNav}
}
{CustomCSS}
#popup
{right:0px; bottom:-3px; position: fixed; }
#fade {
display: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 9999;
background:#000;
opacity: .75;
}
.popup_block{
display: none;
background:transparent;
padding: 20px;
float: left;
position: fixed;
top: 50%;
left: 50%;
z-index: 99999;
font-family:helvetica;
font-size:10px;
color:#fff;
}
.popup_block a {
color:#eee;
}
*html #fade {
position: absolute;
}
*html .popup_block {
position: absolute;
}
.showhide_element {
display: none;
}
</style>
</head>
<body>
</div>
<div id="container">
<div id="content">
<div id="description">
<h1><a href="/">{Title}</a></h1>
<div id="nav">
<a href="https://dailycamart.tumblr.com/tagged/Beatles"><img
src="https://fc03.deviantart.net/fs71/f/2014/096/c/b/1_by_thehobosapien-
d7d9rpr.png"
onmouseover="this.src='https://fc04.deviantart.net/fs71/f/2014/096/1/3/1a_by_thehob
osapien-d7d9rp8.png'"
onmouseout="this.src='https://fc03.deviantart.net/fs71/f/2014/096/c/b/
1_by_thehobosapien-d7d9rpr.png'"/></a>
<a href="https://dailycamart.tumblr.com/tagged/Hannibal"><img
src="https://fc07.deviantart.net/fs71/f/2014/096/f/d/2_by_thehobosapien-
d7d9rsl.png"
onmouseover="this.src='https://fc00.deviantart.net/fs71/f/2014/096/0/0/2a_by_thehob
osapien-d7d9rsa.png'"
onmouseout="this.src='https://fc07.deviantart.net/fs71/f/2014/096/f/d/
2_by_thehobosapien-d7d9rsl.png'"/></a>
<a href="https://dailycamart.tumblr.com/tagged/digiart"><img
src="https://fc02.deviantart.net/fs70/f/2014/096/6/1/3_by_thehobosapien-
d7d9rrv.png" onmouseover="this.src='https://fc09.deviantart.net/fs71/f/2014/096/a/
3/3a_by_thehobosapien-d7d9rra.png'"
onmouseout="this.src='https://fc02.deviantart.net/fs70/f/2014/096/6/1/3_by_thehobos
apien-d7d9rrv.png'"/></a>
<a href="https://dailycamart.tumblr.com/tagged/pencil"><img
src="https://fc08.deviantart.net/fs70/f/2014/096/b/f/4_by_thehobosapien-
d7ddpui.png" onmouseover="this.src='https://fc06.deviantart.net/fs71/f/2014/096/a/
c/4a_by_thehobosapien-d7ddpu9.png'"
onmouseout="this.src='https://fc08.deviantart.net/fs70/f/2014/096/b/f/
4_by_thehobosapien-d7ddpui.png'"/></a>
<a href="https://dailycamart.tumblr.com/tagged/pixel"><img
src="https://fc05.deviantart.net/fs70/f/2014/096/2/0/5_by_thehobosapien-
d7d9rq5.png" onmouseover="this.src='https://fc02.deviantart.net/fs71/f/2014/096/e/
4/5a_by_thehobosapien-d7d9rpy.png'"
onmouseout="this.src='https://fc05.deviantart.net/fs70/f/2014/096/2/0/5_by_thehobos
apien-d7d9rq5.png'"/></a>
</br>
<a href="/">Home</a>
<a href="/archive">Archive</a>
{block:AskEnabled}<a href="/ask">Message</a>{/block:AskEnabled}
{block:SubmissionsEnabled}<a
href="/submit">Submit</a>{/block:SubmissionsEnabled}
{block:HasPages}
<div class="ten"></div>
{block:Pages}<a href="{URL}">{Label}</a>{/block:Pages}
{/block:HasPages}
{block:Pagination}
<div class="ten"></div>
{block:PreviousPage}
<a href="{PreviousPage}">Prev</a>
{/block:PreviousPage}
{block:NextPage}
<a href="{NextPage}">Next</a>
{/block:NextPage}
{/block:Pagination}
{block:DayPagination}
<div class="ten"></div>
{block:PreviousDayPage}
<a href="{PreviousDayPage}">Prev</a>
{/block:PreviousDayPage}
{block:NextDayPage}
<a href="{NextDayPage}">Next</a>
{/block:NextDayPage}
{/block:DayPagination}
{block:PermalinkPagination}
<div class="ten"></div>
{block:PreviousPost}
<a href="{PreviousPost}">Prev</a>
{/block:PreviousPost}
{block:NextPost}
<a href="{NextPost}">Next</a>
{/block:NextPost}
{/block:PermalinkPagination}
</div>
{block:Description}</br><center><a
href="https://dailycamart.tumblr.com/"><img
src="https://fc00.deviantart.net/fs70/f/2014/121/f/8/teeveebigass_by_thehobosapien-
d7gou1d.gif"></a>
</BR></BR><strong><a href="https://dailycamart.tumblr.com/tagged/fanart">fanart</a>
| <a href="https://dailycamart.tumblr.com/tagged/comic">comics</a> | <a
href="https://dailycamart.tumblr.com/tagged/digiart">illustrations</a> | <a
href="https://dailycamart.tumblr.com/tagged/doodle">doodles</a> | <a
href="https://dailycamart.tumblr.com/random">and other shit</a></strong></br></br>
hello. i'm an architect who likes to draw non-architecture related stuff.</br>well,
i don't usually have time to draw stuff. but when i do (ʘ‿ʘ✿) </br>that means i'm
procrastinating and avoiding something more important (◡‿◡✿)
</br>this blog is kinda dead & i'm too lazy to update everything
</br>but i post stuff whenever i can</br>
</br>
<marquee behavior="alternate" scrollamount="3"><a
href="https://dailycamart.tumblr.com/commissions"><strong><img
src="https://media.tumblr.com/tumblr_mc4645Doow1qdlkyg.gif">COMMISSIONS ARE OPEN
<img src="https://media.tumblr.com/tumblr_mc464820Pq1qdlkyg.gif">COMMISSIONS ARE
OPEN <img src="https://media.tumblr.com/tumblr_mc4645Doow1qdlkyg.gif"></marquee></
br>
</br><a href="https://twitter.com/dailycamart"><img
src="https://fc07.deviantart.net/fs70/f/2014/097/7/6/social_media_icons_ctrlaltdesi
gn_v2_19_by_thehobosapien-d7ddwa9.png"></a> <a
href="https://instagram.com/dailycam.art"><img
src="https://fc01.deviantart.net/fs71/f/2014/097/3/0/social_media_icons_ctrlaltdesi
gn_v2_29_by_thehobosapien-d7ddwa1.png"></a> <a
href="https://www.redbubble.com/people/camillesimbol/shop?asc=u"><img
src="https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/c482d402-d53c-4a00-
bc43-5eee68006dcc/d7de1z0-040a4e7a-1907-4d31-8be7-7ac6fee8fa9f.png?
token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQz
NzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTB
kMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcL2M0ODJkNDAyLWQ1M2MtNGEwMC1iYzQzLTVlZWU2ODAwNm
RjY1wvZDdkZTF6MC0wNDBhNGU3YS0xOTA3LTRkMzEtOGJlNy03YWM2ZmVlOGZhOWYucG5nIn1dXSwiYXVkI
jpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.nKC941u1KRJZrVdcl0xqpg2hPHZZ6-ef1Zc_zq-
1lfU"></a> </br></br>
<script type='text/javascript'
src='https://ko-fi.com/widgets/widget_2.js'></script><script
type='text/javascript'>kofiwidget2.init('Support Me on Ko-fi', '#29abe0',
'F1F2MK7M');kofiwidget2.draw();</script></br></br>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="U5BEZK8NTX77S">
<input type="image"
src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif" border="0"
name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif"
width="1" height="1">
</form></br>
<script language="JavaScript">
var ref = (''+document.referrer+'');
var w_h = window.screen.width + " x " + window.screen.height;
document.write('<script src="https://s1.freehostedscripts.net/ocounter.php?
site=ID4295947&e1=in the afternoon&e2=in the afternoon&r=' + ref + '&wh=' + w_h +
'"><\/script>');
</script>{/block:Description}
</div>
<div class="border"></div>
<div id="posts">
{block:Posts}
<div class="{block:Text}text {/block:Text}{block:Photoset}photoset
{/block:Photoset}{block:Quote}quote {/block:Quote}{block:Link}link {/block:Link}
{block:Chat}chat {/block:Chat}{block:Audio}audio {/block:Audio}{block:Video}video
{/block:Video}{block:Answer}answer {/block:Answer}post">
{block:Text}
{block:Title}<h2><a
href="{Permalink}">{Title}</a></h2>{/block:Title}
<div class="body">{Body}</div>
{/block:Text}
{block:Photo}
<div class="photo">
{block:ifZoom}
<a class="zoom" href="{PhotoURL-HighRes}">zoom</a><br />
{/block:ifZoom}
{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"
/>{LinkCloseTag}
</div>
{block:Caption}{Caption}{/block:Caption}
{/block:Photo}
{block:Photoset}
{Photoset-500}
{block:Caption}{Caption}{/block:Caption}
{/block:Photoset}
{block:Quote}
<h2>{Quote}</h2>
{block:Source}<div class="body">{Source}</div>{/block:Source}
{/block:Quote}
{block:Link}
<h2><a href="{URL}" {Target}>{Name} ›</a></h2>
{block:Description}<div class="body"></br><center><a
href="https://dailycamart.tumblr.com/"><img
src="https://fc00.deviantart.net/fs70/f/2014/121/f/8/teeveebigass_by_thehobosapien-
d7gou1d.gif"></a>
</BR></BR><strong>thehobosapien's SKETCH BLOG AND RETARD
RANCIDITIES.</strong></br></br>
hello. i'm an Architecture student who likes to draw non-architecture related
stuff.</br>my fandom is as inconsistent as my style, ranging from western TV series
to kdramas to pop punk bands, so expect that i'd be posting mostly some fanart of
them. and yes i also like The Beatles.
</br>
</br>
</br><a href="https://thehobosapien.deviantart.com/"><img
src="https://fc03.deviantart.net/fs71/f/2014/097/2/9/social_media_icons_ctrlaltdesi
gn_v2_14_by_thehobosapien-d7ddw9r.png"></a> <a
href="https://www.facebook.com/camsimbol"><img
src="https://fc07.deviantart.net/fs70/f/2014/097/3/d/social_media_icons_ctrlaltdesi
gn_v2_27_by_thehobosapien-d7ddwa5.png"></a> <a
href="https://twitter.com/ohyeahsimbol"><img
src="https://fc07.deviantart.net/fs70/f/2014/097/7/6/social_media_icons_ctrlaltdesi
gn_v2_19_by_thehobosapien-d7ddwa9.png"></a> <a
href="https://instagram.com/ohyeahsimbol"><img
src="https://fc01.deviantart.net/fs71/f/2014/097/3/0/social_media_icons_ctrlaltdesi
gn_v2_29_by_thehobosapien-d7ddwa1.png"></a> <a
href="https://8tracks.com/camsimbol"><img
src="https://fc01.deviantart.net/fs70/f/2014/117/9/7/50_px_8chichlet_black_transpar
ent_by_thehobosapien-d7g5fbi.png"></a> <a
href="https://www.redbubble.com/people/camsimbol"><img
src="https://fc07.deviantart.net/fs71/f/2014/097/f/5/icon_redbubble_by_thehobosapie
n-d7de1z0.png"></a> <a href="https://society6.com/camSimbol"><img
src="https://fc00.deviantart.net/fs70/f/2014/097/6/9/social_media_icons_ctrlaltdesi
gn_v2_35_by_thehobosapien-d7ddw9v.png"></a></br></br>
<script language="JavaScript">
var ref = (''+document.referrer+'');
var w_h = window.screen.width + " x " + window.screen.height;
document.write('<script src="https://s1.freehostedscripts.net/ocounter.php?
site=ID4295947&e1=in the afternoon&e2=in the afternoon&r=' + ref + '&wh=' + w_h +
'"><\/script>');
</script></div>{/block:Description}
{/block:Link}
{block:Chat}
{block:Title}<h2><a
href="{Permalink}">{Title}</a></h2>{/block:Title}
<ul>{block:Lines}
<li class="{Alt}
user_{UserNumber}">{block:Label}<strong>{Label}</strong>{/block:Label} {Line}</li>
{/block:Lines}</ul>
{/block:Chat}
{block:Audio}
<h2>{block:Artist}{Artist} - {/block:Artist}
{block:TrackName}{TrackName}{/block:TrackName}</h2>
{AudioPlayerGrey}
{block:Caption}{Caption}{/block:Caption}
{/block:Audio}
{block:Video}
{Video-500}
{block:Caption}{Caption}{/block:Caption}
{/block:Video}
{block:Answer}
<h3>{Asker} asked: {Question}</h3>
<div class="body">{Answer}</div>
{/block:Answer}
{block:Date}
<div class="date">
{block:HasTags}
{block:Tags}<a
href="{TagURL}">#{Tag}</a> {/block:Tags}
<br/>
{block:HasTags}
<a href="{Permalink}">{TimeAgo}</a> on <a
href="/day/{Year}/{MonthNumberWithZero}/{DayOfMonth}">{Month} {DayOfMonthWithZero},
{Year}</a> at <a
href="{Permalink}">{12HourWithZero}:{Minutes}{AmPm}</a>{block:ifNotDisqusShortname}
{block:NoteCount} with <a
href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}{/block:ifNotDisqusSho
rtname}
{block:ifDisqusShortname}<br/>
{block:NoteCount}<a
href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} & <a class="dsq-
comment-count"
href="{Permalink}#disqus_thread">Comments</a>{/block:ifDisqusShortname}
<br/>
{block:ContentSource} Via
{SourceLink}{/block:ContentSource}
</div>
{/block:Date}
</div>
<div class="border"></div>
{block:ifDisqusShortname}<script type="text/javascript">var disqus_url =
"{Permalink}"; var disqus_title
="{block:PostTitle}{PostTitle}{/block:PostTitle}";</script>{block:Permalink}<div
id="disqus_thread"></div>
<script type="text/javascript">
/**
* var disqus_identifier; [Optional but recommended: Define a unique identifier
(e.g. post id or slug) for this thread]
*/
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript';
dsq.async = true;
dsq.src = 'https://{text:Disqus Shortname}.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] ||
document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?
ref_noscript={text:Disqus Shortname}">comments powered by Disqus.</a></noscript>
{/block:Permalink}<script type="text/javascript">
var disqus_shortname = '{text:Disqus Shortname}';
(function () {
var s = document.createElement('script'); s.async = true;
s.src = 'https://disqus.com/forums/{text:Disqus Shortname}/count.js';
(document.getElementsByTagName('HEAD')[0] ||
document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>{/block:ifDisqusShortname}
{block:PostNotes}
<div id="notes" class="post">{PostNotes}</div>
<div class="border"></div><div class="clear_1"></div>
{/block:PostNotes}
{/block:Posts}
</div>
<div id="footer">
Page {CurrentPage} of {TotalPages}.<br/>
<a href="https://www.tumblr.com/theme/27838">Theme (Minimo)</a> by <a
href="https://elletricity.com">Gabrielle Wee</a>.</br>Tweaked by <a
href="https://dailycamart.tumblr.com">yours truly</a>.</br>Powered by <a
href="https://tumblr.com">Tumblr</a>.</br><script language="JavaScript"
src="https://s1.freehostedscripts.net/ocount.php?site=ID2543263&name="></script>
</div>
</div>
</div>
<script type="text/javascript">
$('.with_commentary').after('<div class="clear_1"></div>');
</script>
</body>
</html>