Add this command to your .vimrc:
:hi link cssClassName Type
Why this works:
First of all, you need to find the syntax group names of the items you're using.
You can do this by placing the cursor over the area that's being syntax highlighted and run the command:
:echo synIDattr(synID(line("."), col("."), 1), "name")
You should get cssIdentifier and cssClassName for #id{...} and .class{...} respectively.
You can then see which hightlight group they're linked to using :highlight cssIdentifier and :highlight cssClassName. You can view the entire highlight set using :highlight.
By default, these are both linked to Function. The nicest solution is probably to link cssClassName to the Type syntax group instead. You should be able to use any colorscheme and it will still work:
:hi link cssClassName Type
If you add this to your .vimrc, vim will use this link instead of the one defined in the css syntax file.