44 lines
719 B
SCSS
44 lines
719 B
SCSS
.index-stats {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
> div {
|
|
margin-bottom: 20px;
|
|
|
|
@media screen and (max-width: 500px) {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.well {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 100%;
|
|
margin: 0;
|
|
|
|
> .fc,
|
|
> .glyphicon {
|
|
background: #f1f2f6;
|
|
border-radius: $border-radius-base;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
flex-grow: 0;
|
|
font-size: 24px;
|
|
margin-right: 20px;
|
|
width: 43px;
|
|
height: 43px;
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
font-size: 20px;
|
|
margin: 2px 0;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
}
|