Use flexbox and better box-sizing
parent
d13b124da9
commit
a3d7fcc636
|
@ -1,37 +1,37 @@
|
||||||
:root {
|
:root {
|
||||||
--shareon-size: 36px;
|
--shareon-size: 20px;
|
||||||
--shareon-icon-size: 20px;
|
--shareon-padding: 8px;
|
||||||
|
--shareon-radius: 4px;
|
||||||
--padding-ver: calc(0.3 * var(--shareon-icon-size));
|
|
||||||
--padding-hor: calc(var(--shareon-icon-size) / 2);
|
|
||||||
--padding-icon: calc((var(--shareon-size) - var(--shareon-icon-size)) / 2);
|
|
||||||
|
|
||||||
--height: calc(var(--shareon-size) - 2 * var(--padding-ver));
|
|
||||||
--width: calc(var(--shareon-size) - 2 * var(--padding-hor));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.shareon {
|
.shareon {
|
||||||
font-size: 0 !important;
|
display: flex;
|
||||||
|
flex-flow: row wrap;
|
||||||
|
gap: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.shareon > * {
|
.shareon > * {
|
||||||
display: inline-block;
|
--shareon-background: #333;
|
||||||
position: relative;
|
|
||||||
|
|
||||||
height: var(--height);
|
|
||||||
min-width: var(--width);
|
|
||||||
|
|
||||||
margin: calc(var(--padding-ver) / 2);
|
|
||||||
padding: var(--padding-ver) var(--padding-hor);
|
|
||||||
|
|
||||||
background-color: #333;
|
|
||||||
border-radius: calc(var(--shareon-icon-size) / 6);
|
|
||||||
border: none;
|
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
|
height: var(--shareon-size);
|
||||||
|
min-width: var(--shareon-size);
|
||||||
|
padding: var(--shareon-padding);
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: var(--shareon-padding);
|
||||||
|
|
||||||
|
border: none;
|
||||||
|
border-radius: var(--shareon-radius);
|
||||||
color: white;
|
color: white;
|
||||||
line-height: 1.5;
|
background-color: var(--shareon-background);
|
||||||
|
|
||||||
|
font-size: calc(var(--shareon-size) * 0.8);
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
transition: opacity 300ms ease;
|
transition: opacity 300ms ease;
|
||||||
vertical-align: middle;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.shareon > *:hover {
|
.shareon > *:hover {
|
||||||
|
@ -40,37 +40,14 @@
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.shareon > *:not(:empty) {
|
|
||||||
font-size: calc(0.8 * var(--shareon-icon-size));
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.shareon > *:not(:empty)::before {
|
|
||||||
position: relative;
|
|
||||||
|
|
||||||
height: 100%;
|
|
||||||
width: calc(var(--shareon-icon-size) + var(--padding-icon));
|
|
||||||
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
|
|
||||||
background-position: 0 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.shareon > *::before {
|
.shareon > *::before {
|
||||||
display: inline-block;
|
height: var(--shareon-size);
|
||||||
position: absolute;
|
width: var(--shareon-size);
|
||||||
|
|
||||||
height: var(--shareon-icon-size);
|
|
||||||
width: var(--shareon-icon-size);
|
|
||||||
|
|
||||||
top: var(--padding-icon);
|
|
||||||
left: var(--padding-icon);
|
|
||||||
|
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: var(--shareon-icon-size) var(--shareon-icon-size);
|
background-size: var(--shareon-size) var(--shareon-size);
|
||||||
content: "";
|
content: "";
|
||||||
vertical-align: bottom;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.shareon > .copy-url:before {
|
.shareon > .copy-url:before {
|
||||||
|
|
Loading…
Reference in New Issue