2021-05-23 18:38:39 +02:00
|
|
|
.BookmarkCard {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.BookmarkCard h3 {
|
|
|
|
color: var(--color-accent);
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 400;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.Bookmarks {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.Bookmarks a {
|
|
|
|
line-height: 2;
|
|
|
|
transition: all 0.25s;
|
2021-06-09 12:45:55 +02:00
|
|
|
display: flex;
|
2021-05-23 18:38:39 +02:00
|
|
|
}
|
|
|
|
|
2021-06-08 12:51:50 +02:00
|
|
|
.BookmarkCard a:hover {
|
2021-05-23 18:38:39 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
padding-left: 10px;
|
2021-06-09 12:45:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.BookmarkIcon {
|
|
|
|
width: 20px;
|
2021-06-10 01:51:59 +02:00
|
|
|
height: 20px;
|
2021-06-09 12:45:55 +02:00
|
|
|
display: flex;
|
2021-06-10 01:51:59 +02:00
|
|
|
margin-top: 3px;
|
2021-06-09 12:45:55 +02:00
|
|
|
margin-right: 2px;
|
2021-08-06 15:15:54 +02:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.BookmarkIconSvg {
|
|
|
|
width: 80%;
|
|
|
|
height: 80%;
|
|
|
|
margin-top: 2px;
|
|
|
|
margin-left: 2px;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|