32 lines
506 B
CSS
32 lines
506 B
CSS
.dropdown {
|
|
display: none;
|
|
}
|
|
|
|
.dropdown.isOpen {
|
|
display: block;
|
|
}
|
|
|
|
.arrow {
|
|
background-image: url("/_static/img/icons/arrows/arrow-down-grey.png");
|
|
background-position: 50%;
|
|
background-repeat: no-repeat;
|
|
display: inline-block;
|
|
margin-left: 5px;
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
.arrow.open {
|
|
background-image: url("/_static/img/icons/arrows/arrow-up-grey.png");
|
|
}
|
|
|
|
.link {
|
|
color: grey;
|
|
display: block;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.link:hover {
|
|
color: #7f7369;
|
|
text-decoration: none;
|
|
}
|