Skip to content

Instantly share code, notes, and snippets.

View abrad45's full-sized avatar
🤓
Checks over Stripes

Alexander Bradley abrad45

🤓
Checks over Stripes
View GitHub Profile
@abrad45
abrad45 / dabblet.css
Created May 11, 2012 15:47 — forked from anonymous/dabblet.css
Silverpoint UC12 CSS Training
/**
* Silverpoint UC12 CSS Training
*/
body { font-family: helvetica, arial, sans-serif; }
.alt { font-style: bold; } /* will select all items on the page with the 'alt' class */
#uc12 { color: red; } /* ID's are unique! This selects the one item on the page with the uc12 id */
p { color: blue; } /* will select all paragraphs */
p .inside { text-transform: uppercase; }
/* will select all items on the page with the 'inside' class which are children of a 'p' tag */