mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
29 lines
493 B
CSS
29 lines
493 B
CSS
.bookmark {
|
|
position: absolute;
|
|
top: -10px;
|
|
right: calc(var(--spacer) / 8);
|
|
appearance: none;
|
|
background: none;
|
|
border: none;
|
|
box-shadow: none;
|
|
outline: 0;
|
|
cursor: pointer;
|
|
transition: 0.2s ease-out;
|
|
}
|
|
|
|
.bookmark svg {
|
|
fill: var(--brand-grey-light);
|
|
height: 40px;
|
|
width: 40px;
|
|
filter: drop-shadow(0 4px 6px var(--box-shadow-color));
|
|
}
|
|
|
|
.bookmark:hover,
|
|
.bookmark:focus {
|
|
transform: translate3d(0, 6px, 0);
|
|
}
|
|
|
|
.bookmark.active svg {
|
|
fill: var(--brand-violet);
|
|
}
|