24 lines
No EOL
267 B
CSS
24 lines
No EOL
267 B
CSS
|
|
.menu ul {
|
|
display: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.menu .title {
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.menu .title:before {
|
|
content: '▶';
|
|
padding-right: 6px;
|
|
color: green;
|
|
}
|
|
|
|
.menu.open ul {
|
|
display: block;
|
|
}
|
|
|
|
.menu.open .title:before {
|
|
content: '▼';
|
|
} |