soapbox/app/styles/dashboard.scss

77 wiersze
1.2 KiB
SCSS
Czysty Zwykły widok Historia

2020-03-27 20:59:38 +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;
2020-06-07 03:55:00 +00:00
background: var(--brand-color--faint);
2020-03-27 20:59:38 +00:00
border-radius: 4px;
}
& > a {
text-decoration: none;
color: inherit;
display: block;
&:hover,
&:focus,
&:active {
2020-06-07 03:55:00 +00:00
background: var(--brand-color--med);
2020-03-27 20:59:38 +00:00
}
}
}
&__num,
&__text {
text-align: center;
font-weight: 500;
font-size: 24px;
line-height: 21px;
2020-05-31 23:44:20 +00:00
color: var(--primary-text-color);
2020-06-02 22:42:09 +00:00
font-family: var(--font-display), sans-serif;
2020-03-27 20:59:38 +00:00
margin-bottom: 20px;
line-height: 30px;
}
&__text {
font-size: 18px;
}
&__label {
font-size: 14px;
2020-06-07 03:55:00 +00:00
color: var(--primary-text-color--faint);
2020-03-27 20:59:38 +00:00
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) {
2020-06-02 22:42:09 +00:00
color: var(--background-color);
2020-03-27 20:59:38 +00:00
font-weight: 500;
text-decoration: none;
}
}