3d Stock Shapes #1

Nine 3D Triangles and Rectangles Stock Renders
Notes and License
Click on the images to see the full-size.

This work is licensed under a Creative Commons Attribution-Noncommercial 3.0 United States License.
25 Inspirational Design and Art Quotes
“Good design is a Renaissance attitude that combines technology, cognitive science, human need and beauty to produce something,” Paola Antonelli.
Hosting Your Material Online
What type of hosting do you need?
Back in the old days of the Internet you had numerous options for free webhosting with only a small number of sites needing their own domain and paid hosting. Today most of the free hosting options, including the once popular Geocities, are no longer available or are so full of ads that they are useless.













Break It Down: Lengthy CSS
Original Code
The CSS listed below is a slight variation of the CSS I used for the quote box in this layout. As you can see the CSS that controls even a small part of the design can become quite lengthy. When you add in the rest of the typography and structure and the CSS can look overwhelming.
p.quotebox { color: #ffc; font-size: 3em; font-family: Baskerville, Garamond, Palatino, Georgia, serif; font-weight: bold; text-align: center; text-shadow: 2px 2px 2px #000; background-color: #300; border: solid 1px #333; -moz-box-shadow: 5px 5px 0 rgba(72, 72, 72, .5); -webkit-box-shadow: 5px 5px 0 rgba(72, 72, 72, .5); box-shadow: 5px 5px 0 rgba(72, 72, 72, .5); -moz-border-radius: 5px; -webkit-border-radius: 5px; padding: 5px; }Read More »