going to use this thread to track my content and progression with regard to html/css skills and creativity
specifically for my mobile device.
as i'm working on a setup, i'll try to post any psds i use for icons or wallpapers, as well as pastebins to my css for some of you actual nerds to criticize or learn from.
once a setup is completed i'll pack it with the icon theme, as well as the completed HS/LS and any widgets that are included in the design.
for now, to get back into the swing of things i've spent the day just doing some basic elements to get my feet wet and figure out what flies on an iphone.
eventually i'll be working on actually learning some js as well, but for now i'm doing what i've always done with js: steal them from other people.
the rigz:
-i5, primary mobile device
-photoshop, primary mock-up planning and icon creation tool
-gedit, because dreamweaver is for fuccbois
i've got some neato ribbons and some other shit that i made, but we'll start this off with my first real struggle: centering these fucking text elements inside of this fucking div
screenshot:
http://i.imgur.com/VGzUqqP.pngassociated css:
Code
#header{
position: absolute;
top: 0px;
height: 50%;
width: 100%;
background: #0a9092;
opacity: 0.6;
}
#clock{
top: 50%;
position:absolute;
font-size:20px;
font-family:Krungthep;
text-shadow:0px 0px 0px #292828;
text-transform:uppercase;
}
#hour{
color:#FFF;
font-size: 20px;
}
#minute{
color:#FFF;font-size: 20px;
}
#calendar{
top: 54%;
position:absolute;
font-size:10px;
font-family:Krungthep;
text-transform:lowercase;
}
#date{color:#fff;}
#month{color:#fff;}
#weekday{color:#fff;}
#footer{
position: absolute;
bottom: 0px;
height: 50%;
width: 100%;
background: #f56f6c;
}
associate html:
Code
<div id="header">
<div id="calendar">
<a id="month"></a><a id="weekday"></a><a id="date"></a>
</div>
<div id="clock">
<a id="hour"></a></a><a id="minute"></a>
</div>
</div>
if i position them relative to the left like i have with the vertical placements they'll be off-centered, and that shit is dumb. how do fix?