feat(gist): gist page

This commit is contained in:
Barrett Ruth 2025-10-08 14:41:23 -04:00
parent 7b09edb899
commit fdb2fa808a
4 changed files with 54 additions and 19 deletions

View file

@ -232,16 +232,3 @@ pre {
font-size: 0.9em;
}
}
.clone-banner {
display: flex;
justify-content: center;
align-items: center;
font-family: 'Apercu Mono', monospace;
}
.clone-banner code {
font-size: 0.95em;
user-select: all;
white-space: nowrap;
}

25
public/styles/git.css Normal file
View file

@ -0,0 +1,25 @@
.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;
}