JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
don't let image captions inherit boldness
[wfpl-cms.git] / style.css
1 header,
2 hgroup,
3 section,
4 footer,
5 aside,
6 nav,
7 article,
8 figure,
9 img {
10   display: block;
11 }
12 body {
13   margin: 0;
14   padding: 0;
15   color: #000;
16   background: #eeeeee;
17   font: 14px "Verdana", sans-serif;
18 }
19 #centerer {
20   position: relative;
21   background: #ddffff;
22   margin: 15px auto;
23   width: 940px;
24   -moz-box-shadow: 2px 2px 15px #777;
25   -webkit-box-shadow: 2px 2px 15px #777;
26   box-shadow: 2px 2px 13px #777;
27 }
28 header {
29   width: 940px;
30   height: 100px;
31   background: #ddddff;
32 }
33 nav {
34   float: left;
35   width: 180px;
36   padding: 10px;
37   background: #ddffff;
38 }
39 nav h3 span {
40   color: #ddffff;
41 }
42 nav h3.current span {
43   color: inherit;
44 }
45 nav h3.current a {
46   text-decoration: none;
47 }
48 #main-body {
49   float: left;
50   width: 704px;
51   padding: 18px 18px 54px 18px;
52   background: #ffffff;
53 }
54 footer {
55   clear: both;
56   width: 904px;
57   padding: 18px;
58   text-align: center;
59   background: #ddddff;
60   font-size: 80%;
61 }
62 #wfpl_messages {
63   border: 2px solid red;
64   background: #fbb;
65   padding: 5px;
66   margin: 20px 0px;
67 }
68 #wfpl_messages p {
69   font-size: 120%;
70   padding: 5px;
71   margin: 0px;
72 }
73 #wfpl_messages hr {
74   height: 1px;
75 }
76 #admin_links {
77   background: #fdd;
78   padding: 3px;
79   margin-bottom: 15px;
80 }
81 .caption {
82   margin-top: 15px;
83   font-weight: bold;
84 }
85 .field {
86   margin-bottom: 15px;
87 }
88 div.field_notes {
89   font-size: 12px;
90   line-height: 16px;
91 }
92 fieldset {
93   border: 1px dotted black;
94   padding: 0 15px 15px 15px;
95   margin: 15px 0;
96   position: relative;
97 }
98 legend {
99   padding: 0 6px;
100   font-weight: bold;
101 }
102 div.error {
103   border: 2px solid red;
104   padding: 13px;
105   margin: 20px;
106   background: #fdd;
107 }
108 span.wfpl_ifl {
109   display: block;
110   float: left;
111   font-size: 10px;
112   text-align: right;
113   background-repeat: no-repeat;
114   background-position: left top;
115   margin: 0 10px 2px 0;
116 }
117 span.wfpl_ifr {
118   display: block;
119   float: right;
120   font-size: 10px;
121   font-weight: normal;
122   text-align: right;
123   background-repeat: no-repeat;
124   background-position: left top;
125   margin: 0 0 2px 10px;
126 }
127 div.wfpl_ic {
128   margin: 15px auto;
129   font-size: 10px;
130   font-weight: normal;
131   text-align: right;
132   background-repeat: no-repeat;
133   background-position: center top;
134 }
135 td > :first-child,
136 th > :first-child,
137 legend + *,
138 article > :first-child,
139 section > :first-child,
140 nav > :first-child,
141 div > :first-child,
142 .first {
143   margin-top: 0px;
144 }
145 td > :last-child,
146 th > :last-child,
147 fieldset > :last-child,
148 article > :last-child,
149 section > :last-child,
150 nav > :last-child,
151 div > :last-child,
152 .last {
153   margin-bottom: 0px;
154 }