mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-25 22:09:36 +02:00
41 lines
656 B
CSS
41 lines
656 B
CSS
|
.TableContainer {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.Table {
|
||
|
border-collapse: collapse;
|
||
|
width: 100%;
|
||
|
text-align: left;
|
||
|
font-size: 16px;
|
||
|
color: var(--color-primary);
|
||
|
}
|
||
|
|
||
|
.Table th,
|
||
|
.Table td {
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|
||
|
/* Head */
|
||
|
|
||
|
.Table th {
|
||
|
--header-radius: 4px;
|
||
|
background-color: var(--color-primary);
|
||
|
color: var(--color-background);
|
||
|
}
|
||
|
|
||
|
.Table th:first-child {
|
||
|
border-top-left-radius: var(--header-radius);
|
||
|
border-bottom-left-radius: var(--header-radius);
|
||
|
}
|
||
|
|
||
|
.Table th:last-child {
|
||
|
border-top-right-radius: var(--header-radius);
|
||
|
border-bottom-right-radius: var(--header-radius);
|
||
|
}
|
||
|
|
||
|
/* Body */
|
||
|
|
||
|
.Table td {
|
||
|
/* opacity: 0.5; */
|
||
|
transition: all 0.2s;
|
||
|
}
|