mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
49 lines
704 B
CSS
49 lines
704 B
CSS
.container {
|
|
padding: 10px;
|
|
}
|
|
|
|
.infoRow {
|
|
display: flex;
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
.infoRow > * {
|
|
padding: 0px 8px;
|
|
|
|
}
|
|
|
|
.infoRow :first-child {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
text-align: end;
|
|
align-items: center;
|
|
}
|
|
|
|
.infoRow :last-child {
|
|
flex: 2;
|
|
color: var(--text-color);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.peerContainer, .peerHeader {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-content: center;
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
.peerContainer {
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.peerContainer > *, .peerHeader > * {
|
|
flex: 1;
|
|
}
|
|
|
|
.title {
|
|
color: var(--text-color);
|
|
font-size: 20px;
|
|
text-align: center;
|
|
}
|