stacker.news/styles/satistics.module.css

54 lines
972 B
CSS
Raw Normal View History

2021-12-15 16:50:11 +00:00
.type {
text-align: left;
border-right: 2px solid var(--theme-clickToContextColor);
padding-right: 15px;
border-bottom: 2px solid var(--theme-clickToContextColor);
display: grid;
align-items: center;
margin-left: -15px;
padding-left: 15px;
2021-12-15 16:50:11 +00:00
}
.sats {
text-align: right;
border-left: 2px solid var(--theme-clickToContextColor);
padding-left: 15px;
border-bottom: 2px solid var(--theme-clickToContextColor);
display: grid;
align-items: center;
margin-right: -15px;
padding-right: 15px;
2023-07-24 18:35:05 +00:00
font-family: monospace;
2021-12-15 16:50:11 +00:00
}
.detail {
border-bottom: 2px solid var(--theme-clickToContextColor);
padding: .5rem;
display: grid;
align-items: center;
2022-11-23 18:12:09 +00:00
}
.detail.head {
text-align: center;
}
2023-07-24 18:35:05 +00:00
.sats.head {
font-family: inherit;
}
.head {
font-weight: bold;
text-transform: uppercase;
padding-bottom: .75rem;
2021-12-15 16:50:11 +00:00
}
.failed {
text-decoration: line-through;
2021-12-16 20:02:17 +00:00
}
.rows {
display: grid;
grid-template-columns: max-content 1fr max-content;
2021-12-16 20:02:17 +00:00
}