You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
577 B
36 lines
577 B
.accordion { |
|
background-color: #eee; |
|
color: #444; |
|
cursor: pointer; |
|
padding: 18px; |
|
width: 100%; |
|
border: none; |
|
text-align: left; |
|
outline: none; |
|
font-size: 15px; |
|
transition: 0.4s; |
|
} |
|
|
|
.active, .accordion:hover { |
|
background-color: #ccc; |
|
} |
|
|
|
.panel { |
|
padding: 0 18px; |
|
background-color: white; |
|
max-height: 0; |
|
overflow: hidden; |
|
transition: max-height 0.2s ease-out; |
|
} |
|
.tbm-item .accordion::before { |
|
content: ">"; |
|
margin-right: 10px; |
|
} |
|
.tbm-item .accordion.active::before { |
|
content: "v"; |
|
margin-right: 10px; |
|
} |
|
.accordion { |
|
margin-bottom:4px; |
|
} |
|
|
|
|