taiga-front/app/styles/components/summary.scss

81 lines
1.4 KiB
SCSS

.summary {
@include clearfix;
background: $grayer;
color: $white;
margin-bottom: 2rem;
padding: 1em;
ul {
display: inline-block;
margin: 0;
padding: 0;
}
li {
display: inline-block;
margin-right: 1rem;
}
.data {
float: left;
margin-right: 1.5em;
margin-top: 4px;
.number {
color: $fresh-taiga;
top: 0;
}
}
.icon {
@extend %large;
float: left;
}
.number {
@extend %xlarge;
float: left;
font-family: 'DroidSans-Bold';
margin-right: .3rem;
position: relative;
top: 5px;
}
.description {
// line-height: 0;
@extend %small;
float: left;
font-family: DroidSans;
line-height: .9rem;
}
}
.summary-progress-bar {
background: $whitish;
float: left;
height: 26px;
margin-bottom: 0;
margin-right: 10px;
position: relative;
width: 20%;
.current-progress {
background: $fresh-taiga;
height: 20px;
left: 2px;
position: absolute;
top: 3px;
width: calc(30% - 4px);
}
}
.large-summary {
ul {
border-right: 1px solid $whitish;
margin-right: 1rem;
&:last-child {
border-right: 0;
margin-right: 0;
}
}
.icon {
@extend %xlarge;
margin-right: .4rem;
}
}