You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
473 B
CSS

:root {
--background: white!important;
}
.page--content p {
grid-column: 1 / span 2;
}
.bubble + .bubble {
margin-top: 30px;
}
.bubble:nth-child(2n + 2) {
/* background-color: var(--orange); */
grid-column-start: 1;
}
p.bubble {
grid-column-start: 2;
margin: 30px 0;
border: 1px solid currentColor;
padding: 12px;
border-radius: var(--radius);
text-indent: 0;
justify-self: start;
}
.page--content p.intro {
text-indent: 0;
margin-bottom: 30px;
}