Spaces:
Running
Running
File size: 720 Bytes
a9340d4 |
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 |
.st-copy-to-clipboard-btn {
display: inline-flex;
-moz-box-align: center;
align-items: center;
-moz-box-pack: center;
justify-content: center;
font-weight: 400;
padding: 0.25rem 0.75rem;
border-radius: 0.5rem;
min-height: 38.4px;
margin: 0px;
line-height: 1.6;
color: inherit;
width: auto;
user-select: none;
background-color: transparent; /* set bgcolor to transparent to adjust to any theme */
border: 1px solid rgba(49, 51, 63, 0.2);
cursor: pointer;
float: right;
}
.st-copy-to-clipboard-btn:hover {
border-color: rgb(255, 75, 75);
color: rgb(255, 75, 75);
}
.st-copy-to-clipboard-btn:active {
border-color: rgb(255, 75, 75);
background-color: rgb(255, 75, 75);
color: rgb(255, 255, 255);
}
|