2018-07-15 23:11:53 +00:00
|
|
|
.dashboard__counters {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin: 0 -5px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
box-sizing: border-box;
|
|
|
|
flex: 0 0 33.333%;
|
|
|
|
padding: 0 5px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
& > div,
|
|
|
|
& > a {
|
|
|
|
padding: 20px;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 4px;
|
2019-09-02 16:11:34 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
height: 100%;
|
2018-07-15 23:11:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
& > a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-28 02:38:41 +00:00
|
|
|
&__num,
|
|
|
|
&__text {
|
2018-07-15 23:11:53 +00:00
|
|
|
text-align: center;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 24px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
margin-bottom: 20px;
|
2019-01-08 12:39:49 +00:00
|
|
|
line-height: 30px;
|
2018-07-15 23:11:53 +00:00
|
|
|
}
|
|
|
|
|
2018-12-28 02:38:41 +00:00
|
|
|
&__text {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2018-07-15 23:11:53 +00:00
|
|
|
&__label {
|
|
|
|
font-size: 14px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-14 18:44:59 +00:00
|
|
|
.dashboard {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
|
|
|
|
grid-gap: 10px;
|
2018-07-15 23:11:53 +00:00
|
|
|
|
2023-05-01 09:23:57 +00:00
|
|
|
@media screen and (width <= 1350px) {
|
2021-10-21 04:24:34 +00:00
|
|
|
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
|
|
|
|
}
|
|
|
|
|
2021-10-14 18:44:59 +00:00
|
|
|
&__item {
|
|
|
|
&--span-double-column {
|
|
|
|
grid-column: span 2;
|
|
|
|
}
|
2018-07-15 23:11:53 +00:00
|
|
|
|
2021-10-14 18:44:59 +00:00
|
|
|
&--span-double-row {
|
|
|
|
grid-row: span 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
padding-top: 20px;
|
2018-07-15 23:11:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-14 18:44:59 +00:00
|
|
|
&__quick-access {
|
|
|
|
display: flex;
|
|
|
|
align-items: baseline;
|
|
|
|
border-radius: 4px;
|
2023-07-03 09:32:31 +00:00
|
|
|
background: $ui-button-background-color;
|
2021-10-14 18:44:59 +00:00
|
|
|
color: $primary-text-color;
|
|
|
|
transition: all 100ms ease-in;
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 0 16px;
|
|
|
|
line-height: 36px;
|
|
|
|
height: 36px;
|
2018-07-15 23:11:53 +00:00
|
|
|
text-decoration: none;
|
2021-10-14 18:44:59 +00:00
|
|
|
margin-bottom: 4px;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2023-07-03 09:32:31 +00:00
|
|
|
background-color: $ui-button-focus-background-color;
|
2021-10-14 18:44:59 +00:00
|
|
|
transition: all 200ms ease-out;
|
|
|
|
}
|
|
|
|
|
2021-11-25 12:07:38 +00:00
|
|
|
&.positive {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
color: $valid-value-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.negative {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
color: $error-value-color;
|
|
|
|
}
|
|
|
|
|
2021-10-14 18:44:59 +00:00
|
|
|
span {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
2018-07-15 23:11:53 +00:00
|
|
|
}
|
|
|
|
}
|