2018-07-18 20:32:27 +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;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-02 14:38:48 +00:00
|
|
|
&__num,
|
|
|
|
&__text {
|
2018-07-18 20:32:27 +00:00
|
|
|
text-align: center;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 24px;
|
2019-01-02 14:38:48 +00:00
|
|
|
line-height: 21px;
|
2018-07-18 20:32:27 +00:00
|
|
|
color: $primary-text-color;
|
2018-10-01 11:13:58 +00:00
|
|
|
font-family: $font-display, sans-serif;
|
2018-07-18 20:32:27 +00:00
|
|
|
margin-bottom: 20px;
|
2019-01-10 19:27:20 +00:00
|
|
|
line-height: 30px;
|
2018-07-18 20:32:27 +00:00
|
|
|
}
|
|
|
|
|
2019-01-02 14:38:48 +00:00
|
|
|
&__text {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2018-07-18 20:32:27 +00:00
|
|
|
&__label {
|
|
|
|
font-size: 14px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard__widgets {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin: 0 -5px;
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
flex: 0 0 33.333%;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a:not(.name-tag) {
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
font-weight: 500;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|