-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (58 loc) · 981 Bytes
/
style.css
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 18px;
}
.container {
margin: 20px auto;
width: 500px;
border: 1px solid #e6e6e6;
border-radius: 3px;
}
h1 {
text-align: center;
}
form {
padding: 0 0 20px;
}
input#new-todo {
display: block;
width: 478px;
border-radius: 3px;
border: 1px solid #e6e6e6;
padding: 10px;
font-size: 18px;
}
ul#todolist {
list-style: none;
margin: 0;
padding: 0;
}
ul#todolist li {
padding: 5px;
border: 1px solid #e6e6e6;
border-radius: 3px;
}
ul#todolist li:hover {
background-color: #e6e6e6;
}
ul#todolist .todo.completed label {
text-decoration: line-through;
color: #999;
}
.footer {
margin-top: 10px;
background: #323232;
color: #e6e6e6;
padding: 5px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}
.footer a:link,
.footer a:hover,
.footer a:visited {
color: #e6e6e6;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}