mirror of
https://github.com/danog/sass-site.git
synced 2024-11-27 12:35:03 +01:00
79 lines
1.1 KiB
SCSS
79 lines
1.1 KiB
SCSS
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
.signature {
|
|
a.anchor {
|
|
display: block;
|
|
float: left;
|
|
vertical-align: middle;
|
|
margin-top: -3px;
|
|
width: 1.5rem;
|
|
background: none;
|
|
border: 0;
|
|
|
|
&::after {
|
|
visibility: hidden;
|
|
font: {
|
|
size: 1rem;
|
|
weight: normal;
|
|
}
|
|
content: '\1F517';
|
|
}
|
|
}
|
|
|
|
&:hover a.anchor::after {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
a.anchor {
|
|
margin-left: -1.5rem;
|
|
}
|
|
|
|
&:target {
|
|
animation-name: highlight-header;
|
|
animation-duration: 5s;
|
|
}
|
|
}
|
|
|
|
@keyframes highlight-header {
|
|
from {
|
|
background-color: $sl-color--dawn-pink;
|
|
}
|
|
|
|
to {
|
|
background-color: unset;
|
|
}
|
|
}
|
|
|
|
.signature {
|
|
a.anchor {
|
|
margin-left: -2.5rem;
|
|
}
|
|
|
|
.sl-c-callout--function:target & {
|
|
animation-name: highlight-signature;
|
|
animation-duration: 5s;
|
|
}
|
|
}
|
|
|
|
@keyframes highlight-signature {
|
|
from {
|
|
background-color: $sl-color--dawn-pink;
|
|
}
|
|
|
|
to {
|
|
background-color: #f8f8f8;
|
|
// background-color: <%= Rouge::Themes::Github.get_style(Rouge::Token::Tokens::Text)[:bg] %>;
|
|
}
|
|
}
|