Technology + pastries = nom nom nom.
Friday, March 27, 2009
BakerTweet
Technology + pastries = nom nom nom.
Tuesday, March 24, 2009
Audience Considerations
If I had to design for audiences, though, I would put his resume, design philosophy, bio, and contact information under a navigation topic like "employers" or "Kyle data" or something. I would put photos and sketches under a heading like "eye candy", and put his design philosophy and a link to his kidswear collection portfolio site under a heading like "customers" or something.
The website audience can be divided into many categories:
- Friends // Family // Employers // Customers
- Those who care about Kyle // Those who mostly care about Kyle's work
- Potential bosses // potential clients // people Kyle doesn't need to impress
- Moms who might buy kidswear from Kyle // people who will buy nothing // potential employers // professors
Sunday, March 22, 2009
Honors Option Colors
You can also download the hex and RGB values or see the ColourLovers page.
For the header, I want to use these colors on white:
Here's the colors all together:
Check out the ColourLovers page or download the hex and RGB values.
id vs. class
Your CSS for an id selector named "container" might look like this:
#container{
width: 80%;
margin: auto;
padding: 20px;
border: 1px solid #666;
background: #ffffff;
}
The HTML to display that ID-ed division is this:
<div id="container">Contained content</div>
Your CSS for a class would look like this:
.tealtext{
color: #008080;
font-weight: bold;
}
And you invoke that text with this HTML:
<span class="tealtext">This text is teal.<span>
CSS Basics
Saturday, March 21, 2009
HTML Punctuation Code
More specific HTML punctuation code:
‘ = ‘ = opening single quote
’ = ’ = closing single quote (or an apostrophe)
“ = “ = opening double quote
” = ” = closing double quote
′ = ′ = single prime (not in HTML 4.01)
″ = ″ = double prime (not in HTML 4.01)
– = – = en dash (shorter)
— = — = em dash (longer)
… = … = ellipsis
-Source: AListApart.com
Friday, March 20, 2009
Facebook Faux Pas
Way to fail, Mark. Way to fail.
Typography Tools!
Typetester.org -This site lets you format three columns of text - all with adjustable size, leading, tracking, color, background color, alignment, word space, and font. Then, the site prints out, in the columns, lorem ipsum text in your selected typeface with different formatting: bold, italics, uppercase, small caps, regular, and combinations of the above.
CSSTypeSet.com - you can use buttons to change the typography, and the text is displayed with your selected formatting on the right, and the CSS code is displayed in the text box on the right. I like it to see letter-spacing, word-spacing, and line-height properties, and see the exact values; it's hard to guess those numbers.
Design Police & Drop Caps
Drop caps are where it's at, also. I just wanted to leave the code in my blog so I'd remember how to do it. :)
Edit: that drop cap technique definitely does not work in blogger.
Horizontal Centering With CSS
I was doing some research about how to center page elements (both vertically and horizontally), and thought I'd share my findings here. I couldn't find anything about centering elements vertically, but there are actually two ways to go about centering elements horizontally using CSS, and only one is IE5 compatible.
Centering: Negative Margin
First, position the element's left edge at the horizontal center of the page using "position:absolute; left:50%;". Then, set the box's left margin is to the opposite of half the element's width using "margin-left:-266px;". Like this:
body {margin:0px; padding:0px;}
#Content {
position:absolute;
left:50%;
margin-left:-266px;
}
Centering: Auto-width margins
The other way is to center the element by setting left & right margin widths to "auto". This CSS is not supported in IE5, however. To remedy this, [kind of], we can use the "text-align" attribute. IE5 incorrectly applies the CSS "text-align" attribute to block-level elements. Declaring "text-align:center" for the containing block-level element (often the BODY element) horizontally centers the box in IE5. There is a side effect of this workaround: the CSS "text-align" attribute centers the inline content. when centering in this way, you should explicitly set the "text-align" attribute for the centered box, counteracting the effects of this crappy way to center things. Honestly, just use the other way. Code as follows:
margin:50px 0px; padding:0px;
text-align:center;
}
#Content {
width:500px;
margin:0px auto;
text-align:left;
}
Honors Option Nav CSS
Whether I choose horizontal or vertical navigation, I want to use classes like this:
a.red:link {color: #009900;}
a.red:visited {color: #999999;}
a.red:hover {color: #333333;}
a.red:focus {color: #333333;}
a.red:active {color: #009900;}
And the code for the first nav option would look like this:
Now I need to learn how to make all of the boxes the same with. I know Entropy4Atrophy had a post about horizontal and vertical navigation. Now I just have to read it (again) and understand it.
Tuesday, March 17, 2009
Back from break
Over break, I drove my house-mate Kyle, for whom I'm creating two sites for my final project and honors option, and myself back to East Lansing, and we discussed his sites more. I'm excited to make an awesome-looking portfolio site with bio, resume, and design philosophy pages that use different, yet equally extensive and awesome, style sheets.
Thursday, March 12, 2009
Get paid, son
Go forth and make bank!
Monday, March 9, 2009
Loves it
CentralScrutinizer.it — Love the typography, fonts, main navigation, right column "accessory" elements, embedded videos and music players, and the blog title header font colors that change from post to post.
Boompa.ca — Love the stacked water color pages look. I think they did it with CSS modifications to the HTML body tag, and then they added nested divs with different backgrounds for each column and elements. Check out their style sheet. I don't know how they did the effect where when the user puts their mouse over "Search", the search bar drops below it, and when the user mouses over "Find News by Artist" more sub-nav drops down from there, and disappears when the user removes their mouse. I would really like to figure out how to do that. Especially since it's all text, which means I could use that kind of effect for my honors option site.
The Mystery of 2010 — Love the navigation! Their style sheet shows that they placed their elements using ids and absolute pixel positions. Is that practice compatible with all browsers? Also, the moving background, though super cool, is kind of distracting. But I still love it.
Thursday, March 5, 2009
Image Slicing
I found and watched this tutorial on WebDesign.org that is 15 minutes long (kind of long, I agree) that shows how to use Photoshop and Dreamweaver to make image slices and Photoshop will write the appropriate code for you either in HTML tables (boo!) or CSS (yay!). And I have both programs on my laptop and in 317 Bessey. Yessss. :) So I will likely use that technique for the kidswear portfolio, my final project.
I'm so excited now! :)