mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 17:33:18 +01:00
34 lines
423 B
CSS
34 lines
423 B
CSS
.content {
|
|
max-width: var(--max-width);
|
|
margin: auto;
|
|
}
|
|
|
|
.content p,
|
|
.content ul,
|
|
.content ol,
|
|
.content h2,
|
|
.content h3,
|
|
.content h4,
|
|
.content h5 {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.content a {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.content ul {
|
|
list-style-type: square;
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.content ol {
|
|
list-style-type: decimal;
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.content li {
|
|
margin-bottom: 0.5rem;
|
|
padding-left: 0.25rem;
|
|
}
|