mirror of
https://github.com/kognise/water.css.git
synced 2026-01-21 20:45:52 +01:00
80 lines
805 B
CSS
80 lines
805 B
CSS
h1 {
|
|
font-size: 2.2em;
|
|
margin-top: 0;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
margin-bottom: 12px;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
strong {
|
|
color: var(--text-bright);
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
b,
|
|
strong,
|
|
th {
|
|
font-weight: 600;
|
|
}
|
|
|
|
blockquote {
|
|
border-left: 4px solid var(--focus);
|
|
margin: 1.5em 0;
|
|
padding: 0.5em 1em;
|
|
font-style: italic;
|
|
}
|
|
|
|
blockquote > footer {
|
|
font-style: normal;
|
|
border: 0;
|
|
}
|
|
|
|
blockquote cite {
|
|
font-style: normal;
|
|
}
|
|
|
|
address {
|
|
font-style: normal;
|
|
}
|
|
|
|
a[href^='mailto\:']::before {
|
|
content: '📧 ';
|
|
}
|
|
|
|
a[href^='tel\:']::before {
|
|
content: '📞 ';
|
|
}
|
|
|
|
a[href^='sms\:']::before {
|
|
content: '💬 ';
|
|
}
|
|
|
|
mark {
|
|
background-color: var(--highlight);
|
|
border-radius: 2px;
|
|
padding: 0 2px 0 2px;
|
|
color: #000;
|
|
}
|
|
|
|
a > code,
|
|
a > strong {
|
|
color: inherit;
|
|
}
|