FanficNotes/.obsidian/snippets/cool.css

32 lines
537 B
CSS
Raw Normal View History

2024-06-08 07:40:31 +00:00
table thead{
background-color: #fad3fe;
}
table{
border-radius:5em;
}
table th:first-of-type{
border-top-left-radius:6px;
}
:root table {
border-collapse: separate;
border-spacing: 0;
}
th:first-of-type {
border-top-left-radius: 8px;
}
th:last-of-type {
border-top-right-radius: 8px;
}
tr:last-of-type td:first-of-type {
border-bottom-left-radius: 8px;
}
tr:last-of-type td:last-of-type {
border-bottom-right-radius: 8px;
}
:root :is(td, th) {
border-width: 0 var(--table-border-width) var(--table-border-width) 0;
}