25 lines
445 B
CSS
25 lines
445 B
CSS
.clone-line {
|
|
font-family: 'Apercu Mono', monospace;
|
|
font-size: 1.3em;
|
|
font-weight: 400;
|
|
margin: 0.5em 0 1em 0;
|
|
text-align: left;
|
|
user-select: all;
|
|
}
|
|
|
|
.clone-line code {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.clone-line a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
border-bottom: 1px solid transparent;
|
|
transition: border-color 0.3s ease;
|
|
}
|
|
|
|
.clone-line a:hover {
|
|
border-color: currentColor;
|
|
}
|