Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Style Cheat-Sheet
I was wondering if someone could be so kind enough as to create a Vanilla Style Cheat-Sheet. If your not sure what i mean by this check out the cheat-sheet for Wordpress: http://www.techwench.com/05-2005/15-theme-cheat-sheet.
Im trying to create a style and this is the best way to learn personally, it would also help other users to learn how to create a style easily too.
0
This discussion has been closed.
Comments
make a blank global.css,
paste this
*{ border: 1px dotted silver; margin: 0.5em; padding: 0.5em; } body, html{ border: none; margin: 0; padding: 0; } body{ font:62.5% verdana, arial, sans; } #MenuForum:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } /* Hides from IE-mac \*/ * html #MenuForum {height: 1%;} /* End hide from IE-mac */ /* - end clearing - */ #MenuForum li{ float: left; } #Body{ margin-left: 23em; } #Panel{ float: left; width: 20em; } .PageList li{ display: inline; } .MetaItem, .MetaItemLabel{ display: inline; line-height: 3em; } .DataItemLabel{ float: left; }
gives you this:
combine that with the firefox web dev tool bar's "Display ID and Class Details" functionality and you should have a good start.
the rules there only really cover the discussion list page, and the header.
using the universal selector to apply padding, margin, and border will still give you a clear idea of page elements on other pages. they just won't look as pretty.
* is your friend.