-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
58 lines (58 loc) · 903 Bytes
/
styles.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
body {
background: #666;
width: 100%;
margin: 0 auto;
}
.todo-wrapper {
width: 100%;
}
h2 {
color: #333;
text-align: center;
}
ul {
margin: 0px;
padding: 0px;
border-bottom: 1px solid #ccc;
}
li {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.5em;
padding: 5px;
margin: 0px;
border-top: 1px solid #ccc;
}
li input[type="checkbox"] {
width: 20px;
padding: 5px;
}
.done-true {
text-decoration: line-through;
color: #f00;
}
.flabel {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px 0px 12px;
margin: 0px;
font-size: 14px;
line-height: 1.42857143;
color: #09C;
font-weight: 700;
}
.edit {
background: #D6F5D8;
border-top: 2px solid #fff;
border-bottom: 2px solid #fff;
padding: 10px;
}
.share {
background: #DCEAF1;
border-top: 2px solid #fff;
border-bottom: 2px solid #fff;
padding: 10px;
}
.add {
padding: 10px 0px 0px 0px;
}