-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (107 loc) · 3.02 KB
/
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
* {
padding: 0;
margin: 0;
}
body {
height: 800px;
background-color: rgba(131, 131, 130, 0.452);
}
ol, li{
list-style: none;
}
.header {
height: 50px;
background-color: #000;
color: #fff;
margin-bottom: 20px;
}
.form {
margin: 0 auto;
min-width: 100px;
max-width: 600px;
position: relative;
line-height: 50px;
}
.form label {
float: left;
cursor: pointer;
font-size: 24px;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}
.form input{
float: right;
height: 26px;
margin-top: 12px;
border: none;
width: 60%;
max-width: 300px;
text-indent: 10px;
border-radius: 5px;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.24), 0 1px 6px rgba(0, 0, 0, 0.45) inset;
margin-right: 20px ;
}
.content {
min-width: 100px;
max-width: 600px;
margin: 0 auto;
margin-bottom: 20px;
}
.doing, .done {
position: relative;
}
.todocount, .donecount {
position: absolute;
top: 5px;
right: 10px;
}
.doing h2, .done h2 {
margin-bottom: 20px;
}
.todolist li, .donelist li{
position: relative;
padding-left: 40px;
height: 30px;
line-height: 30px;
border-left: solid 10px rgba(60, 139, 230, 0.685);
border-radius: 5px;
background-color: rgba(245, 245, 245, 0.747);
margin-bottom: 20px;
}
.todolist li input, .donelist li input {
position: absolute;
left: 10px;
top: 5px;
width: 20px;
height: 20px;
cursor: pointer;
}
.todolist li a, .donelist li a {
position: absolute;
right: 10px;
top: 5px;
width: 20px;
height: 20px;
text-align: center;
line-height: 18px;
border-radius: 20px;
background-color: rgba(179, 174, 174, 0.747);
cursor: pointer;
}
.todolist li button, .donelist li button {
position: absolute;
right: 10px;
top: 5px;
width: 20px;
height: 20px;
line-height: 10px;
text-align: center;
border-radius: 50%;
background-color: rgba(179, 174, 174, 0.747);
cursor: pointer;
}
.footer {
color: #666;
font-size: 14px;
margin-top: 30px;
text-align: center;
}