mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 22:59:58 -07:00
140 lines
2.5 KiB
CSS
140 lines
2.5 KiB
CSS
#table {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
padding: var(--main-padding);
|
|
|
|
> div {
|
|
display: flex;
|
|
font-size: var(--font-size-xs);
|
|
line-height: var(--line-height-xs);
|
|
font-weight: 450;
|
|
margin-left: var(--negative-main-padding);
|
|
margin-right: var(--negative-main-padding);
|
|
|
|
table {
|
|
z-index: 10;
|
|
border-top-width: 1px;
|
|
border-style: dashed !important;
|
|
line-height: var(--line-height-sm);
|
|
text-transform: uppercase;
|
|
table-layout: auto;
|
|
border-collapse: separate;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
th {
|
|
font-weight: 600;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
border-right: 1px;
|
|
border-bottom: 1px;
|
|
border-color: var(--off-color);
|
|
border-style: dashed !important;
|
|
padding: 0.25rem 0.75rem;
|
|
}
|
|
|
|
td {
|
|
text-transform: none;
|
|
}
|
|
|
|
a {
|
|
margin: -0.2rem 0;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
th:first-child {
|
|
padding-left: var(--main-padding);
|
|
}
|
|
|
|
th[scope="col"] {
|
|
position: sticky;
|
|
top: 0;
|
|
background-color: var(--background-color);
|
|
|
|
> div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-top: 0.275rem;
|
|
|
|
> div {
|
|
display: flex;
|
|
gap: 0.25rem;
|
|
text-transform: lowercase;
|
|
color: var(--off-color);
|
|
text-align: left;
|
|
|
|
&:first-child {
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
&:last-child {
|
|
gap: 1rem;
|
|
}
|
|
|
|
> span {
|
|
width: 100%;
|
|
}
|
|
|
|
> button {
|
|
padding: 0 0.25rem;
|
|
margin: 0 -0.25rem;
|
|
font-size: 0.75rem;
|
|
line-height: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:first-child {
|
|
button {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&:nth-child(2) {
|
|
button:nth-of-type(1) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
button:nth-of-type(2) {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
select {
|
|
margin-right: -4px;
|
|
}
|
|
|
|
tbody {
|
|
text-align: right;
|
|
}
|
|
|
|
> button {
|
|
padding: 1rem;
|
|
min-width: 10rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
position: relative;
|
|
border-top-width: 1px;
|
|
width: 100%;
|
|
border-bottom-width: 1px;
|
|
border-style: dashed !important;
|
|
|
|
> span {
|
|
text-align: left;
|
|
position: sticky;
|
|
top: 2rem;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|