cheatsheets/_sass/2017/markdown/p.scss

55 lines
784 B
SCSS

/*
* Crosslink (eg, phoenix.md)
*/
.MarkdownBody.MarkdownBody {
img {
max-width: 100%;
}
}
.MarkdownBody.MarkdownBody p.-crosslink {
& > a {
display: block;
text-decoration: none;
color: $base-a;
border-bottom: 0;
box-shadow: none;
margin: -16px;
padding: 16px;
}
& > a:visited {
color: $base-a;
}
& > a::before {
content: '';
@include ion-md-arrow-forward(16px, white);
margin-right: 16px;
width: 32px;
height: 32px;
line-height: 32px;
border-radius: 50%;
}
& > a,
& > a:visited {
&::before {
background-color: $base-a;
color: white;
}
}
& > a:hover,
& > a:focus {
& {
color: $base-a7;
}
&::before {
background-color: $base-a7;
}
}
}