hugo-geekdoc/src/sass/_markdown.scss
Robert Kaussow 80ddd27307
fix: adjust default color scheme to fix some contrast issues (#610)
BREAKING CHANGE: This change has adjusted the default color scheme and brand icon. There is no real functional break, but since the look and feel has changed, you might consider this as such.
2023-04-19 16:28:08 +02:00

226 lines
3.6 KiB
SCSS

.gdoc-markdown {
line-height: 1.6rem;
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 600;
> code {
border-top: $border-4 solid var(--accent-color);
font-size: $font-size-12 !important;
}
}
h4,
h5,
h6 {
> code {
font-size: $font-size-14 !important;
}
}
b,
optgroup,
strong {
font-weight: bolder;
}
a,
&__link {
text-decoration: none;
border-bottom: $border-1 solid transparent;
line-height: normal;
&:hover {
text-decoration: underline;
}
}
&__link--raw {
text-decoration: none !important;
color: $body-font-color !important;
&:hover {
text-decoration: none !important;
}
&:visited {
color: $body-font-color !important;
}
}
&__link--code {
text-decoration: none;
code {
color: inherit !important;
}
&:hover {
background: none;
color: var(--link-color) !important;
text-decoration: underline;
}
&:visited,
&:visited:hover {
color: var(--link-color-visited) !important;
}
}
&__figure {
padding: $padding-4;
margin: $padding-16 0;
background-color: var(--accent-color);
display: table;
border-top-left-radius: $border-radius;
border-top-right-radius: $border-radius;
&--round,
&--round img {
border-radius: 50% !important;
}
figcaption {
display: table-caption;
caption-side: bottom;
background-color: var(--accent-color);
padding: 0 $padding-4 $padding-4;
text-align: center;
border-bottom-left-radius: $border-radius;
border-bottom-right-radius: $border-radius;
}
img {
max-width: 100%;
height: auto;
}
}
img {
max-width: 100%;
border-radius: $border-radius;
}
blockquote {
margin: $padding-16 0;
padding: $padding-8 $padding-16 $padding-8 ($padding-16 - $padding-4); //to keep total left space 16dp
border-left: $border-4 solid var(--accent-color);
border-radius: $border-radius;
}
table:not(.lntable):not(.highlight) {
display: table;
border-spacing: 0;
border-collapse: collapse;
margin-top: $padding-16;
margin-bottom: $padding-16;
width: 100%;
text-align: left;
thead {
border-bottom: $border-4 solid var(--accent-color);
}
tr th,
tr td {
padding: $padding-8 $padding-16;
}
tr {
border-bottom: $border-2 solid var(--accent-color);
}
tr:nth-child(2n) {
background: var(--accent-color-lite);
}
}
hr {
height: $border-2;
border: none;
background: var(--accent-color);
}
ul,
ol {
padding-left: $padding-32;
}
dl {
dt {
font-weight: bolder;
margin-top: $padding-16;
}
dd {
margin-left: $padding-32;
}
}
code {
padding: $padding-4 $padding-8;
}
pre,
code {
background-color: var(--code-background);
border-radius: $border-radius;
color: var(--code-font-color);
font-size: $font-size-14;
line-height: $padding-16;
}
pre code {
display: block;
padding: $padding-16;
width: 100%;
}
mark {
background-color: var(--mark-color);
}
&__align {
&--left {
h1,
h2,
h3,
h4,
h5,
h6 {
justify-content: flex-start;
}
text-align: left;
}
&--center {
h1,
h2,
h3,
h4,
h5,
h6 {
justify-content: center;
}
text-align: center;
}
&--right {
h1,
h2,
h3,
h4,
h5,
h6 {
justify-content: flex-end;
}
text-align: right;
}
}
}