Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | .m-share-box {
position: fixed;
inset: auto 0 0;
z-index: 10;
display: flex;
justify-content: space-around;
width: 100%;
background: rgb(255 255 255 / 90%);
}
.share-button {
width: 2rem;
height: 2rem;
margin: 0.4rem;
font-size: 1rem;
line-height: 2rem;
text-align: center;
border: 1px solid #337ab7;
border-radius: 50%;
}
.share-button-no-border {
width: 2rem;
height: 2rem;
margin: 0.4rem;
font-size: 1rem;
line-height: 2rem;
text-align: center;
}
.comment {
padding-left: 0.15rem;
line-height: 1.7rem;
color: #337ab7;
}
.top {
padding-left: 0.1rem;
line-height: 1.7rem;
color: #337ab7;
background: transparent;
}
|