asi-calculator/components/Content/Content.module.css
Matthias Kretschmann 436babf4ba
add CUDOS calculations (#40)
* add CUDOS calculations

* content updates

* token order switch

* uniswap quote fix

* list & link community proposals

* migration tool scenario simplification

* rename Uniswap label

* ratio harmonization

* buy ratio fix

* copy updates

* copy updates

* default to 1000 CUDOS
2024-09-19 21:01:39 +01:00

46 lines
612 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;
}
.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;
}