improve public dashboard

This commit is contained in:
msquare 2017-12-13 12:46:15 +01:00
parent 991058a9e4
commit 2fdf520daf
8 changed files with 56 additions and 1 deletions

View File

@ -6738,6 +6738,8 @@ body {
} }
.stats { .stats {
position: relative; position: relative;
float: left;
width: 50%;
min-height: 1px; min-height: 1px;
padding-left: 15px; padding-left: 15px;
padding-right: 15px; padding-right: 15px;
@ -6753,6 +6755,11 @@ body {
font-size: 80px; font-size: 80px;
font-weight: 200; font-weight: 200;
} }
@media (max-width: 992px) {
.stats .number {
font-size: 40px;
}
}
.stats-danger { .stats-danger {
color: #d9534f; color: #d9534f;
} }

View File

@ -6761,6 +6761,8 @@ body {
} }
.stats { .stats {
position: relative; position: relative;
float: left;
width: 50%;
min-height: 1px; min-height: 1px;
padding-left: 15px; padding-left: 15px;
padding-right: 15px; padding-right: 15px;
@ -6776,6 +6778,11 @@ body {
font-size: 80px; font-size: 80px;
font-weight: 200; font-weight: 200;
} }
@media (max-width: 992px) {
.stats .number {
font-size: 40px;
}
}
.stats-danger { .stats-danger {
color: #d9534f; color: #d9534f;
} }

View File

@ -6738,6 +6738,8 @@ body {
} }
.stats { .stats {
position: relative; position: relative;
float: left;
width: 50%;
min-height: 1px; min-height: 1px;
padding-left: 15px; padding-left: 15px;
padding-right: 15px; padding-right: 15px;
@ -6753,6 +6755,11 @@ body {
font-size: 80px; font-size: 80px;
font-weight: 200; font-weight: 200;
} }
@media (max-width: 992px) {
.stats .number {
font-size: 40px;
}
}
.stats-danger { .stats-danger {
color: #7f528b; color: #7f528b;
} }

View File

@ -6747,6 +6747,8 @@ body {
} }
.stats { .stats {
position: relative; position: relative;
float: left;
width: 50%;
min-height: 1px; min-height: 1px;
padding-left: 15px; padding-left: 15px;
padding-right: 15px; padding-right: 15px;
@ -6762,6 +6764,11 @@ body {
font-size: 80px; font-size: 80px;
font-weight: 200; font-weight: 200;
} }
@media (max-width: 992px) {
.stats .number {
font-size: 40px;
}
}
.stats-danger { .stats-danger {
color: #da1639; color: #da1639;
} }

View File

@ -6761,6 +6761,8 @@ body {
} }
.stats { .stats {
position: relative; position: relative;
float: left;
width: 50%;
min-height: 1px; min-height: 1px;
padding-left: 15px; padding-left: 15px;
padding-right: 15px; padding-right: 15px;
@ -6776,6 +6778,11 @@ body {
font-size: 80px; font-size: 80px;
font-weight: 200; font-weight: 200;
} }
@media (max-width: 992px) {
.stats .number {
font-size: 40px;
}
}
.stats-danger { .stats-danger {
color: #ff263c; color: #ff263c;
} }

View File

@ -6741,6 +6741,8 @@ body {
} }
.stats { .stats {
position: relative; position: relative;
float: left;
width: 50%;
min-height: 1px; min-height: 1px;
padding-left: 15px; padding-left: 15px;
padding-right: 15px; padding-right: 15px;
@ -6756,6 +6758,11 @@ body {
font-size: 80px; font-size: 80px;
font-weight: 200; font-weight: 200;
} }
@media (max-width: 992px) {
.stats .number {
font-size: 40px;
}
}
.stats-danger { .stats-danger {
color: #ff6600; color: #ff6600;
} }

View File

@ -6764,6 +6764,8 @@ body {
} }
.stats { .stats {
position: relative; position: relative;
float: left;
width: 50%;
min-height: 1px; min-height: 1px;
padding-left: 15px; padding-left: 15px;
padding-right: 15px; padding-right: 15px;
@ -6779,6 +6781,11 @@ body {
font-size: 80px; font-size: 80px;
font-weight: 200; font-weight: 200;
} }
@media (max-width: 992px) {
.stats .number {
font-size: 40px;
}
}
.stats-danger { .stats-danger {
color: #ff6600; color: #ff6600;
} }

View File

@ -22,13 +22,19 @@ body {
} }
.stats { .stats {
.make-md-column(3); .make-md-column(3);
.make-xs-column(6);
text-align: center; text-align: center;
.number { .number {
font-size: 80px; font-size: 80px;
font-weight: 200; font-weight: 200;
} }
@media (max-width: @screen-md) {
.number {
font-size: 40px;
}
}
} }
.stats-danger { .stats-danger {