29 lines
506 B
SCSS
29 lines
506 B
SCSS
.content-card {
|
|
word-break: break-word;
|
|
|
|
h1.wp-block-heading,
|
|
h2.wp-block-heading,
|
|
h3.wp-block-heading,
|
|
h4.wp-block-heading,
|
|
h5.wp-block-heading,
|
|
h6.wp-block-heading {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
font-size: 1.25rem;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
color: var(--content-card-text-color);
|
|
}
|
|
*,
|
|
p {
|
|
color: var(--content-card-text-color);
|
|
}
|
|
|
|
li {
|
|
list-style: disc;
|
|
margin-left: 1rem;
|
|
margin-bottom: 0.5rem;
|
|
font-weight: 300;
|
|
}
|
|
}
|