houdini/app/assets/stylesheets/components/todos.css.scss
2020-06-15 10:26:57 -05:00

56 lines
1,002 B
SCSS

/* License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE */
@import 'mixins';
.todos {
background: #f8f8f8;
}
.todos-header {
background: lighten($grey, 41);
padding: 15px 15px 5px 15px;
text-align: center;
}
.todos ul {
margin: 0;
}
.todos .checkbox-outer {
line-height: 18px;
width: 21px;
margin: 0 10px 0 0;
border: 1px solid rgba(black, 0.3);
background: rgba(white, 0.5);
text-align: center;
display: inline-block;
}
.todos li i {
@include opacity(0);
font-size: 12px;
color: black;
vertical-align: middle;
}
.todos .name {
vertical-align: middle;
}
.todos li {
padding: 7px 15px;
@include stripes($shade);
}
.progressBar--medium {
width: 80%;
margin: 10px auto;
}
.npo-todo-percent span {
font-size: 18px;
}
.todos li.is-done {
i {
@include opacity(1);
}
.name {
text-decoration: line-through;
color: rgba(black, 0.4);
}
a {
pointer-events: none;
color: inherit;
}
}