asi-calculator/components/Content/Content.module.css

46 lines
612 B
CSS
Raw Normal View History

2024-03-30 01:32:46 +01:00
.content {
max-width: var(--max-width);
margin: auto;
}
2024-03-30 23:10:36 +01:00
.content p,
.content ul,
.content ol,
.content h2,
.content h3,
.content h4,
.content h5 {
margin-bottom: 1.5rem;
2024-03-30 01:32:46 +01:00
}
.content a {
text-decoration: underline;
}
2024-03-30 21:56:36 +01:00
.content ul {
2024-03-30 23:10:36 +01:00
list-style-type: square;
margin-left: 1rem;
2024-03-30 21:56:36 +01:00
}
.content ol {
list-style-type: decimal;
2024-03-30 23:10:36 +01:00
margin-left: 1rem;
2024-03-30 21:56:36 +01:00
}
.content li {
margin-bottom: 0.5rem;
2024-03-30 23:10:36 +01:00
padding-left: 0.25rem;
2024-03-30 21:56:36 +01:00
}
.content table {
width: 100%;
margin-bottom: 1.5rem;
}
.content th,
.content td {
border-bottom: 1px solid rgba(var(--foreground-rgb), 0.2);
padding: .5rem;
text-align: left;
}