Style dl, dt and dd elements

This commit is contained in:
Helen Chong 2024-01-12 21:01:17 +08:00
parent a0e7c155b9
commit ef52382cb2
1 changed files with 15 additions and 1 deletions

View File

@ -216,6 +216,20 @@ summary {
cursor: pointer; cursor: pointer;
} }
dl {
display: grid;
grid-gap: 0.4rem 1rem;
grid-template-columns: max-content;
}
dt {
font-weight: bold;
}
dd {
grid-column-start: 2;
}
/* ELEMENT STYLES WITH CUSTOM CLASSES */ /* ELEMENT STYLES WITH CUSTOM CLASSES */
.bold-text { .bold-text {
font-weight: 700; font-weight: 700;