Files
habitica/website/client/src/assets/scss/markdown.scss
T
SabreCat 9ec1917e6d feat(invites): provide link to inviting user in party notif
Also changes basic links sitewide to purple-300
2023-02-15 16:54:46 -06:00

67 lines
929 B
SCSS

@mixin h3Markdown {
font-family: 'Roboto Condensed', sans-serif;
font-size: 16px;
margin-bottom: 4px;
line-height: 1.25;
margin-top: 6px;
color: $gray-10;
font-weight: normal;
}
// task titles are h3 by default
h3.markdown {
@include h3Markdown;
}
.markdown {
p {
margin-bottom: 8px;
}
h1 {
font-size: 24px;
line-height: 1.67;
margin-bottom: 10px;
margin-top: 14px;
}
h2 {
margin-bottom: 6px;
margin-top: 10px;
font-size: 20px;
line-height: 1.4;
}
h3 {
@include h3Markdown;
}
h1, h2, h3, h4 {
font-weight: normal;
}
h4 {
font-family: 'Roboto Condensed', sans-serif;
font-size: 14px;
line-height: 1.43;
color: $gray-10;
}
a {
&:hover, &:active, &:focus {
text-decoration: underline;
}
}
img {
max-width: 100%;
}
blockquote {
padding: 0 16px;
border-left: 4px solid #e1e0e3;
}
}