18 lines
585 B
CSS
18 lines
585 B
CSS
.cardObj {
|
|
border-radius: 0.375rem;
|
|
background: linear-gradient(121deg, rgba(255, 255, 255, 0.2) -0.71%, rgba(255, 255, 255, 0.05) 97.66%);
|
|
box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.25);
|
|
}
|
|
.table-dark {
|
|
--bs-table-color: #fff;
|
|
--bs-table-bg: transparent;
|
|
--bs-table-border-color: #4d5154;
|
|
--bs-table-striped-bg: #2c3034;
|
|
--bs-table-striped-color: #fff;
|
|
--bs-table-active-bg: #373b3e;
|
|
--bs-table-active-color: #fff;
|
|
--bs-table-hover-bg: #323539;
|
|
--bs-table-hover-color: #fff;
|
|
color: var(--bs-table-color);
|
|
border-color: var(--bs-table-border-color);
|
|
} |