-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.css
More file actions
61 lines (50 loc) · 1.02 KB
/
todo.css
File metadata and controls
61 lines (50 loc) · 1.02 KB
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
.todo-container {
width: 50%;
margin: auto;
}
.todo-container h1 {
text-align: center;
font-family: 'Lobster', cursive;
font-size: 3em;
}
.todo-item-list {
list-style: none;
}
.todo-item-list li {
font-family: 'Courier New', Courier;
}
.add-item-container input {
display: block;
margin: auto;
padding: 4px;
}
.add-item-container input[placeholder] {
font-family: 'Courier New', Courier;
width: 300px;
text-align: center;
}
.add-item-container button {
display: block;
margin: auto;
padding: 8px 25px;
background: #fff;
border: 1px solid #000;
cursor: pointer;
margin-top: 10px;
font-family: 'Courier';
}
.add-item-container button:hover {
background: #000;
color: #fff;
}
.todo-item-list input[type='checkbox'] {
float: left;
}
.checked-item {
text-decoration: line-through;
}
@media (max-width: 700px) {
.todo-container { width: 95% }
.todo-container h1 { font-size: 31px; }
.add-item-container input[placeholder] { width: 200px; border: 1px solid #000;}
}