2020-12-07 18:35:16 +02:00
|
|
|
@import "../css/_variables";
|
|
|
|
|
|
|
|
.Stats {
|
|
|
|
position: fixed;
|
|
|
|
top: 64px;
|
|
|
|
right: 12px;
|
|
|
|
font-size: 12px;
|
|
|
|
z-index: 999;
|
2020-12-13 14:39:45 +02:00
|
|
|
|
2020-12-07 18:35:16 +02:00
|
|
|
h3 {
|
|
|
|
margin: 0 24px 8px 0;
|
2020-12-13 14:39:45 +02:00
|
|
|
white-space: nowrap;
|
2020-12-07 18:35:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.close {
|
|
|
|
float: right;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
cursor: pointer;
|
|
|
|
svg {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
th {
|
|
|
|
border-bottom: 1px solid var(--input-border-color);
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
tr {
|
|
|
|
td:nth-child(2) {
|
2020-12-13 14:39:45 +02:00
|
|
|
min-width: 24px;
|
2020-12-07 18:35:16 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-13 14:39:45 +02:00
|
|
|
|
|
|
|
:root[dir="rtl"] & {
|
|
|
|
left: 12px;
|
|
|
|
right: initial;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin: 0 0 8px 24px;
|
|
|
|
}
|
|
|
|
.close {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
2020-12-07 18:35:16 +02:00
|
|
|
}
|