mirror of
https://github.com/trwnh/hugo-theme-paradox.git
synced 2024-11-14 23:41:20 +00:00
69 lines
1.1 KiB
SCSS
69 lines
1.1 KiB
SCSS
.ref-link {
|
|
background: var(--ui-overlay);
|
|
color: var(--ui-overlay-text);
|
|
&:link, &:visited {
|
|
color: var(--ui-overlay-text);
|
|
}
|
|
&:hover {
|
|
background: var(--primary-accent);
|
|
color: var(--primary-accent-text);
|
|
}
|
|
transition:
|
|
background var(--color-crossfade-duration) var(--color-crossfade-ease),
|
|
color var(--color-crossfade-duration) var(--color-crossfade-ease);
|
|
display: grid;
|
|
align-items: center;
|
|
gap: 1em;
|
|
@media (min-width: 20rem) {
|
|
grid-template-columns: 3em 1fr;
|
|
}
|
|
margin-block: 1em;
|
|
padding: 1em;
|
|
border-radius: 6px;
|
|
text-decoration: none;
|
|
&__icon {
|
|
block-size: 3em;
|
|
inline-size: 3em;
|
|
grid-column: 1;
|
|
background: var(--primary-accent);
|
|
color: var(--primary-accent-text);
|
|
display: grid;
|
|
place-items: center;
|
|
border-radius: 8px;
|
|
}
|
|
&__text {
|
|
grid-column: 2 / -1;
|
|
}
|
|
svg {
|
|
block-size: 1.5em;
|
|
inline-size: 1.5em;
|
|
}
|
|
}
|
|
|
|
.page-ref {
|
|
font-weight: 700;
|
|
&__title {
|
|
|
|
}
|
|
&__section {
|
|
|
|
}
|
|
}
|
|
|
|
.source-ref {
|
|
word-break: break-all;
|
|
&__name {
|
|
font-weight: 700;
|
|
}
|
|
&__path {
|
|
margin-block-start: 8px;
|
|
display: block;
|
|
font-family: monospace;
|
|
}
|
|
}
|
|
|
|
.section-ref {
|
|
&__title {
|
|
font-weight: 700;
|
|
}
|
|
} |