rulesets.less 516 B

12345678910111213141516171819202122232425262728293031
  1. #first > .one {
  2. > #second .two > #deux {
  3. width: 50%;
  4. #third {
  5. &:focus {
  6. color: black;
  7. #fifth {
  8. > #sixth {
  9. .seventh #eighth {
  10. + #ninth {
  11. color: purple;
  12. }
  13. }
  14. }
  15. }
  16. }
  17. height: 100%;
  18. }
  19. #fourth, #five, #six {
  20. color: #110000;
  21. .seven, .eight > #nine {
  22. border: 1px solid black;
  23. }
  24. #ten {
  25. color: red;
  26. }
  27. }
  28. }
  29. font-size: 2em;
  30. }