mirror of
https://github.com/janishutz/fundamentals-of-webengineering.git
synced 2025-11-25 05:44:24 +00:00
21 lines
226 B
CSS
21 lines
226 B
CSS
:root {
|
|
--spacing: 1rem;
|
|
--border-color: #a0a0a0;
|
|
}
|
|
|
|
/* Style for definition list */
|
|
dl {
|
|
margin-top: 0;
|
|
margin-bottom: 20px;
|
|
}
|
|
dt,
|
|
dd {
|
|
line-height: 1.42857143;
|
|
}
|
|
dt {
|
|
font-weight: 700;
|
|
}
|
|
dd {
|
|
margin-left: 0;
|
|
}
|