Experimenting with the ShareButton

This commit is contained in:
Pieter Vander Vennet 2020-11-22 03:50:09 +01:00
parent e10f9b61e2
commit 2d25393962
7 changed files with 61 additions and 23 deletions

View file

@ -501,3 +501,33 @@ a {
max-width: 1em;
}
.share-button {
background-color: var(--subtle-detail-color);
border: none;
color: var(--subtle-detail-color-contrast);
text-decoration: none;
display: inline-block;
border-radius: 3em;
width: 4em;
height: 3em;
box-sizing: border-box;
}
.share-button svg {
max-height: 2.0em;
width: 2.0em;
padding: 0.5em;
fill: var(--subtle-detail-color-contrast);
stroke: var(--subtle-detail-color-contrast);
}
.share-button svg path{
fill: var(--subtle-detail-color-contrast);
stroke: var(--subtle-detail-color-contrast);
}
.share-button svg circle{
fill: var(--subtle-detail-color-contrast);
stroke: var(--subtle-detail-color-contrast);
}