1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-20 13:49:42 +02:00
documize/gui/app/styles/core/layout/layout-footer.scss

52 lines
761 B
SCSS
Raw Normal View History

2018-05-22 17:00:42 +01:00
footer {
background-color: $color-primary-light;
2018-05-29 18:26:04 +01:00
color: $color-gray;
font-weight: 500;
2018-05-29 18:26:04 +01:00
font-size: 1rem;
padding: 5px 2rem;
}
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;
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);
}
> .progress-notification {
display: inline-block;
font-size: 1rem;
color: $color-green;
font-weight: 500;
}
2018-05-22 17:00:42 +01:00
}