Style dl, dt and dd elements
This commit is contained in:
parent
a0e7c155b9
commit
ef52382cb2
|
@ -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;
|
||||||
|
@ -389,7 +403,7 @@ article, .content-container {
|
||||||
.left-sidebar {
|
.left-sidebar {
|
||||||
order: 1;
|
order: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.right-sidebar {
|
.right-sidebar {
|
||||||
order: 3;
|
order: 3;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue