1 | /*
|
---|
2 |
|
---|
3 | Theme Name: Carrington Mobile
|
---|
4 | Theme URI: http://carringtontheme.com
|
---|
5 | Description: A mobile-friendly theme for your blog. Best used with (and included with) the WordPress Mobile Edition plugin. Supports basic mobile browsers as well as advanced and touch-screen browsers with a display optimized for each. Built on the Carrington framework.
|
---|
6 | Version: 1.0.2
|
---|
7 | Author: Crowd Favorite
|
---|
8 | Author URI: http://crowdfavorite.com
|
---|
9 | Tags: silver, white, one-column, flexible-width
|
---|
10 |
|
---|
11 | // This file is part of the Carrington Mobile Theme for WordPress
|
---|
12 | // http://carringtontheme.com
|
---|
13 | //
|
---|
14 | // Copyright (c) 2008-2009 Crowd Favorite, Ltd. All rights reserved.
|
---|
15 | // http://crowdfavorite.com
|
---|
16 | //
|
---|
17 | // Released under the GPL license
|
---|
18 | // http://www.opensource.org/licenses/gpl-license.php
|
---|
19 | //
|
---|
20 | // **********************************************************************
|
---|
21 | // This program is distributed in the hope that it will be useful, but
|
---|
22 | // WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
23 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
---|
24 | // **********************************************************************
|
---|
25 |
|
---|
26 | */
|
---|
27 |
|
---|
28 | body {
|
---|
29 | font-family: Verdana, sans-serif;
|
---|
30 | }
|
---|
31 | h1, h2, h3, p {
|
---|
32 | margin: 0 0 5px 0;
|
---|
33 | padding: 0;
|
---|
34 | }
|
---|
35 | ul, ol {
|
---|
36 | margin-top: 0;
|
---|
37 | margin-bottom: 5px;
|
---|
38 | margin-left:10px;
|
---|
39 | padding: 0;
|
---|
40 | }
|
---|
41 | hr {
|
---|
42 | color: #999;
|
---|
43 | height: 1px;
|
---|
44 | }
|
---|
45 |
|
---|
46 | /* including for compatibility */
|
---|
47 |
|
---|
48 | .alignleft {
|
---|
49 | float:left;
|
---|
50 | margin-right:1em;
|
---|
51 | margin-bottom:1em;
|
---|
52 | }
|
---|
53 | .alignright {
|
---|
54 | float:right;
|
---|
55 | margin-left:1em;
|
---|
56 | margin-bottom:1em;
|
---|
57 | }
|
---|
58 | .aligncenter {
|
---|
59 | display: block;
|
---|
60 | margin-left: auto;
|
---|
61 | margin-right: auto;
|
---|
62 | }
|
---|
63 | .wp-caption {
|
---|
64 | border: 1px solid #ddd;
|
---|
65 | text-align: center;
|
---|
66 | background-color: #f3f3f3;
|
---|
67 | padding-top: 4px;
|
---|
68 | margin: 10px;
|
---|
69 | /* optional rounded corners for browsers that support it */
|
---|
70 | -moz-border-radius: 3px;
|
---|
71 | -khtml-border-radius: 3px;
|
---|
72 | -webkit-border-radius: 3px;
|
---|
73 | border-radius: 3px;
|
---|
74 | }
|
---|
75 | .wp-caption img {
|
---|
76 | margin: 0;
|
---|
77 | padding: 0;
|
---|
78 | border: 0 none;
|
---|
79 | }
|
---|
80 | .wp-caption p.wp-caption-text {
|
---|
81 | font-size: 11px;
|
---|
82 | line-height: 17px;
|
---|
83 | padding: 0 4px 5px;
|
---|
84 | margin: 0;
|
---|
85 | }
|
---|