blob: 5ee2e2879e19cf1a43efa751fa371f5903d61918 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
body {
background-color: #f4f4f4;
margin-top: 50px;
font-family: 'Lato';
}
.item {
background-color: white;
padding: 15px;
margin-bottom: 15px;
border: transparent;
border-radius: 5px;
box-shadow: 0 0 1em #ccc;
transition: all .2s ease-in-out;
}
.item:hover {
box-shadow: 0 0 1em #aaa;
}
.item.completed {
text-decoration: line-through;
}
.toggles {
color: black;
}
.name {
padding-top: 3px;
}
.remove {
padding-left: 0;
}
button:focus {
border: 1px solid #333;
}
|