I have found a very nice set of buttons that I would like to use in an ASP.NET Web App here:
http://www.red-team-design.com/just-another-awesome-css3-buttons#comment-168128
They designed those buttons using pure CSS3. If I use the CSS classes they have there and set my <asp:button CssClass = "button">, it will just take some of the elements from that CSS class (background color, border style, etc.), but it won't use the icons.
I know it can't use any of the icons because I can't use CSS subclasses (e.g. <asp:button CssClass = "button add">... please correct me if there is a way to do so), so I was willing to create a different class for each button.
For instance, for the button with the plus icon, which I named .buttonPlus, I moved the CSS attribute content: "\271A"; (that is the + icon) to be part of its .buttonPlus:before selector, and still it won't render the icon. If I use the button as they suggest (using an HTML link):
<a href="" class="button add">Add</a>
The button gets rendered with the icon, as it should. Of course, I wan't to use my ASP.NET server side button for obvious reasons.
If anyone has good experience with both CSS3 and ASP.NET, please let me know how to go about this.
Thanks!