mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
104 lines
1.3 KiB
CSS
104 lines
1.3 KiB
CSS
.container {
|
|
display: flex;
|
|
flex-flow: column;
|
|
height: calc(98vh);
|
|
}
|
|
|
|
.container:first-child {
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.table {
|
|
flex: 1 1 auto;
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
background-color: #1f2021;
|
|
}
|
|
|
|
.row,
|
|
.headerRow {
|
|
display: flex;
|
|
padding: 1px;
|
|
}
|
|
|
|
.row:hover {
|
|
background-color: #191919;
|
|
cursor: default;
|
|
text-shadow: 1px 1px 6px gray;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.row div,
|
|
.headerRow div {
|
|
flex: 1;
|
|
padding: 0px 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
.headerRow > div {
|
|
padding: 5px;
|
|
}
|
|
|
|
.row :nth-child(1),
|
|
.headerRow :nth-child(1) {
|
|
flex: 0 30px;
|
|
}
|
|
|
|
.row :nth-child(2),
|
|
.headerRow :nth-child(2) {
|
|
flex: 0 130px;
|
|
text-align: left;
|
|
}
|
|
|
|
.clickable:hover {
|
|
background-color: var(--hoover-color);
|
|
}
|
|
|
|
.clickable {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.selfRow {
|
|
background-color: var(--text-color);
|
|
color: black;
|
|
}
|
|
|
|
.selfRow:hover {
|
|
background-color: #9999ee;
|
|
}
|
|
|
|
.text {
|
|
text-align: center;
|
|
font-size: 12px;
|
|
font-style: italic;
|
|
color: var(--text-color);
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.infoText {
|
|
text-align: center;
|
|
font-size: 20px;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.selected {
|
|
background-color: #222;
|
|
}
|
|
|
|
.sumrow {
|
|
color: white;
|
|
}
|
|
|
|
.selectContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.selectContainer > select {
|
|
width: 30%;
|
|
}
|
|
|
|
.selectContainer > div {
|
|
padding: 0px 5px;
|
|
}
|