mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-07-07 17:18:13 -07:00
72 lines
1.4 KiB
CSS
72 lines
1.4 KiB
CSS
#block-details section[data-group="mining"] {
|
|
--section-color: var(--orange);
|
|
|
|
[data-miner-pane] {
|
|
display: grid;
|
|
gap: 1rem;
|
|
min-width: 0;
|
|
}
|
|
|
|
[data-miner-head] {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
min-width: 0;
|
|
}
|
|
|
|
[data-miner-identity] {
|
|
display: grid;
|
|
gap: 0.125rem;
|
|
min-width: 0;
|
|
}
|
|
|
|
[data-miner-title] {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
align-items: baseline;
|
|
min-width: 0;
|
|
|
|
> strong {
|
|
min-width: 0;
|
|
overflow-wrap: anywhere;
|
|
color: var(--white);
|
|
font-size: var(--font-size-sm);
|
|
font-weight: var(--font-weight-strong);
|
|
line-height: var(--line-height-sm);
|
|
}
|
|
|
|
> span {
|
|
color: var(--gray);
|
|
font-size: var(--font-size-sm);
|
|
line-height: var(--line-height-sm);
|
|
}
|
|
}
|
|
|
|
[data-miner-slug] {
|
|
min-width: 0;
|
|
overflow-wrap: anywhere;
|
|
color: var(--gray);
|
|
font-size: var(--font-size-sm);
|
|
line-height: var(--line-height-sm);
|
|
}
|
|
|
|
[data-miner-logo] {
|
|
width: 1.25rem;
|
|
height: 1.25rem;
|
|
object-fit: contain;
|
|
}
|
|
|
|
[data-coinbase-message] {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
color: var(--white);
|
|
font-size: var(--font-size-sm);
|
|
font-style: italic;
|
|
line-height: var(--line-height-sm);
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
}
|