-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
184 lines (162 loc) · 3.23 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
body {
font-family:arial;
background:url(images/whitey.png);
color:#999;
}
a {
text-decoration:none;
font-family:helvetica;
}
a.edit, a.delete {
width:16px;
height:16px;
float:left;
margin:0px 4px 0px 2px;
}
a.edit {
background:url(images/edit.png);
}
a.delete {
background:url(images/trash.png);
}
.on.right {
float:right;
}
ul {
margin-top:10px;
}
ul, li {
margin:0px;
padding:0px;
width:98%;
margin:0px auto;
}
li {
border-bottom:solid 1px #CCC;
list-style:none;
}
li:hover .actions {
visibility:visible;
}
li input[type=checkbox]{
float:right;
}
header {}
header h1 {
padding:25px;
background:#F7F7F7;
text-shadow: 1px 1px 0px #FFF;
border-bottom:solid 1px #DDD;
}
#new-todo{
border-radius:30px;
border:solid 1px #CCC;
outline:none;
background:url(images/todo.png) no-repeat 522px 8px;
box-shadow:1px 1px 1px #EEE;
}
.todo {
padding:10px 0px;
}
.todo form{
display:none;
}
.actions {
visibility:hidden;
}
.editing .content {
display:none;
}
.todo span {
width:15px;
overflow:hidden;
}
.done span {
text-decoration:line-through;
color:#CCC;
}
.done .actions {
text-decoration:none;
}
.delete {
color:gray;
left:200px;
font-size:12px;
color:maroon;
}
.cancel {
font-size:11px;
color:maroon;
}
#app {
width:600px;
margin:0px auto;
background:#FFF;
border:solid 0px #FFF;
box-shadow:1px 1px 10px #999;
margin-top:30px;
padding-bottom:1px;
}
#app .contents {
margin:25px;
}
#app input[type=text] {
width:100%;
padding:10px;
}
#app .editing {
/*
background:yellow;
padding:10px;
border:solid 2px #DDD;
box-shadow:1px 1px 1px #000;
*/
}
#app .editing form{
display:inline;
width:75%;
padding:0px;
color:green;
}
footer {
width:585px;
margin:10px auto;
padding:0px 25px;
font-size:12px;
}
footer a {
color:#999;
text-decoration:underline;
}
button {
cursor:pointer;
-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
box-shadow:inset 0px 1px 0px 0px #ffffff;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9) );
background:-moz-linear-gradient( center top, #f9f9f9 5%, #e9e9e9 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
background-color:#f9f9f9;
-moz-border-radius:41px;
-webkit-border-radius:41px;
border-radius:41px;
border:1px solid #dcdcdc;
display:inline-block;
color:#666666;
font-family:arial;
font-size:12px;
font-weight:normal;
padding:3px 18px;
text-decoration:none;
text-shadow:1px 1px 0px #ffffff;
}
button:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9) );
background:-moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
background-color:#e9e9e9;
}
button:active {
position:relative;
top:1px;
}