You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
368 B
CSS
29 lines
368 B
CSS
.share {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
|
|
line-height: 2;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
a {
|
|
color: currentColor;
|
|
text-decoration: none;
|
|
}
|
|
|
|
button.clipboard {
|
|
background: none;
|
|
border: none;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
button.clipboard:hover {
|
|
color: tomato;
|
|
}
|