folding.css 515 B

123456789101112131415161718192021222324252627282930
  1. .folding ul {
  2. list-style: none;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. .folding li {
  7. background-image: url('/img/page.png');
  8. background-position: 0 5px;
  9. background-repeat: no-repeat;
  10. padding-left: 20px;
  11. }
  12. .folding li.folder {
  13. background-image: url('/img/folder-closed.png');
  14. }
  15. .folding li.folder-open {
  16. background-image: url('/img/folder-open.png');
  17. }
  18. .folding a {
  19. color: #000000;
  20. cursor: pointer;
  21. text-decoration: none;
  22. }
  23. .folding a:hover {
  24. text-decoration: underline;
  25. }