_list_bullets.scss 449 B

12345678910111213141516171819202122232425
  1. $bullet-1st: "\2014\ " !default; // unicode for "— "
  2. $bullet-2nd: "+ " !default;
  3. $bullet-3rd: "* " !default;
  4. .bits nav,
  5. .front-page,
  6. .cheat-sheet,
  7. .playlists,
  8. .post {
  9. ul {
  10. > li:before {
  11. color: $border-color;
  12. font-size: 0.75rem;
  13. }
  14. li:before { content: $bullet-1st; }
  15. ul {
  16. > li { margin-left: $leading/2; }
  17. li:before { content: $bullet-2nd; }
  18. ul li:before { content: $bullet-3rd; }
  19. }
  20. }
  21. }