DormitoryRepair/admin/css/pages/dashboard.css
2018-09-23 21:25:07 +08:00

89 lines
1.2 KiB
CSS

/*------------------------------------------------------------------
[Table of contents]
1. Stats / .stat-container
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[1. Stats / .stat-container]
*/
.stat-container {
display: table;
margin-bottom: 1.5em;
width: 100%;
}
.stat-holder {
display: table-cell;
width: 25%;
}
.stat span {
display: block;
margin-bottom: .4em;
font-size: 32px;
font-weight: 600;
font-style: normal;
color: #4A515B;
}
.stat {
height: 50px;
padding: 15px;
margin-right: 1em;
font-size: 12px;
font-style: italic;
text-align: center;
color: #888;
background: #FFF;
border: 1px solid #CCC;
border-radius: 5px;
text-shadow: 1px 1px 2px rgba(255,255,255,.5);
}
.stat-container .stat-holder:last-child .stat {
margin: 0;
}
@media (max-width: 767px) {
.stat-container {
float: left;
display: block;
margin-bottom: 1em;
}
.stat-holder {
float: left;
display: block;
width: 50%;
margin-bottom: 1em;
}
.stat {
margin: 0 1em;
}
.stat-container .stat-holder:last-child .stat {
margin: 0 1em;
}
}