nested.css 642 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #header {
  2. color: black;
  3. }
  4. #header .navigation {
  5. font-size: 12px;
  6. }
  7. #header .navigation .border .outside {
  8. color: blue;
  9. }
  10. #header .logo {
  11. width: 300px;
  12. }
  13. #header .logo:hover {
  14. text-decoration: none;
  15. }
  16. a b ul li {
  17. color: green;
  18. }
  19. div .cool {
  20. color: green;
  21. }
  22. p .cool span {
  23. color: yellow;
  24. }
  25. div another {
  26. color: green;
  27. }
  28. p another span {
  29. color: yellow;
  30. }
  31. b .something {
  32. color: blue;
  33. }
  34. b.something {
  35. color: blue;
  36. }
  37. .foo .bar .qux,
  38. .foo .baz .qux {
  39. display: block;
  40. }
  41. .qux .foo .bar,
  42. .qux .foo .baz {
  43. display: inline;
  44. }
  45. .qux .foo .bar .biz,
  46. .qux .foo .baz .biz {
  47. display: none;
  48. }
  49. b hello [x="&yeah"] {
  50. color: red;
  51. }