water.css/src/parts/_typography.css

84 lines
807 B
CSS
Raw Normal View History

2019-04-06 15:07:11 -04:00
h1 {
font-size: 2.2em;
margin-top: 0;
}
2019-04-15 14:10:18 -03:00
h1,
h2,
h3,
h4,
h5,
h6 {
2019-04-06 15:07:11 -04:00
margin-bottom: 12px;
}
2019-04-15 14:10:18 -03:00
h1,
h2,
h3,
h4,
h5,
h6,
strong {
color: var(--text-bright);
2019-04-06 15:07:11 -04:00
}
2019-04-15 14:10:18 -03:00
h1,
h2,
h3,
h4,
h5,
h6,
b,
strong,
th {
2019-04-06 15:07:11 -04:00
font-weight: 600;
2019-04-07 10:04:59 -04:00
}
2019-04-11 11:11:18 -04:00
q::before {
content: none;
2019-06-05 21:33:30 -05:00
}
q::after {
content: none;
2019-06-05 21:33:30 -05:00
}
blockquote,
q {
border-left: 4px solid var(--focus);
margin: 1.5em 0;
2019-04-11 11:11:18 -04:00
padding: 0.5em 1em;
2019-04-11 11:55:32 -04:00
font-style: italic;
}
blockquote > footer {
font-style: normal;
2019-10-03 19:50:07 -04:00
border: 0;
2019-04-11 11:55:32 -04:00
}
blockquote cite {
font-style: normal;
2019-04-14 09:40:40 -04:00
}
address {
font-style: normal;
}
a[href^='mailto\:']::before {
2019-04-15 09:33:51 -04:00
content: '📧 ';
2019-04-14 09:40:40 -04:00
}
a[href^='tel\:']::before {
2019-04-14 09:40:40 -04:00
content: '📞 ';
2019-04-15 09:33:51 -04:00
}
a[href^='sms\:']::before {
2019-04-15 09:33:51 -04:00
content: '💬 ';
2019-06-05 21:33:30 -05:00
}
mark {
background-color: var(--highlight);
border-radius: 2px;
padding: 0 2px 0 2px;
color: #000;
}