32 lines
424 B
CSS

body {
background: #352f5b;
}
.container {
max-width: 400px;
}
input[type=text],
input[type=text]:focus {
color: #fff;
border: none;
background: rgba(0, 0, 0, 0.2);
max-width: 400px;
}
.todos li {
background: #423a6f;
}
.delete {
cursor: pointer;
}
.list-group-item span,
.list-group-item i {
color: #fff;
}
.filtered {
display: none !important;
}