1 | /*
|
---|
2 |
|
---|
3 | // This file is part of the Carrington Mobile Theme for WordPress
|
---|
4 | // http://carringtontheme.com
|
---|
5 | //
|
---|
6 | // Copyright (c) 2008 Crowd Favorite, Ltd. All rights reserved.
|
---|
7 | // http://crowdfavorite.com
|
---|
8 | //
|
---|
9 | // Released under the GPL license
|
---|
10 | // http://www.opensource.org/licenses/gpl-license.php
|
---|
11 | //
|
---|
12 | // **********************************************************************
|
---|
13 | // This program is distributed in the hope that it will be useful, but
|
---|
14 | // WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
---|
16 | // **********************************************************************
|
---|
17 |
|
---|
18 | */
|
---|
19 |
|
---|
20 | body {
|
---|
21 | background:#e5e5e5;
|
---|
22 | font-size:12px;
|
---|
23 | line-height:1.5;
|
---|
24 | color:#333;
|
---|
25 | margin:0;
|
---|
26 | }
|
---|
27 | h1 {font-size:18px;}
|
---|
28 | hr {display:none;}
|
---|
29 | a {color:blue;}
|
---|
30 | blockquote {
|
---|
31 | border-left:2px solid #ddd;
|
---|
32 | margin:0 0 0 5px;
|
---|
33 | padding-left:5px;
|
---|
34 | }
|
---|
35 | ul, ol {
|
---|
36 | margin-left: 40px;
|
---|
37 | }
|
---|
38 | p, li {
|
---|
39 | margin: 0 0 10px;
|
---|
40 | }
|
---|
41 | .small {
|
---|
42 | font-size:10px;
|
---|
43 | line-height:2;
|
---|
44 | }
|
---|
45 | .hide {
|
---|
46 | display: none;
|
---|
47 | }
|
---|
48 | .clear {
|
---|
49 | clear: both;
|
---|
50 | float: none;
|
---|
51 | }
|
---|
52 | .table-title,
|
---|
53 | .content {
|
---|
54 | color:#777;
|
---|
55 | font-size:1em;
|
---|
56 | line-height:1.5;
|
---|
57 | margin:10px;
|
---|
58 | text-shadow: 1px 1px 2px #fff;
|
---|
59 | }
|
---|
60 | .table-title {
|
---|
61 | margin-top:20px;
|
---|
62 | }
|
---|
63 | .group {
|
---|
64 | background:#fff;
|
---|
65 | border:1px solid #ccc;
|
---|
66 | overflow:hidden;
|
---|
67 | margin:10px;
|
---|
68 | padding: 10px;
|
---|
69 | }
|
---|
70 | ul.table.group {
|
---|
71 | margin:10px;
|
---|
72 | padding:0;
|
---|
73 | }
|
---|
74 | ul.table {
|
---|
75 | clear:both;
|
---|
76 | color:#999;
|
---|
77 | list-style:none;
|
---|
78 | margin:0;
|
---|
79 | }
|
---|
80 | ul.table li {
|
---|
81 | border-bottom:1px solid #ccc;
|
---|
82 | padding:15px;
|
---|
83 | }
|
---|
84 | ul.table li:last-child {border:0;}
|
---|
85 | ul.table.disclosure li,
|
---|
86 | ul.table li.disclosure {
|
---|
87 | margin: 0;
|
---|
88 | padding:0;
|
---|
89 | position:relative;
|
---|
90 | }
|
---|
91 | ul.table.disclosure a,
|
---|
92 | ul.table li.disclosure a {
|
---|
93 | border: 0;
|
---|
94 | display:block;
|
---|
95 | padding:5px 10px;
|
---|
96 | text-decoration: none;
|
---|
97 | }
|
---|
98 | ul.table.disclosure a .date,
|
---|
99 | ul.table li.disclosure a .date {
|
---|
100 | color: #666;
|
---|
101 | font-size: 11px;
|
---|
102 | white-space: nowrap;
|
---|
103 | }
|
---|
104 | ul.table li .title {
|
---|
105 | background: #a5a5a5 url(../img/title-dimple.gif) repeat-x top;
|
---|
106 | border-bottom:1px solid #777;
|
---|
107 | color: #fff;
|
---|
108 | display: block;
|
---|
109 | font-size: 10px;
|
---|
110 | font-weight:normal;
|
---|
111 | padding: 3px 8px;
|
---|
112 | text-shadow: 0 1px 1px #555;
|
---|
113 | }
|
---|
114 | .title-divider {
|
---|
115 | background:url(../img/title-divider.png) repeat-x center;
|
---|
116 | color:#999;
|
---|
117 | font-size:10px;
|
---|
118 | font-weight:normal;
|
---|
119 | margin:0 -15px 10px -15px;
|
---|
120 | }
|
---|
121 | .title-divider span {
|
---|
122 | background:#fff;
|
---|
123 | margin:0 0 0 10px;
|
---|
124 | padding: 0 5px;
|
---|
125 | }
|
---|
126 |
|
---|
127 | .notification {
|
---|
128 | background:#fffdc2;
|
---|
129 | border-radius:5px;
|
---|
130 | -moz-border-radius:5px;
|
---|
131 | -webkit-border-radius:5px;
|
---|
132 | margin:10px 0;
|
---|
133 | padding:10px;
|
---|
134 | }
|
---|
135 |
|
---|
136 | #site-name {
|
---|
137 | background:#666 url(../img/header-gloss.png) repeat-x center;
|
---|
138 | border-bottom: 1px solid #999;
|
---|
139 | line-height: 1.2;
|
---|
140 | margin:0;
|
---|
141 | }
|
---|
142 | #site-name a {
|
---|
143 | background: transparent url(../img/home.png) no-repeat 10px center;
|
---|
144 | color:#fff;
|
---|
145 | display:block;
|
---|
146 | font-size:16px;
|
---|
147 | padding:10px 40px;
|
---|
148 | }
|
---|
149 | #navigation-top {
|
---|
150 | display:none;
|
---|
151 | }
|
---|
152 | .pagination {
|
---|
153 | background:#fff;
|
---|
154 | border:1px solid #ccc;
|
---|
155 | border-width:0 1px 1px;
|
---|
156 | clear:both;
|
---|
157 | margin:0 10px;
|
---|
158 | overflow:hidden;
|
---|
159 | }
|
---|
160 | .pagination span {
|
---|
161 | display:none;
|
---|
162 | }
|
---|
163 | .pagination span.next,
|
---|
164 | .pagination span.prev {
|
---|
165 | display:block;
|
---|
166 | width:50%;
|
---|
167 | }
|
---|
168 | .pagination span.prev {
|
---|
169 | float:right;
|
---|
170 | }
|
---|
171 | .pagination span.next {
|
---|
172 | float:left;
|
---|
173 | }
|
---|
174 | .pagination .next a,
|
---|
175 | .pagination .prev a {
|
---|
176 | border:5px solid #fff;
|
---|
177 | display:block;
|
---|
178 | height:1.5em;
|
---|
179 | overflow:hidden;
|
---|
180 | text-decoration:none;
|
---|
181 | }
|
---|
182 | .pagination .next a,
|
---|
183 | ul.table.disclosure .pagination .next a {
|
---|
184 | background: url(../img/disclosure-left.png) no-repeat left center;
|
---|
185 | border-right:1px solid #ddd;
|
---|
186 | border-left:0;
|
---|
187 | padding-left:35px;
|
---|
188 | }
|
---|
189 | .pagination .prev a,
|
---|
190 | ul.table.disclosure .pagination .prev a {
|
---|
191 | background: url(../img/disclosure.png) no-repeat right center;
|
---|
192 | border-left:1px solid #fff;
|
---|
193 | border-right:0;
|
---|
194 | padding-right:35px;
|
---|
195 | text-align:right;
|
---|
196 | }
|
---|
197 |
|
---|
198 | #next-prev-bottom,
|
---|
199 | #navigation-bottom {display:none;}
|
---|
200 |
|
---|
201 | #search {
|
---|
202 | margin: 0;
|
---|
203 | }
|
---|
204 | #search input {
|
---|
205 | padding: 3px;
|
---|
206 | }
|
---|
207 | #s {
|
---|
208 | width: 50%;
|
---|
209 | }
|
---|
210 |
|
---|
211 | .tabbed.group {
|
---|
212 | padding:0;
|
---|
213 | }
|
---|
214 | .tabbed ul.tabs{
|
---|
215 | background:url(../img/title-divider.png) repeat-x bottom;
|
---|
216 | list-style:none;
|
---|
217 | margin: 0 10px;
|
---|
218 | overflow:hidden;
|
---|
219 | }
|
---|
220 | .tabbed .tabs li {
|
---|
221 | float:left;
|
---|
222 | margin-bottom: 0;
|
---|
223 | width:50%;
|
---|
224 | }
|
---|
225 | .tabbed .tabs li a{
|
---|
226 | background:#d5d5d5 url(../img/tab.gif) repeat-x bottom;
|
---|
227 | color:#333;
|
---|
228 | display:block;
|
---|
229 | padding: 7px;
|
---|
230 | text-decoration:none;
|
---|
231 | }
|
---|
232 | .tabbed .tabs li.active a {
|
---|
233 | background-color:#fff;
|
---|
234 | background-image:url(../img/tab-active.gif);
|
---|
235 | }
|
---|
236 | .commentlist {
|
---|
237 | margin:0 -10px;
|
---|
238 | }
|
---|
239 | .commentlist li {
|
---|
240 | background:url(../img/comment.png) no-repeat 10px 10px;
|
---|
241 | border-bottom:1px solid #ddd;
|
---|
242 | font-size:11px;
|
---|
243 | margin:0;
|
---|
244 | padding:10px 10px 10px 30px;
|
---|
245 | }
|
---|
246 | .commentlist li:last-child {border:0;}
|
---|
247 | .commentlist li .comment-info {
|
---|
248 | color:#999;
|
---|
249 | margin:0;
|
---|
250 | }
|
---|
251 | .commentlist li .comment-info cite {
|
---|
252 | font-weight:bold;
|
---|
253 | }
|
---|
254 | #respond .title-divider {
|
---|
255 | margin-bottom:5px;
|
---|
256 | margin-top:5px;
|
---|
257 | }
|
---|
258 | #respond label {display:block;}
|
---|
259 | #respond textarea,
|
---|
260 | #respond input[type=text] {
|
---|
261 | width:95%;
|
---|
262 | }
|
---|
263 |
|
---|
264 | #footer {
|
---|
265 | background:#555 url(../img/footer-shadow.gif) repeat-x top;
|
---|
266 | color:#999;
|
---|
267 | padding:10px;
|
---|
268 | }
|
---|
269 | #footer a {color:#ddd;}
|
---|
270 | #footer p#developer-link {
|
---|
271 | display:block;
|
---|
272 | text-indent:-32697px;
|
---|
273 | }
|
---|
274 | #footer p#developer-link a,
|
---|
275 | #footer p#developer-link a:visited {
|
---|
276 | background:url(../img/by-crowd-favorite.gif) no-repeat left top;
|
---|
277 | float:right;
|
---|
278 | height:30px;
|
---|
279 | text-indent:-32697px;
|
---|
280 | width:220px;
|
---|
281 | }
|
---|
282 | /* rounded goodness */
|
---|
283 | .group {
|
---|
284 | border-radius:10px;
|
---|
285 | -moz-border-radius:10px;
|
---|
286 | -webkit-border-radius:10px;
|
---|
287 | }
|
---|
288 | .tabbed ul.table.group {
|
---|
289 | border-top-right-radius: 0;
|
---|
290 | -moz-border-radius-topright: 0;
|
---|
291 | -webkit-border-top-right-radius: 0;
|
---|
292 | border-top-left-radius: 0;
|
---|
293 | -moz-border-radius-topleft: 0;
|
---|
294 | -webkit-border-top-left-radius: 0;
|
---|
295 | }
|
---|
296 |
|
---|
297 | .pagination .next a,
|
---|
298 | ul.table.disclosure .pagination .next a {
|
---|
299 | border-bottom-left-radius:10px;
|
---|
300 | -webkit-border-bottom-left-radius:10px;
|
---|
301 | -moz-border-radius-bottomleft:10px;
|
---|
302 | }
|
---|
303 | .pagination .prev a,
|
---|
304 | ul.table.disclosure .pagination .prev a {
|
---|
305 | border-bottom-right-radius:10px;
|
---|
306 | -webkit-border-bottom-right-radius:10px;
|
---|
307 | -moz-border-radius-bottomright:10px;
|
---|
308 | }
|
---|
309 | .pagination {
|
---|
310 | border-bottom-left-radius:10px;
|
---|
311 | border-bottom-right-radius:10px;
|
---|
312 | -webkit-border-bottom-left-radius:10px;
|
---|
313 | -webkit-border-bottom-right-radius:10px;
|
---|
314 | -moz-border-radius-bottomleft:10px;
|
---|
315 | -moz-border-radius-bottomright:10px;
|
---|
316 | }
|
---|
317 | .tabbed .tabs li:first-child a {
|
---|
318 | border: 1px solid #ccc;
|
---|
319 | border-width: 1px 1px 0;
|
---|
320 | border-top-left-radius:10px;
|
---|
321 | -webkit-border-top-left-radius:10px;
|
---|
322 | -moz-border-radius-topleft:10px;
|
---|
323 | }
|
---|
324 | .tabbed .tabs li:last-child a {
|
---|
325 | border: 1px solid #ccc;
|
---|
326 | border-width: 1px 1px 0 0;
|
---|
327 | border-top-right-radius:10px;
|
---|
328 | -webkit-border-top-right-radius:10px;
|
---|
329 | -moz-border-radius-topright:10px;
|
---|
330 | }
|
---|
331 |
|
---|
332 | .pages-link {
|
---|
333 | margin:2em 0;
|
---|
334 | word-spacing:.25em;
|
---|
335 | }
|
---|
336 | .pages-link a {
|
---|
337 | background:#d7d7d7;
|
---|
338 | border:1px solid #ccc;
|
---|
339 | -moz-border-radius:3px;
|
---|
340 | -webkit-border-radius:3px;
|
---|
341 | -khtml-border-radius:3px;
|
---|
342 | border-radius:3px;
|
---|
343 | color:#333;
|
---|
344 | padding:.3em .5em;
|
---|
345 | text-decoration:none;
|
---|
346 | }
|
---|