-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhid.css
110 lines (91 loc) · 1.32 KB
/
whid.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
#wrapper {
max-width: 800px;
margin: 0 auto 3em;
}
.nav,
.tasks,
.actions {
max-width: 425px;
margin: 0 auto;
}
.nav {
margin: 1em auto;
}
#top_header {
background-color: orange;
border-bottom: 1px solid #ccc;
}
h1, h2 {
font-weight: normal;
text-align: center;
margin: 0;
}
h1 {
font-size: 37px;
}
h2 {
font-size: 23px;
}
.nav {
position: relative;
}
.today {
position: absolute;
left:40%;
}
#handle {
cursor: row-resize;
padding: 0 0 15px;
position: relative;
}
#handle .pull_left {
text-align: right;
margin-left: -3em;
font-size: 5em;
color: #DDD;
}
#handle .done {
position: relative;
top: -1em;
}
#handle .todo {
position: relative;
top: 1em;
}
#handle .decorative {
position: absolute;
top: 14px;
height: 7px;
width: 99%;
border: 2px solid #919191;
background-color: #F0F0F0;
z-index: -1;
}
.task p,
.task .edit {
margin-left: 12px;
}
.task p {
padding: 3px 19px;
margin-bottom: 9px;
line-height: 20px;
}
.task input[type="checkbox"] {
margin-top: 8px;
}
.tasks {
list-style-type: none;
}
.tasks .well {
padding: 6px 19px 0px 19px;
margin-bottom:14px;
}
.tasks button {
margin-left: 7px;
}
.tasks .done {
color: #24BD24;
}
.add_task input {
width: 97%;
}