CSS.css 387 B

1234567891011121314151617181920212223242526
  1. /* Use these: */
  2. path {
  3. fill: #006600;
  4. }
  5. #check-id {
  6. fill: #00ff00;
  7. }
  8. #group-red path, path.red, path#id-red, #id-and-class.red, #by-id {
  9. fill: #00ff00;
  10. }
  11. #hidden {
  12. visibility: hidden;
  13. }
  14. #display-none {
  15. display: none;
  16. }
  17. /* These should get overridden: */
  18. .red, #id-red, #style, #use-local, #id-and-class, #use-last {
  19. fill: #ff0000;
  20. }
  21. /* Use this: */
  22. #use-last {
  23. fill: #00ff00;
  24. }