├── 404.php
├── README.md
├── archive.php
├── attachment.php
├── author.php
├── blocks.css
├── category.php
├── comments.php
├── editor-blocks.css
├── editor-style-rtl.css
├── editor-style.css
├── footer.php
├── functions.php
├── header.php
├── images
├── headers
│ ├── berries-thumbnail.jpg
│ ├── berries.jpg
│ ├── cherryblossoms-thumbnail.jpg
│ ├── cherryblossoms.jpg
│ ├── concave-thumbnail.jpg
│ ├── concave.jpg
│ ├── fern-thumbnail.jpg
│ ├── fern.jpg
│ ├── forestfloor-thumbnail.jpg
│ ├── forestfloor.jpg
│ ├── inkwell-thumbnail.jpg
│ ├── inkwell.jpg
│ ├── path-thumbnail.jpg
│ ├── path.jpg
│ ├── sunset-thumbnail.jpg
│ └── sunset.jpg
└── wordpress.png
├── index.php
├── languages
└── twentyten.pot
├── license.txt
├── loop-attachment.php
├── loop-page.php
├── loop-single.php
├── loop.php
├── onecolumn-page.php
├── page.php
├── readme.txt
├── rtl.css
├── screenshot.png
├── search.php
├── sidebar-footer.php
├── sidebar.php
├── single.php
├── style.css
└── tag.php
/404.php:
--------------------------------------------------------------------------------
1 |
11 |
12 |
25 |
29 |
30 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/archive.php:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
31 |
32 |
33 |
34 | %s', 'twentyten' ), get_the_date() ); ?>
35 |
36 | %s', 'twentyten' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyten' ) ) ); ?>
37 |
38 | %s', 'twentyten' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyten' ) ) ); ?>
39 |
40 |
41 |
42 |
43 |
44 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/attachment.php:
--------------------------------------------------------------------------------
1 |
11 |
12 |
13 |
14 |
15 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/author.php:
--------------------------------------------------------------------------------
1 |
11 |
12 |
13 |
14 |
15 |
27 |
28 |
29 |
30 |
33 |
34 |
35 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
68 |
69 |
70 |
71 |
72 |
73 |
--------------------------------------------------------------------------------
/blocks.css:
--------------------------------------------------------------------------------
1 | /*
2 | Theme Name: Twenty Ten
3 | Description: Used to style blocks.
4 | */
5 |
6 | /*--------------------------------------------------------------
7 | >>> TABLE OF CONTENTS:
8 | ----------------------------------------------------------------
9 | 1.0 General Block Styles
10 | 2.0 Blocks - Common Blocks
11 | 3.0 Blocks - Formatting
12 | 4.0 Blocks - Layout Elements
13 | 5.0 Blocks - Widgets
14 | 6.0 Blocks - Colors
15 | --------------------------------------------------------------*/
16 |
17 | /*--------------------------------------------------------------
18 | 1.0 General Block Styles
19 | --------------------------------------------------------------*/
20 |
21 | /* Captions */
22 |
23 | [class^="wp-block-"]:not(.wp-block-gallery) figcaption {
24 | color: #777;
25 | font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
26 | }
27 |
28 | /* Alignments */
29 |
30 | [class^="wp-block-"].alignleft,
31 | [class^="wp-block-"] .alignleft {
32 | margin-right: 24px;
33 | }
34 |
35 | [class^="wp-block-"].alignright,
36 | [class^="wp-block-"] .alignright {
37 | margin-left: 24px;
38 | }
39 |
40 | /*--------------------------------------------------------------
41 | 2.0 Blocks - Common Blocks
42 | --------------------------------------------------------------*/
43 |
44 | /* Paragraph */
45 |
46 | p.has-drop-cap:not(:focus)::first-letter {
47 | font-size: 5em;
48 | margin-top: 0.1em;
49 | }
50 |
51 | /* Image */
52 |
53 | .wp-block-image figure {
54 | margin-bottom: 24px;
55 | }
56 |
57 | .wp-block-image figcaption {
58 | margin: -7px 0 20px;;
59 | padding: 9px 9px 1.0em;
60 | text-align: center;
61 | }
62 |
63 | .wp-block-image.alignfull,
64 | .wp-block-image.alignfull img {
65 | margin: 0;
66 | }
67 |
68 | /* Gallery */
69 |
70 | .wp-block-gallery {
71 | margin: 0 0 24px;
72 | }
73 |
74 | .wp-block-gallery .blocks-gallery-image figcaption,
75 | .wp-block-gallery .blocks-gallery-item figcaption {
76 | font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
77 | left: 0;
78 | right: 0;
79 | width: auto;
80 | }
81 |
82 | /* Quotes */
83 |
84 | .wp-block-quote:not(.is-large):not(.is-style-large) {
85 | border: none;
86 | padding: 0 3em;
87 | }
88 |
89 | .wp-block-quote cite {
90 | color: inherit;
91 | font-size: inherit;
92 | font-weight: 600;
93 | }
94 |
95 | /* Audio */
96 |
97 | .wp-block-audio {
98 | margin-left: 0;
99 | margin-right: 0;
100 | }
101 |
102 | .wp-block-audio audio {
103 | display: block;
104 | width: 100%;
105 | }
106 |
107 | /* File */
108 |
109 | .rtl .wp-block-file * + .wp-block-file__button {
110 | margin: 0 0 0 0.75em;
111 | }
112 |
113 | /*--------------------------------------------------------------
114 | 3.0 Blocks - Formatting
115 | --------------------------------------------------------------*/
116 |
117 | /* Code */
118 |
119 | .wp-block-code {
120 | background-color: transparent;
121 | border: 0;
122 | padding: 0;
123 | }
124 |
125 | /* Pullquote */
126 |
127 | .wp-block-pullquote p {
128 | font-size: 1.5em;
129 | }
130 |
131 | .wp-block-pullquote__citation,
132 | .wp-block-pullquote cite {
133 | color: inherit;
134 | font-size: inherit;
135 | font-weight: 600;
136 | text-transform: none;
137 | }
138 |
139 | /* Table */
140 |
141 | .wp-block-table td,
142 | .wp-block-table th {
143 | border: none;
144 | }
145 |
146 | .wp-block-table td {
147 | border-top: 1px solid #e7e7e7;
148 | }
149 |
150 | .wp-block-table tr:nth-child(odd) td {
151 | background: #f2f7fc;
152 | }
153 |
154 | /*--------------------------------------------------------------
155 | 4.0 Blocks - Layout Elements
156 | --------------------------------------------------------------*/
157 |
158 | /* Separator */
159 |
160 | .wp-block-separator {
161 | border: 0;
162 | }
163 |
164 | /* Media & Text */
165 |
166 | .wp-block-media-text {
167 | margin-bottom: 24px;
168 | }
169 |
170 | /*--------------------------------------------------------------
171 | 5.0 Blocks - Widgets
172 | --------------------------------------------------------------*/
173 |
174 | /* Archives, Categories & Latest Posts */
175 |
176 | .wp-block-archives.aligncenter,
177 | .wp-block-categories.aligncenter,
178 | .wp-block-latest-posts.aligncenter {
179 | margin-left: 20px;
180 | text-align: center;
181 | }
182 |
183 | .rtl .wp-block-archives.aligncenter,
184 | .rtl .wp-block-categories.aligncenter,
185 | .rtl .wp-block-latest-posts.aligncenter {
186 | margin-left: 0;
187 | margin-right: 20px;
188 | }
189 |
190 | /* Latest Comments */
191 |
192 | .wp-block-latest-comments {
193 | margin: 0 0 24px;
194 | }
195 |
196 | /* Latest Posts */
197 |
198 | .wp-block-latest-posts.is-grid {
199 | margin-left: 0;
200 | margin-right: 0;
201 | }
202 |
203 | /*--------------------------------------------------------------
204 | 6.0 Blocks - Colors
205 | --------------------------------------------------------------*/
206 |
207 | .has-blue-color,
208 | .has-blue-color:visited {
209 | color: #0066cc;
210 | }
211 |
212 | .has-blue-background-color,
213 | .has-blue-background-color:visited {
214 | background-color: #0066cc;
215 | }
216 |
217 | .has-black-color,
218 | .has-black-color:visited {
219 | color: #000;
220 | }
221 |
222 | .has-black-background-color,
223 | .has-black-background-color:visited {
224 | background-color: #000;
225 | }
226 |
227 | .has-medium-gray-color,
228 | .has-medium-gray-color:visited {
229 | color: #666;
230 | }
231 |
232 | .has-medium-gray-background-color,
233 | .has-medium-gray-background-color:visited {
234 | background-color: #666;
235 | }
236 |
237 | .has-light-gray-color,
238 | .has-light-gray-color:visited {
239 | color: #f1f1f1;
240 | }
241 |
242 | .has-light-gray-background-color,
243 | .has-light-gray-background-color:visited {
244 | background-color: #f1f1f1;
245 | }
246 |
247 | .has-white-color,
248 | .has-white-color:visited {
249 | color: #fff;
250 | }
251 |
252 | .has-white-background-color,
253 | .has-white-background-color:visited {
254 | background-color: #fff;
255 | }
256 |
--------------------------------------------------------------------------------
/category.php:
--------------------------------------------------------------------------------
1 |
11 |
12 |
13 |
14 |
15 |
' . single_cat_title( '', false ) . '' );
17 | ?>
18 | ' . $category_description . '';
22 |
23 | /*
24 | * Run the loop for the category page to output the posts.
25 | * If you want to overload this in a child theme then include a file
26 | * called loop-category.php and that will be used instead.
27 | */
28 | get_template_part( 'loop', 'category' );
29 | ?>
30 |
31 |
32 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/comments.php:
--------------------------------------------------------------------------------
1 |
15 |
16 |
20 |
29 |
30 |
33 |
34 |
35 |
39 |
40 | 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
41 |
42 |
← Older Comments', 'twentyten' ) ); ?>
43 |
→', 'twentyten' ) ); ?>
44 |
45 |
46 |
47 |
59 |
60 | 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
61 |
62 |
← Older Comments', 'twentyten' ) ); ?>
63 |
→', 'twentyten' ) ); ?>
64 |
65 |
66 |
67 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
--------------------------------------------------------------------------------
/editor-blocks.css:
--------------------------------------------------------------------------------
1 | /*
2 | Theme Name: Twenty Ten
3 | Description: Used to style blocks in the editor.
4 | */
5 |
6 | /*--------------------------------------------------------------
7 | >>> TABLE OF CONTENTS:
8 | ----------------------------------------------------------------
9 | 1.0 General Typography
10 | 2.0 General Block Styles
11 | 3.0 Blocks - Common Blocks
12 | 4.0 Blocks - Formatting
13 | 5.0 Blocks - Widgets
14 | --------------------------------------------------------------*/
15 |
16 | /*--------------------------------------------------------------
17 | 1.0 General Typography
18 | --------------------------------------------------------------*/
19 |
20 | .edit-post-visual-editor .editor-block-list__block,
21 | .edit-post-visual-editor .editor-block-list__block p,
22 | .editor-default-block-appender textarea.editor-default-block-appender__content {
23 | font-size: 16px;
24 | }
25 |
26 | .editor-default-block-appender textarea.editor-default-block-appender__content {
27 | font-family: Georgia, "Bitstream Charter", serif;
28 | }
29 |
30 | .edit-post-visual-editor .editor-block-list__block .mce-content-body,
31 | .wp-block-freeform.block-library-rich-text__tinymce p,
32 | .wp-block-freeform.block-library-rich-text__tinymce li {
33 | line-height: 1.5;
34 | }
35 |
36 | .edit-post-visual-editor .editor-block-list__block {
37 | color: #1a1a1a;
38 | }
39 |
40 | .editor-post-title__block .editor-post-title__input {
41 | color: #000;
42 | font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
43 | font-size: 21px;
44 | font-weight: bold;
45 | line-height: 1.3em;
46 | }
47 |
48 | .edit-post-visual-editor .editor-block-list__block h1 {
49 | font-size: 32px;
50 | }
51 |
52 | .edit-post-visual-editor .editor-block-list__block h2 {
53 | font-size: 24px;
54 | }
55 |
56 | .edit-post-visual-editor .editor-block-list__block h3 {
57 | font-size: 19px;
58 | }
59 |
60 | .edit-post-visual-editor .editor-block-list__block h4 {
61 | font-size: 16px;
62 | }
63 |
64 | .edit-post-visual-editor .editor-block-list__block h5 {
65 | font-size: 13px;
66 | }
67 |
68 | .edit-post-visual-editor .editor-block-list__block h6 {
69 | font-size: 11px;
70 | }
71 |
72 | /*--------------------------------------------------------------
73 | 2.0 General Block Styles
74 | --------------------------------------------------------------*/
75 |
76 | /* Main column width */
77 |
78 | .wp-block {
79 | max-width: 670px; /* 640px + 30px to account for padding */
80 | }
81 |
82 | /* Link styles */
83 |
84 | .edit-post-visual-editor a,
85 | .editor-block-list__block a,
86 | .wp-block-freeform.block-library-rich-text__tinymce a {
87 | color: #0066cc;
88 | }
89 |
90 | /* List styles */
91 |
92 | .edit-post-visual-editor ul:not(.wp-block-gallery),
93 | .editor-block-list__block ul:not(.wp-block-gallery),
94 | .block-library-list ul,
95 | .edit-post-visual-editor ol,
96 | .editor-block-list__block ol,
97 | .block-library-list ol.editor-rich-text__tinymce {
98 | margin: 0 0 18px 1.5em;
99 | padding: 0;
100 | }
101 |
102 | .edit-post-visual-editor ul:not(.wp-block-gallery),
103 | .editor-block-list__block ul:not(.wp-block-gallery),
104 | .block-library-list ul {
105 | list-style: square;
106 | }
107 |
108 | .edit-post-visual-editor ol,
109 | .editor-block-list__block ol,
110 | .block-library-list ol {
111 | list-style: decimal;
112 | margin-left: 1.5em;
113 | }
114 |
115 | .edit-post-visual-editor ul:not(.wp-block-gallery) li,
116 | .editor-block-list__block ul:not(.wp-block-gallery) li,
117 | .edit-post-visual-editor ol li,
118 | .editor-block-list__block ol li,
119 | .block-library-list li {
120 | margin-bottom: 0;
121 | }
122 |
123 | .edit-post-visual-editor ul:not(.wp-block-gallery) li > ul,
124 | .editor-block-list__block ul:not(.wp-block-gallery) li > ul,
125 | .block-library-list li > ul,
126 | .edit-post-visual-editor li > ol,
127 | .editor-block-list__block li > ol,
128 | .block-library-list li > ol {
129 | margin-bottom: 0;
130 | }
131 |
132 | .rtl .edit-post-visual-editor ul:not(.wp-block-gallery),
133 | .rtl .editor-block-list__block ul:not(.wp-block-gallery),
134 | .rtl .block-library-list ul,
135 | .rtl .edit-post-visual-editor ol,
136 | .rtl .editor-block-list__block ol,
137 | .rtl .block-library-list ol {
138 | margin-left: 0;
139 | margin-right: 1.25em;
140 | padding: 0;
141 | }
142 |
143 | /* Caption styles */
144 |
145 | [class^="wp-block-"] figcaption {
146 | color: #777;
147 | font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
148 | }
149 |
150 | /* Code styles */
151 |
152 | .wp-block-freeform.block-library-rich-text__tinymce code {
153 | background: transparent;
154 | }
155 |
156 | /* Quote styles */
157 |
158 | .wp-block-freeform.block-library-rich-text__tinymce blockquote {
159 | border: 0;
160 | padding: 0 3em;
161 | }
162 |
163 | /* Table styles */
164 |
165 | .editor-block-list__block tr th,
166 | .editor-block-list__block tr th a {
167 | font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
168 | }
169 |
170 | /* Definition List styles */
171 |
172 | .editor-block-list__block dd {
173 | margin-left: 0;
174 | margin-right: 0;
175 | }
176 |
177 | /*--------------------------------------------------------------
178 | 3.0 Blocks - Common Blocks
179 | --------------------------------------------------------------*/
180 |
181 | /* Paragraph */
182 |
183 | p.has-drop-cap:not(:focus)::first-letter {
184 | font-size: 5em;
185 | margin-top: 0.1em;
186 | }
187 |
188 | /* Image */
189 |
190 | .wp-block-image {
191 | margin-bottom: 20px;
192 | }
193 |
194 | .wp-block-image figcaption {
195 | display: block;
196 | margin: -7px 0 0;
197 | padding: 9px 9px 1.0em;
198 | text-align: center;
199 | }
200 |
201 | /* Gallery */
202 |
203 | .editor-block-list__block .wp-block-gallery {
204 | margin: 0 0 24px;
205 | }
206 |
207 | /* Quote */
208 |
209 | .wp-block-quote {
210 | border: 0;
211 | padding: 0 3em;
212 | }
213 |
214 | .wp-block-quote:not(.is-large):not(.is-style-large) {
215 | border: 0;
216 | padding: 0 3em;
217 | }
218 |
219 | .wp-block-quote .wp-block-quote__citation {
220 | font-size: 16px;
221 | font-weight: 600;
222 | }
223 |
224 | .wp-block-quote.is-large .wp-block-quote__citation,
225 | .wp-block-quote.is-style-large .wp-block-quote__citation {
226 | font-size: 18px;
227 | }
228 |
229 | /* Cover */
230 |
231 | .wp-block-cover-image-text,
232 | .wp-block-cover-text {
233 | font-size: 32px;
234 | }
235 |
236 | /* File */
237 |
238 | .wp-block-file .wp-block-file__textlink .editor-rich-text__tinymce {
239 | color: #0066cc;
240 | font-size: 16px;
241 | text-decoration: underline;
242 | }
243 |
244 | /*--------------------------------------------------------------
245 | 4.0 Blocks - Formatting
246 | --------------------------------------------------------------*/
247 |
248 | /* Code */
249 |
250 | .wp-block-code {
251 | border: 0;
252 | padding: 0;
253 | }
254 |
255 | /* Pullquote */
256 |
257 | .wp-block-pullquote blockquote > .editor-rich-text p {
258 | font-size: 1.5em;
259 | }
260 |
261 | .wp-block-pullquote .wp-block-pullquote__citation {
262 | color: inherit;
263 | font-size: inherit;
264 | font-weight: 600;
265 | text-transform: none;
266 | }
267 |
268 | /* Table */
269 |
270 | .wp-block-table tr:nth-child(odd) td {
271 | background: #f2f7fc;
272 | }
273 |
274 | .wp-block-table th .wp-block-table__cell-content {
275 | color: #777;
276 | font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
277 | }
278 |
279 | .editor-block-list__block .wp-block-table tr td {
280 | padding-bottom: 0;
281 | padding-top: 0;
282 | }
283 |
284 | /*--------------------------------------------------------------
285 | 5.0 Blocks - Widgets
286 | --------------------------------------------------------------*/
287 |
288 | /* Latest Comments */
289 |
290 | .editor-block-list__block .wp-block-latest-comments {
291 | margin: 0 0 24px;
292 | }
293 |
294 | .rtl .edit-post-visual-editor .wp-block-latest-comments {
295 | margin-right: 0;
296 | }
297 |
298 | /* Latest Posts */
299 |
300 | .edit-post-visual-editor .editor-block-list__block .wp-block-latest-posts.is-grid {
301 | list-style: none;
302 | margin-left: 0;
303 | margin-right: 0;
304 | }
305 |
306 | .edit-post-visual-editor .wp-block-latest-posts.is-grid li {
307 | margin-bottom: 1em;
308 | }
309 |
--------------------------------------------------------------------------------
/editor-style-rtl.css:
--------------------------------------------------------------------------------
1 | /*
2 | Theme Name: Twenty Ten
3 | */
4 | /*
5 | Used to style the TinyMCE editor.
6 | */
7 | html .mceContentBody{
8 | direction: rtl;
9 | unicode-bidi: embed;
10 | float: right;
11 | width: 640px;
12 | }
13 | * {
14 | font-family: Arial, Tahoma, sans-serif;
15 | }
16 | /* Text elements */
17 | ul, ol {
18 | margin: 0 -18px 18px 0;
19 | }
20 | dd {
21 | margin-right: 0;
22 | }
23 | blockquote {
24 | font-style: normal;
25 | }
26 | table {
27 | text-align: right;
28 | margin: 0 0 24px -1px;
29 | }
30 |
--------------------------------------------------------------------------------
/editor-style.css:
--------------------------------------------------------------------------------
1 | /*
2 | Theme Name: Twenty Ten
3 | Description: Used to style the TinyMCE editor.
4 | */
5 | html .mceContentBody {
6 | max-width: 640px;
7 | }
8 | * {
9 | color: #444;
10 | font-family: Georgia, "Bitstream Charter", serif;
11 | line-height: 1.5;
12 | }
13 | p,
14 | dl,
15 | td,
16 | th,
17 | ul,
18 | ol,
19 | blockquote {
20 | font-size: 16px;
21 | }
22 | tr th,
23 | thead th,
24 | label,
25 | tr th,
26 | thead th {
27 | font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
28 | }
29 | pre {
30 | font-family: "Courier 10 Pitch", Courier, monospace;
31 | }
32 | code, code var {
33 | font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
34 | }
35 | body, input, textarea {
36 | font-size: 12px;
37 | line-height: 18px;
38 | }
39 | hr {
40 | background-color: #e7e7e7;
41 | border: 0;
42 | clear: both;
43 | height: 1px;
44 | margin-bottom: 18px;
45 | }
46 | /* Text elements */
47 | p {
48 | margin-bottom: 18px;
49 | }
50 |
51 | ul,
52 | ol {
53 | margin: 0 0 18px 1.5em;
54 | padding: 0;
55 | }
56 |
57 | ul {
58 | list-style: square;
59 | }
60 | ol {
61 | list-style: decimal;
62 | }
63 | ol ol {
64 | list-style: upper-alpha;
65 | }
66 | ol ol ol {
67 | list-style: lower-roman;
68 | }
69 | ol ol ol ol {
70 | list-style: lower-alpha;
71 | }
72 | ul ul,
73 | ol ol,
74 | ul ol,
75 | ol ul {
76 | margin-bottom: 0;
77 | }
78 | dl {
79 | margin: 0 0 24px 0;
80 | }
81 | dt {
82 | font-weight: bold;
83 | }
84 | dd {
85 | margin-bottom: 18px;
86 | }
87 | strong {
88 | color: #000;
89 | font-weight: bold;
90 | }
91 | cite,
92 | em,
93 | i {
94 | border: none;
95 | font-style: italic;
96 | }
97 | big {
98 | font-size: 131.25%;
99 | }
100 | ins {
101 | background: #ffc;
102 | border: none;
103 | color: #333;
104 | }
105 | del {
106 | text-decoration: line-through;
107 | color: #555;
108 | }
109 | blockquote {
110 | font-style: italic;
111 | padding: 0 3em;
112 | }
113 | blockquote cite,
114 | blockquote em,
115 | blockquote i {
116 | font-style: normal;
117 | }
118 | pre {
119 | background: #f7f7f7;
120 | color: #222;
121 | line-height: 18px;
122 | margin-bottom: 18px;
123 | padding: 1.5em;
124 | }
125 | abbr,
126 | acronym {
127 | border-bottom: 1px dotted #666;
128 | cursor: help;
129 | }
130 | ins {
131 | text-decoration: none;
132 | }
133 | sup,
134 | sub {
135 | font-size: 10px;
136 | height: 0;
137 | line-height: 1;
138 | position: relative;
139 | vertical-align: baseline;
140 | }
141 | sup {
142 | bottom: 1ex;
143 | }
144 | sub {
145 | top: .5ex;
146 | }
147 | a:link {
148 | color: #06c;
149 | }
150 | a:visited {
151 | color: #743399;
152 | }
153 | a:active,
154 | a:hover {
155 | color: #ff4b33;
156 | }
157 | p,
158 | ul,
159 | ol,
160 | dd,
161 | pre,
162 | hr {
163 | margin-bottom: 24px;
164 | }
165 | ul ul,
166 | ol ol,
167 | ul ol,
168 | ol ul {
169 | margin-bottom: 0;
170 | }
171 | pre,
172 | kbd,
173 | tt,
174 | var {
175 | font-size: 15px;
176 | line-height: 21px;
177 | }
178 | code {
179 | font-size: 13px;
180 | }
181 | strong,
182 | b,
183 | dt,
184 | th {
185 | color: #000;
186 | }
187 | h1,
188 | h2,
189 | h3,
190 | h4,
191 | h5,
192 | h6 {
193 | color: #000;
194 | font-weight: normal;
195 | line-height: 1.5em;
196 | margin: 0 0 20px 0;
197 | }
198 | h1 {
199 | font-size: 2.4em;
200 | }
201 | h2 {
202 | font-size: 1.8em;
203 | }
204 | h3 {
205 | font-size: 1.4em;
206 | }
207 | h4 {
208 | font-size: 1.2em;
209 | }
210 | h5 {
211 | font-size: 1em;
212 | }
213 | h6 {
214 | font-size: 0.9em;
215 | }
216 | table {
217 | border: 1px solid #e7e7e7 !important;
218 | border-collapse: collapse;
219 | border-spacing: 0;
220 | margin: 0 -1px 24px 0;
221 | text-align: left;
222 | width: 100%;
223 | }
224 | tr th,
225 | thead th {
226 | border: none !important;
227 | color: #888;
228 | font-size: 12px;
229 | font-weight: bold;
230 | line-height: 18px;
231 | padding: 9px 24px;
232 | }
233 | tr td {
234 | border: none !important;
235 | border-top: 1px solid #e7e7e7 !important;
236 | padding: 6px 24px;
237 | }
238 | img {
239 | margin: 0;
240 | }
241 | img.size-auto,
242 | img.size-large,
243 | img.size-full,
244 | img.size-medium {
245 | max-width: 100%;
246 | height: auto;
247 | }
248 | .alignleft,
249 | img.alignleft {
250 | display: inline;
251 | float: left;
252 | margin-right: 24px;
253 | margin-top: 4px;
254 | }
255 | .alignright,
256 | img.alignright {
257 | display: inline;
258 | float: right;
259 | margin-left: 24px;
260 | margin-top: 4px;
261 | }
262 | .aligncenter,
263 | img.aligncenter {
264 | clear: both;
265 | display: block;
266 | margin-left: auto;
267 | margin-right: auto;
268 | }
269 | img.alignleft,
270 | img.alignright,
271 | img.aligncenter {
272 | margin-bottom: 12px;
273 | }
274 | .wp-caption {
275 | background: #f1f1f1;
276 | border: none;
277 | -khtml-border-radius: 0;
278 | -moz-border-radius: 0;
279 | -webkit-border-radius: 0;
280 | border-radius: 0;
281 | color: #888;
282 | font-size: 12px;
283 | line-height: 18px;
284 | margin-bottom: 20px;
285 | max-width: 632px !important; /* prevent too-wide images from breaking layout */
286 | padding: 4px;
287 | text-align: center;
288 | }
289 | .wp-caption img {
290 | margin: 5px;
291 | }
292 | .wp-caption p.wp-caption-text {
293 | margin: 0 0 4px;
294 | }
295 | .wp-smiley {
296 | margin: 0;
297 | }
298 |
--------------------------------------------------------------------------------
/footer.php:
--------------------------------------------------------------------------------
1 |
13 |
14 |
15 |
52 |
53 |
54 |
55 |
58 | * tag of your theme, or you will break many plugins, which
59 | * generally use this hook to reference JavaScript files.
60 | */
61 |
62 | wp_footer();
63 | ?>
64 |