Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. .button, input[type=submit]{
  2. //default colour
  3. background:grey;
  4. }
  5.  
  6. .button-primary{
  7. background:green;
  8. }
  9.  
  10. .button-danger{
  11. background:red;
  12. }
  13.  
  14. .button, input[type=submit]:not([class^=button-]){
  15. background:grey;
  16. }
  17.  
  18. .button-danger, input[type=submit].button-danger {
  19. background:red;
  20. }
  21.  
  22. .button-danger{
  23. background:red !important;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement