guards.css 413 B

123456789101112131415161718192021222324252627
  1. dd {
  2. simple: yellow;
  3. }
  4. b {
  5. something: red;
  6. something-complex: blue cool;
  7. something-complex: blue birthday;
  8. }
  9. img {
  10. another: green;
  11. flipped: teal;
  12. }
  13. body {
  14. yeah-number: purple 232px;
  15. yeah-pixel: silver;
  16. yeah-number: purple 232;
  17. }
  18. div {
  19. something-complex: blue true;
  20. }
  21. link {
  22. color: true red;
  23. color: true #fff;
  24. color: true #fffddd;
  25. color: true #000000;
  26. color: true rgba(0,0,0,0.34);
  27. }