-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimplify.css
232 lines (191 loc) · 3.5 KB
/
simplify.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/* Reset some things */
html, body, div, h1, h2, h3, h4, h5, ul, ol, li, form, fieldset,
input, textarea {
margin: 0;
padding: 0;
font-size: 100%;
}
ul {list-style: none;}
img, fieldset {border: 0;}
h1, h2, h3, h4 {font-weight: normal;}
em {font-style: italic;}
strong {font-weight: bold;}
/* end reset */
html {
font-size:1.4em;
}
body {
font-family: Helvetica, sans serif;
width: 400px;
margin: 5px auto;
}
h1,h3 {
text-align:center;
}
h1 {
font-size:2em;
}
h3 {
font-size:1.1em;
margin-bottom:20px;
}
/* ------- link bar stylings ---------- */
#details {
position:absolute;
right:10px;
}
#linkbar {
float:right;
}
#linkbar li {
display : inline;
}
#linkbar li:before {
content: " | ";
}
#linkbar li:first-child:before {
content: "";
}
#details #expanded_details {
width: 250px;
padding-top:5px;
clear:both;
}
#expanded_details .content {
border: 1px solid #666;
background: #eee;
padding:10px;
display:none;
}
#footer {
margin-top: 5px;
clear:both;
}
#footer li {
clear:right;
float:right;
font-size: .9em;
}
#footer li:first-child {
margin: 15px 0 0 0px;
}
/* ------- list styling ---------- */
#list_container, .thing_count {
width: 90%;
margin: 0 auto;
}
.thing_count {
text-align:center;
background: rgb(60,60,60);
color:white;
border: 1px solid black;
}
.thing_count#top {
border-bottom:0px;
-moz-border-radius-topleft: 10px;
-webkit-border-top-left-radius: 10px;
-moz-border-radius-topright: 10px;
-webkit-border-top-right-radius: 10px;
}
.thing_count#bottom {
border-top:0px;
-moz-border-radius-bottomleft: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-bottomright: 10px;
-webkit-border-bottom-right-radius: 10px;
clear:both;
}
.category_box {
float:left;
width:100%;
}
/* padding thing count screws up the width */
.category {
margin: 5px;
margin-bottom:0px;
background-color: #aaa;
color:white;
font-weight:normal;
cursor: pointer;
}
h5.highlight {
background-color: #999;
}
.category span {
padding: 8px 0px 3px 10px;
}
#list_container .category input {
padding: 3px;
width: 90%;
margin:4px 10px;
font-size:.9em;
}
.thing_count span {
padding:5px;
display:block;
}
#list_container {
border: 1px solid black;
overflow: auto;
}
#list_container ul {
border: 1px solid #aaa;
margin: 5px;
margin-top:0px;
}
#list_container li {
padding: 3px 0px 3px 10px;
border: 1px solid white;
cursor:pointer;
}
#list_container li.highlight {
border-top:1px solid #aaa;
border-bottom:1px solid #aaa;
background-image: url(images/delete.png);
background-repeat: no-repeat;
background-position: right;
}
#list_container li input {
padding: 3px;
width: 97%;
margin-left: -10px;
font-size:.9em;
}
#list_container li.even {
background: white;
border: 1px solid white;
}
#list_container li.odd {
background: #eee;
border: 1px solid #eee;
}
.add span {
display:block;
margin-right:5px;
background-image: url(images/add.png);
background-repeat: no-repeat;
background-position: right;
}
#list_container .addbutton {
padding: 5px 8px;
display:block;
text-align:center;
margin: 5px;
border: 1px solid #aaa;
cursor: pointer;
-moz-border-radius-topleft: 15px;
-webkit-border-top-left-radius: 15px;
-moz-border-radius-topright: 15px;
-webkit-border-top-right-radius: 15px;
-moz-border-radius-bottomleft: 15px;
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-bottomright: 15px;
-webkit-border-bottom-right-radius: 15px;
clear:both;
}
span.highlight {
background: #ddd;
}
p.tips {
font-size:.8em;
}