2018-05-22 17:00:42 +01:00
|
|
|
footer {
|
2018-05-22 15:56:54 +01:00
|
|
|
background-color: $color-primary-light;
|
2018-05-29 18:26:04 +01:00
|
|
|
color: $color-gray;
|
2018-05-22 15:56:54 +01:00
|
|
|
font-weight: 500;
|
2018-05-29 18:26:04 +01:00
|
|
|
font-size: 1rem;
|
|
|
|
padding: 5px 2rem;
|
2018-05-22 15:56:54 +01:00
|
|
|
}
|
2018-05-22 17:00:42 +01:00
|
|
|
|
|
|
|
.footer {
|
2018-05-29 18:26:04 +01:00
|
|
|
display: flex;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2018-05-22 17:00:42 +01:00
|
|
|
a, a:visited {
|
|
|
|
@include ease-in();
|
2018-05-29 18:26:04 +01:00
|
|
|
color: $color-gray;
|
2018-05-22 17:00:42 +01:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2018-05-29 18:26:04 +01:00
|
|
|
|
|
|
|
> .progress {
|
|
|
|
display: inline-block;
|
2018-07-09 14:41:55 -04:00
|
|
|
text-align: right;
|
2018-05-29 18:26:04 +01:00
|
|
|
|
|
|
|
> img {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .progress-done {
|
|
|
|
background-color: $color-green;
|
|
|
|
color: $color-white;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 1rem;
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
@include border-radius(20px);
|
|
|
|
}
|
2018-07-09 14:41:55 -04:00
|
|
|
|
|
|
|
> .progress-notification {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 1rem;
|
|
|
|
color: $color-green;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2018-05-22 17:00:42 +01:00
|
|
|
}
|