added custom details arrow (needs final svg)

This commit is contained in:
Danny Coates 2019-02-13 12:39:53 -08:00
parent 1c61915b53
commit 26d6606e09
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
3 changed files with 27 additions and 25 deletions

View file

@ -105,10 +105,22 @@ details {
overflow: hidden;
}
details > summary::-webkit-details-marker {
display: none;
}
details > summary > svg {
transition: all 0.25s cubic-bezier(0.07, 0.95, 0, 1);
}
details[open] {
overflow-y: auto;
}
details[open] > summary > svg {
transform: rotate(90deg);
}
footer li:hover {
text-decoration: underline;
}