123456789101112131415161718192021222324252627282930 |
- .folding ul {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .folding li {
- background-image: url('/img/page.png');
- background-position: 0 5px;
- background-repeat: no-repeat;
- padding-left: 20px;
- }
- .folding li.folder {
- background-image: url('/img/folder-closed.png');
- }
- .folding li.folder-open {
- background-image: url('/img/folder-open.png');
- }
- .folding a {
- color: #000000;
- cursor: pointer;
- text-decoration: none;
- }
- .folding a:hover {
- text-decoration: underline;
- }
|