├── 404.php ├── LICENSE ├── README.md ├── archive.php ├── archives.php ├── attachment.php ├── comments-popup.php ├── comments.php ├── footer.php ├── functions.php ├── header.php ├── image.php ├── images ├── audio.jpg ├── header-img.php ├── kubrickbg-ltr.jpg ├── kubrickbg-rtl.jpg ├── kubrickbgcolor.jpg ├── kubrickbgwide.jpg ├── kubrickfooter.jpg └── kubrickheader.jpg ├── index.php ├── links.php ├── page.php ├── rtl.css ├── screenshot.png ├── search.php ├── searchform.php ├── sidebar.php ├── single.php └── style.css /404.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
11 | 12 |

Error 404 - Not Found

13 | 14 |
15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | 203 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Kubrick for WordPress 2 | ===================== 3 | 4 | Kubrick was a theme I made for WordPress. It was adopted as the default theme shipping with WordPress from v1.5 and hung in there for quite a few years. In the years after it was ported to more than 30 other platforms. This is its last resting place. 5 | -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 |

Archive for the ‘’ Category

17 | 18 |

Posts Tagged ‘

19 | 20 |

Archive for

21 | 22 |

Archive for

23 | 24 |

Archive for

25 | 26 |

Author Archive

27 | 28 |

Blog Archives

29 | 30 | 31 | 32 | 36 | 37 | 38 |
> 39 |

40 | 41 | 42 |
43 | 44 |
45 | 46 | 47 | 48 |
49 | 50 | 51 | 52 | 56 | Sorry, but there aren't any posts in the %s category yet.", single_cat_title('',false)); 60 | } else if ( is_date() ) { // If this is a date archive 61 | echo("

Sorry, but there aren't any posts with this date.

"); 62 | } else if ( is_author() ) { // If this is a category archive 63 | $userdata = get_userdatabylogin(get_query_var('author_name')); 64 | printf("

Sorry, but there aren't any posts by %s yet.

", $userdata->display_name); 65 | } else { 66 | echo("

No posts found.

"); 67 | } 68 | get_search_form(); 69 | 70 | endif; 71 | ?> 72 | 73 |
74 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /archives.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 |

Archives by Month:

18 | 21 | 22 |

Archives by Subject:

23 | 26 | 27 |
28 | 29 | 30 | -------------------------------------------------------------------------------- /attachment.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 11 | ID, true, array(450, 800)); // This also populates the iconsize for the next line ?> 12 | ID); $classname = ($_post->iconsize[0] <= 128 ? 'small' : '') . 'attachment'; // This lets us style narrow icons specially ?> 13 |
14 |

post_parent); ?> »

15 |
16 |


guid); ?>

17 | 18 | Read the rest of this entry »

'); ?> 19 | 20 | '

Pages: ', 'after' => '

', 'next_or_number' => 'number')); ?> 21 | 22 | 53 | 54 |
55 |
56 | 57 | 58 | 59 | 60 | 61 |

Sorry, no attachments matched your criteria.

62 | 63 | 64 | 65 |
66 | 67 | 68 | -------------------------------------------------------------------------------- /comments-popup.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | <?php echo get_option('blogname'); ?> - Comments on <?php the_title(); ?> 10 | 11 | 12 | 16 | 17 | 18 | 19 | 20 |

21 | 22 | 28 |

Comments

29 | 30 |

RSS feed for comments on this post.

31 | 32 | 33 |

The URL to TrackBack this entry is:

34 | 35 | 36 | 45 | 46 | 47 |
    48 | 49 |
  1. 50 | 51 |

    by @

    52 |
  2. 53 | 54 | 55 |
56 | 57 |

No comments yet.

58 | 59 | 60 | 61 |

Leave a comment

62 |

Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed:

63 | 64 |
65 | 66 |

Logged in as . Log out »

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 | ID); ?> 96 |
97 | 98 |

Sorry, the comment form is closed at this time.

99 | 102 | 103 |
Close this window.
104 | 105 | 109 |

Sorry, no posts matched your criteria.

110 | 111 | 112 | 113 |

Powered by WordPress

114 | 115 | 123 | 124 | 125 | -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- 1 | 12 |

This post is password protected. Enter the password to view comments.

13 | 17 | 18 | 19 | 20 | 21 |

to “

22 | 23 | 27 | 28 |
    29 | 30 |
31 | 32 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |

Comments are closed.

44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 |
52 | 53 |

54 | 55 |
56 | 57 |
58 | 59 | 60 |

You must be logged in to post a comment.

61 | 62 | 63 |
64 | 65 | 66 | 67 |

Logged in as . Log out »

68 | 69 | 70 | 71 |

/> 72 |

73 | 74 |

/> 75 |

76 | 77 |

78 |

79 | 80 | 81 | 82 | 83 | 84 |

85 | 86 |

87 | 88 |

89 | ID); ?> 90 | 91 |
92 | 93 | 94 |
95 | 96 | 97 | -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
9 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- 1 | '
  • ', 14 | 'after_widget' => '
  • ', 15 | 'before_title' => '

    ', 16 | 'after_title' => '

    ', 17 | )); 18 | } 19 | 20 | /** @ignore */ 21 | function kubrick_head() { 22 | $head = "\n"; 35 | if ( '' != $output ) 36 | echo $head . $output . $foot; 37 | } 38 | 39 | add_action('wp_head', 'kubrick_head'); 40 | 41 | function kubrick_header_image() { 42 | return apply_filters('kubrick_header_image', get_option('kubrick_header_image')); 43 | } 44 | 45 | function kubrick_upper_color() { 46 | if (strpos($url = kubrick_header_image_url(), 'header-img.php?') !== false) { 47 | parse_str(substr($url, strpos($url, '?') + 1), $q); 48 | return $q['upper']; 49 | } else 50 | return '69aee7'; 51 | } 52 | 53 | function kubrick_lower_color() { 54 | if (strpos($url = kubrick_header_image_url(), 'header-img.php?') !== false) { 55 | parse_str(substr($url, strpos($url, '?') + 1), $q); 56 | return $q['lower']; 57 | } else 58 | return '4180b6'; 59 | } 60 | 61 | function kubrick_header_image_url() { 62 | if ( $image = kubrick_header_image() ) 63 | $url = get_template_directory_uri() . '/images/' . $image; 64 | else 65 | $url = get_template_directory_uri() . '/images/kubrickheader.jpg'; 66 | 67 | return $url; 68 | } 69 | 70 | function kubrick_header_color() { 71 | return apply_filters('kubrick_header_color', get_option('kubrick_header_color')); 72 | } 73 | 74 | function kubrick_header_color_string() { 75 | $color = kubrick_header_color(); 76 | if ( false === $color ) 77 | return 'white'; 78 | 79 | return $color; 80 | } 81 | 82 | function kubrick_header_display() { 83 | return apply_filters('kubrick_header_display', get_option('kubrick_header_display')); 84 | } 85 | 86 | function kubrick_header_display_string() { 87 | $display = kubrick_header_display(); 88 | return $display ? $display : 'inline'; 89 | } 90 | 91 | add_action('admin_menu', 'kubrick_add_theme_page'); 92 | 93 | function kubrick_add_theme_page() { 94 | if ( isset( $_GET['page'] ) && $_GET['page'] == basename(__FILE__) ) { 95 | if ( isset( $_REQUEST['action'] ) && 'save' == $_REQUEST['action'] ) { 96 | check_admin_referer('kubrick-header'); 97 | if ( isset($_REQUEST['njform']) ) { 98 | if ( isset($_REQUEST['defaults']) ) { 99 | delete_option('kubrick_header_image'); 100 | delete_option('kubrick_header_color'); 101 | delete_option('kubrick_header_display'); 102 | } else { 103 | if ( '' == $_REQUEST['njfontcolor'] ) 104 | delete_option('kubrick_header_color'); 105 | else { 106 | $fontcolor = preg_replace('/^.*(#[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['njfontcolor']); 107 | update_option('kubrick_header_color', $fontcolor); 108 | } 109 | if ( preg_match('/[0-9A-F]{6}|[0-9A-F]{3}/i', $_REQUEST['njuppercolor'], $uc) && preg_match('/[0-9A-F]{6}|[0-9A-F]{3}/i', $_REQUEST['njlowercolor'], $lc) ) { 110 | $uc = ( strlen($uc[0]) == 3 ) ? $uc[0]{0}.$uc[0]{0}.$uc[0]{1}.$uc[0]{1}.$uc[0]{2}.$uc[0]{2} : $uc[0]; 111 | $lc = ( strlen($lc[0]) == 3 ) ? $lc[0]{0}.$lc[0]{0}.$lc[0]{1}.$lc[0]{1}.$lc[0]{2}.$lc[0]{2} : $lc[0]; 112 | update_option('kubrick_header_image', "header-img.php?upper=$uc&lower=$lc"); 113 | } 114 | 115 | if ( isset($_REQUEST['toggledisplay']) ) { 116 | if ( false === get_option('kubrick_header_display') ) 117 | update_option('kubrick_header_display', 'none'); 118 | else 119 | delete_option('kubrick_header_display'); 120 | } 121 | } 122 | } else { 123 | 124 | if ( isset($_REQUEST['headerimage']) ) { 125 | check_admin_referer('kubrick-header'); 126 | if ( '' == $_REQUEST['headerimage'] ) 127 | delete_option('kubrick_header_image'); 128 | else { 129 | $headerimage = preg_replace('/^.*?(header-img.php\?upper=[0-9a-fA-F]{6}&lower=[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['headerimage']); 130 | update_option('kubrick_header_image', $headerimage); 131 | } 132 | } 133 | 134 | if ( isset($_REQUEST['fontcolor']) ) { 135 | check_admin_referer('kubrick-header'); 136 | if ( '' == $_REQUEST['fontcolor'] ) 137 | delete_option('kubrick_header_color'); 138 | else { 139 | $fontcolor = preg_replace('/^.*?(#[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['fontcolor']); 140 | update_option('kubrick_header_color', $fontcolor); 141 | } 142 | } 143 | 144 | if ( isset($_REQUEST['fontdisplay']) ) { 145 | check_admin_referer('kubrick-header'); 146 | if ( '' == $_REQUEST['fontdisplay'] || 'inline' == $_REQUEST['fontdisplay'] ) 147 | delete_option('kubrick_header_display'); 148 | else 149 | update_option('kubrick_header_display', 'none'); 150 | } 151 | } 152 | //print_r($_REQUEST); 153 | wp_redirect("themes.php?page=functions.php&saved=true"); 154 | die; 155 | } 156 | add_action('admin_head', 'kubrick_theme_page_head'); 157 | } 158 | add_theme_page(__('Custom Header'), __('Custom Header'), 'edit_themes', basename(__FILE__), 'kubrick_theme_page'); 159 | } 160 | 161 | function kubrick_theme_page_head() { 162 | ?> 163 | 164 | 272 | 370 |

    '.__('Options saved.').'

    '; 375 | ?> 376 |
    377 |

    378 |
    379 |
    380 | 386 |
    387 |
    388 |
    389 |
    390 | 391 |
    392 | red', '#FF0000', 'rgb(255, 0, 0)'); ?>
    393 | #FF0000', '#F00'); ?>
    394 | #FF0000', '#F00'); ?>
    395 | 396 | 397 | 398 | 399 | 400 | 401 |
    402 |
    403 |
    404 |
    405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 |

    418 |
    419 | 420 |
    421 | 429 |
    430 |
    431 |
    432 |
    433 | 434 | -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | > 9 | 10 | 11 | 12 | 13 | <?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?> 14 | 15 | 16 | 17 | 18 | 30 | 31 | 32 | 33 | 34 | 35 | > 36 |
    37 | 38 | 39 | 45 |
    46 | -------------------------------------------------------------------------------- /image.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
    11 | 12 | 13 | 14 |
    15 |

    post_parent); ?> »

    16 |
    17 |

    ID, 'medium' ); ?>

    18 |
    post_excerpt) ) the_excerpt(); // this is the "caption" ?>
    19 | 20 | Read the rest of this entry »

    '); ?> 21 | 22 | 26 |
    27 | 28 | 55 | 56 |
    57 | 58 |
    59 | 60 | 61 | 62 | 63 | 64 |

    Sorry, no attachments matched your criteria.

    65 | 66 | 67 | 68 |
    69 | 70 | 71 | -------------------------------------------------------------------------------- /images/audio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heilemann/kubrick-for-wordpress/d1c63eb6ea25fc11f303c1bec8334e85f49eb2b9/images/audio.jpg -------------------------------------------------------------------------------- /images/header-img.php: -------------------------------------------------------------------------------- 1 | array('r1', 'g1', 'b1'), 'lower'=>array('r2', 'g2', 'b2')); 17 | foreach ( $vars as $var => $subvars ) { 18 | if ( isset($_GET[$var]) ) { 19 | foreach ( $subvars as $index => $subvar ) { 20 | $length = strlen($_GET[$var]) / 3; 21 | $v = substr($_GET[$var], $index * $length, $length); 22 | if ( $length == 1 ) $v = '' . $v . $v; 23 | $$subvar = hexdec( $v ); 24 | if ( $$subvar < 0 || $$subvar > 255 ) 25 | $default = true; 26 | } 27 | } else { 28 | $default = true; 29 | } 30 | } 31 | 32 | if ( $default ) 33 | list ( $r1, $g1, $b1, $r2, $g2, $b2 ) = array ( 105, 174, 231, 65, 128, 182 ); 34 | 35 | // Create the image 36 | $im = imagecreatefromjpeg($img); 37 | 38 | // Get the background color, define the rectangle height 39 | $white = imagecolorat( $im, 15, 15 ); 40 | $h = 182; 41 | 42 | // Define the boundaries of the rounded edges ( y => array ( x1, x2 ) ) 43 | $corners = array( 44 | 0 => array ( 25, 734 ), 45 | 1 => array ( 23, 736 ), 46 | 2 => array ( 22, 737 ), 47 | 3 => array ( 21, 738 ), 48 | 4 => array ( 21, 738 ), 49 | 177 => array ( 21, 738 ), 50 | 178 => array ( 21, 738 ), 51 | 179 => array ( 22, 737 ), 52 | 180 => array ( 23, 736 ), 53 | 181 => array ( 25, 734 ), 54 | ); 55 | 56 | // Blank out the blue thing 57 | for ( $i = 0; $i < $h; $i++ ) { 58 | $x1 = 19; 59 | $x2 = 740; 60 | imageline( $im, $x1, 18 + $i, $x2, 18 + $i, $white ); 61 | } 62 | 63 | // Draw a new color thing 64 | for ( $i = 0; $i < $h; $i++ ) { 65 | $x1 = 20; 66 | $x2 = 739; 67 | $r = ( $r2 - $r1 != 0 ) ? $r1 + ( $r2 - $r1 ) * ( $i / $h ) : $r1; 68 | $g = ( $g2 - $g1 != 0 ) ? $g1 + ( $g2 - $g1 ) * ( $i / $h ) : $g1; 69 | $b = ( $b2 - $b1 != 0 ) ? $b1 + ( $b2 - $b1 ) * ( $i / $h ) : $b1; 70 | $color = imagecolorallocate( $im, $r, $g, $b ); 71 | if ( array_key_exists($i, $corners) ) { 72 | imageline( $im, $x1, 18 + $i, $x2, 18 + $i, $white ); 73 | list ( $x1, $x2 ) = $corners[$i]; 74 | } 75 | imageline( $im, $x1, 18 + $i, $x2, 18 + $i, $color ); 76 | } 77 | 78 | //die; 79 | header("Content-Type: image/jpeg"); 80 | imagejpeg($im, '', 92); 81 | imagedestroy($im); 82 | ?> 83 | -------------------------------------------------------------------------------- /images/kubrickbg-ltr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heilemann/kubrick-for-wordpress/d1c63eb6ea25fc11f303c1bec8334e85f49eb2b9/images/kubrickbg-ltr.jpg -------------------------------------------------------------------------------- /images/kubrickbg-rtl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heilemann/kubrick-for-wordpress/d1c63eb6ea25fc11f303c1bec8334e85f49eb2b9/images/kubrickbg-rtl.jpg -------------------------------------------------------------------------------- /images/kubrickbgcolor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heilemann/kubrick-for-wordpress/d1c63eb6ea25fc11f303c1bec8334e85f49eb2b9/images/kubrickbgcolor.jpg -------------------------------------------------------------------------------- /images/kubrickbgwide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heilemann/kubrick-for-wordpress/d1c63eb6ea25fc11f303c1bec8334e85f49eb2b9/images/kubrickbgwide.jpg -------------------------------------------------------------------------------- /images/kubrickfooter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heilemann/kubrick-for-wordpress/d1c63eb6ea25fc11f303c1bec8334e85f49eb2b9/images/kubrickfooter.jpg -------------------------------------------------------------------------------- /images/kubrickheader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heilemann/kubrick-for-wordpress/d1c63eb6ea25fc11f303c1bec8334e85f49eb2b9/images/kubrickheader.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |
    10 | 11 | 12 | 13 | 14 | 15 |
    id="post-"> 16 |

    17 | 18 | 19 |
    20 | 21 |
    22 | 23 | 24 |
    25 | 26 | 27 | 28 | 32 | 33 | 34 | 35 |

    Not Found

    36 |

    Sorry, but you are looking for something that isn't here.

    37 | 38 | 39 | 40 | 41 |
    42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /links.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | 14 |
    15 | 16 |

    Links:

    17 | 20 | 21 |
    22 | 23 | 24 | -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |
    10 | 11 | 12 |
    13 |

    14 |
    15 | Read the rest of this page »

    '); ?> 16 | 17 | '

    Pages: ', 'after' => '

    ', 'next_or_number' => 'number')); ?> 18 | 19 |
    20 |
    21 | 22 | ', '

    '); ?> 23 | 24 | 25 | 26 |
    27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /rtl.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme name: WordPress Default - kubrick - 3 | Editors: Navid Kashani 4 | Persian WordPress Project : wp-persian.com 5 | */ 6 | body, .commentlist li, #commentform input, #commentform textarea, #commentform p, #sidebar, #wp-calendar caption { 7 | font-family:tahoma, arial; 8 | } 9 | #page { 10 | text-align:right; 11 | direction:rtl; 12 | } 13 | h1, h2, h3, #sidebar h2 { 14 | font-family:arial, tahoma; 15 | } 16 | .commentlist li .avatar { 17 | float:left; 18 | } 19 | 20 | .commentlist li { 21 | padding: 5px 10px 10px 5px; 22 | } 23 | .commentlist li ul li { 24 | margin-left: -5px; 25 | margin-right: 10px; 26 | } 27 | 28 | .commentlist p { 29 | margin: 10px 0 10px 5px; 30 | } 31 | #header { 32 | margin:0 1px 0 0; 33 | } 34 | .narrowcolumn { 35 | float:right; 36 | padding: 0 45px 20px 0; 37 | } 38 | .widecolumn { 39 | margin: 5px 150px 0 0; 40 | } 41 | .widecolumn .smallattachment { 42 | margin: 5px 0 5px 5px; 43 | } 44 | .postmetadata { 45 | clear:right; 46 | } 47 | #sidebar { 48 | margin-left: 0; 49 | margin-right: 545px; 50 | } 51 | img.alignright { 52 | margin: 0 7px 2px 0; 53 | } 54 | 55 | img.alignleft { 56 | margin: 0 0 2px 7px; 57 | } 58 | 59 | .alignright { 60 | float: left; 61 | } 62 | 63 | .alignleft { 64 | float: right; 65 | } 66 | code { 67 | display:block; 68 | direction:ltr; 69 | text-align:left; 70 | } 71 | acronym, abbr, span.caps { 72 | letter-spacing:0; /* fix opera bug */ 73 | } 74 | html>body .entry ul { 75 | padding:0 10px 0 0; 76 | text-indent:10px; 77 | } 78 | html>body .entry li { 79 | margin: 7px 10px 8px 0; 80 | } 81 | .entry ol { 82 | padding: 0 35px 0 0; 83 | } 84 | #sidebar ul ul, #sidebar ul ol { 85 | margin: 5px 10px 0 0; 86 | } 87 | #sidebar ul ul ul, #sidebar ul ol { 88 | margin: 0 10px 0 0; 89 | } 90 | #commentform { 91 | margin: 5px 0 0 10px; 92 | } 93 | #commentform input { 94 | margin: 5px 0 1px 5px; 95 | } 96 | #commentform #submit { 97 | float:left; 98 | } 99 | .commentlist p { 100 | margin: 10px 0 10px 5px; 101 | } 102 | 103 | .children .even, .alt { 104 | border-left: 0; 105 | border-right: 1px solid #ddd; 106 | } 107 | 108 | #wp-calendar #next a { 109 | padding-right:0; 110 | padding-left:10px; 111 | text-align:left; 112 | } 113 | #wp-calendar #prev a { 114 | padding-left:0; 115 | padding-right:10px; 116 | text-align:right; 117 | } 118 | blockquote { 119 | margin: 15px 10px 0 30px; 120 | padding-left: 0; 121 | padding-right: 20px; 122 | border-left: 0 none; 123 | border-right: 5px solid #ddd; 124 | } 125 | #email, #url { 126 | direction:ltr; 127 | } -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heilemann/kubrick-for-wordpress/d1c63eb6ea25fc11f303c1bec8334e85f49eb2b9/screenshot.png -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |
    10 | 11 | 12 | 13 |

    Search Results

    14 | 15 | 19 | 20 | 21 | 22 | 23 |
    > 24 |

    25 | 26 | 27 | 28 |
    29 | 30 | 31 | 32 | 36 | 37 | 38 | 39 |

    No posts found. Try a different search?

    40 | 41 | 42 | 43 | 44 |
    45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /searchform.php: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 |
    5 |
    6 | -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 | 7 | 83 | 84 | -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
    11 | 12 | 13 | 14 | 18 | 19 |
    id="post-"> 20 |

    21 | 22 |
    23 | Read the rest of this entry »

    '); ?> 24 | 25 | '

    Pages: ', 'after' => '

    ', 'next_or_number' => 'number')); ?> 26 | Tags: ', ', ', '

    '); ?> 27 | 28 | 59 | 60 |
    61 |
    62 | 63 | 64 | 65 | 66 | 67 |

    Sorry, no posts matched your criteria.

    68 | 69 | 70 | 71 |
    72 | 73 | 74 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: WordPress Default 3 | Theme URI: http://wordpress.org/ 4 | Description: The default WordPress theme based on the famous Kubrick. 5 | Version: 1.6 6 | Author: Michael Heilemann 7 | Author URI: http://binarybonsai.com/ 8 | Tags: blue, custom header, fixed width, two columns, widgets 9 | 10 | Kubrick v1.5 11 | http://binarybonsai.com/kubrick/ 12 | 13 | This theme was designed and built by Michael Heilemann, 14 | whose blog you will find at http://binarybonsai.com/ 15 | 16 | The CSS, XHTML and design is released under GPL: 17 | http://www.opensource.org/licenses/gpl-license.php 18 | 19 | */ 20 | 21 | 22 | 23 | /* Begin Typography & Colors */ 24 | body { 25 | font-size: 62.5%; /* Resets 1em to 10px */ 26 | font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; 27 | background: #d5d6d7 url('images/kubrickbgcolor.jpg'); 28 | color: #333; 29 | text-align: center; 30 | } 31 | 32 | #page { 33 | background-color: white; 34 | border: 1px solid #959596; 35 | text-align: left; 36 | } 37 | 38 | #header { 39 | background: #73a0c5 url('images/kubrickheader.jpg') no-repeat bottom center; 40 | } 41 | 42 | #headerimg { 43 | margin: 7px 9px 0; 44 | height: 192px; 45 | width: 740px; 46 | } 47 | 48 | #content { 49 | font-size: 1.2em; 50 | } 51 | 52 | .widecolumn .entry p { 53 | font-size: 1.05em; 54 | } 55 | 56 | .narrowcolumn .entry, .widecolumn .entry { 57 | line-height: 1.4em; 58 | } 59 | 60 | .widecolumn { 61 | line-height: 1.6em; 62 | } 63 | 64 | .narrowcolumn .postmetadata { 65 | text-align: center; 66 | } 67 | 68 | .thread-alt { 69 | background-color: #f8f8f8; 70 | } 71 | .thread-even { 72 | background-color: white; 73 | } 74 | .depth-1 { 75 | border: 1px solid #ddd; 76 | } 77 | 78 | .even, .alt { 79 | 80 | border-left: 1px solid #ddd; 81 | } 82 | 83 | #footer { 84 | background: #e7e7e7 url('images/kubrickfooter.jpg') no-repeat top; 85 | border: none; 86 | } 87 | 88 | small { 89 | font-family: Arial, Helvetica, Sans-Serif; 90 | font-size: 0.9em; 91 | line-height: 1.5em; 92 | } 93 | 94 | h1, h2, h3 { 95 | font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif; 96 | font-weight: bold; 97 | } 98 | 99 | h1 { 100 | font-size: 4em; 101 | text-align: center; 102 | } 103 | 104 | #headerimg .description { 105 | font-size: 1.2em; 106 | text-align: center; 107 | } 108 | 109 | h2 { 110 | font-size: 1.6em; 111 | } 112 | 113 | h2.pagetitle { 114 | font-size: 1.6em; 115 | } 116 | 117 | #sidebar h2 { 118 | font-family: 'Lucida Grande', Verdana, Sans-Serif; 119 | font-size: 1.2em; 120 | } 121 | 122 | h3 { 123 | font-size: 1.3em; 124 | } 125 | 126 | h1, h1 a, h1 a:hover, h1 a:visited, #headerimg .description { 127 | text-decoration: none; 128 | color: white; 129 | } 130 | 131 | h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited { 132 | color: #333; 133 | } 134 | 135 | h2, h2 a, h2 a:hover, h2 a:visited, h3, h3 a, h3 a:hover, h3 a:visited, #sidebar h2, #wp-calendar caption, cite { 136 | text-decoration: none; 137 | } 138 | 139 | .entry p a:visited { 140 | color: #b85b5a; 141 | } 142 | 143 | .sticky { 144 | background: #f7f7f7; 145 | padding: 0 10px 10px; 146 | } 147 | .sticky h2 { 148 | padding-top: 10px; 149 | } 150 | 151 | .commentlist li, #commentform input, #commentform textarea { 152 | font: 0.9em 'Lucida Grande', Verdana, Arial, Sans-Serif; 153 | } 154 | .commentlist li ul li { 155 | font-size: 1em; 156 | } 157 | 158 | .commentlist li { 159 | font-weight: bold; 160 | } 161 | 162 | .commentlist li .avatar { 163 | float: right; 164 | border: 1px solid #eee; 165 | padding: 2px; 166 | background: #fff; 167 | } 168 | 169 | .commentlist cite, .commentlist cite a { 170 | font-weight: bold; 171 | font-style: normal; 172 | font-size: 1.1em; 173 | } 174 | 175 | .commentlist p { 176 | font-weight: normal; 177 | line-height: 1.5em; 178 | text-transform: none; 179 | } 180 | 181 | #commentform p { 182 | font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; 183 | } 184 | 185 | .commentmetadata { 186 | font-weight: normal; 187 | } 188 | 189 | #sidebar { 190 | font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif; 191 | } 192 | 193 | small, #sidebar ul ul li, #sidebar ul ol li, .nocomments, .postmetadata, blockquote, strike { 194 | color: #777; 195 | } 196 | 197 | code { 198 | font: 1.1em 'Courier New', Courier, Fixed; 199 | } 200 | 201 | acronym, abbr, span.caps 202 | { 203 | font-size: 0.9em; 204 | letter-spacing: .07em; 205 | } 206 | 207 | a, h2 a:hover, h3 a:hover { 208 | color: #06c; 209 | text-decoration: none; 210 | } 211 | 212 | a:hover { 213 | color: #147; 214 | text-decoration: underline; 215 | } 216 | 217 | #wp-calendar #prev a, #wp-calendar #next a { 218 | font-size: 9pt; 219 | } 220 | 221 | #wp-calendar a { 222 | text-decoration: none; 223 | } 224 | 225 | #wp-calendar caption { 226 | font: bold 1.3em 'Lucida Grande', Verdana, Arial, Sans-Serif; 227 | text-align: center; 228 | } 229 | 230 | #wp-calendar th { 231 | font-style: normal; 232 | text-transform: capitalize; 233 | } 234 | /* End Typography & Colors */ 235 | 236 | 237 | 238 | /* Begin Structure */ 239 | body { 240 | margin: 0 0 20px 0; 241 | padding: 0; 242 | } 243 | 244 | #page { 245 | background-color: white; 246 | margin: 20px auto; 247 | padding: 0; 248 | width: 760px; 249 | border: 1px solid #959596; 250 | } 251 | 252 | #header { 253 | background-color: #73a0c5; 254 | margin: 0 0 0 1px; 255 | padding: 0; 256 | height: 200px; 257 | width: 758px; 258 | } 259 | 260 | #headerimg { 261 | margin: 0; 262 | height: 200px; 263 | width: 100%; 264 | } 265 | 266 | .narrowcolumn { 267 | float: left; 268 | padding: 0 0 20px 45px; 269 | margin: 0px 0 0; 270 | width: 450px; 271 | } 272 | 273 | .widecolumn { 274 | padding: 10px 0 20px 0; 275 | margin: 5px 0 0 150px; 276 | width: 450px; 277 | } 278 | 279 | .post { 280 | margin: 0 0 40px; 281 | text-align: justify; 282 | } 283 | 284 | .post hr { 285 | display: block; 286 | } 287 | 288 | .widecolumn .post { 289 | margin: 0; 290 | } 291 | 292 | .narrowcolumn .postmetadata { 293 | padding-top: 5px; 294 | } 295 | 296 | .widecolumn .postmetadata { 297 | margin: 30px 0; 298 | } 299 | 300 | .widecolumn .smallattachment { 301 | text-align: center; 302 | float: left; 303 | width: 128px; 304 | margin: 5px 5px 5px 0px; 305 | } 306 | 307 | .widecolumn .attachment { 308 | text-align: center; 309 | margin: 5px 0px; 310 | } 311 | 312 | .postmetadata { 313 | clear: both; 314 | } 315 | 316 | .clear { 317 | clear: both; 318 | } 319 | 320 | #footer { 321 | padding: 0; 322 | margin: 0 auto; 323 | width: 760px; 324 | clear: both; 325 | } 326 | 327 | #footer p { 328 | margin: 0; 329 | padding: 20px 0; 330 | text-align: center; 331 | } 332 | /* End Structure */ 333 | 334 | 335 | 336 | /* Begin Headers */ 337 | h1 { 338 | padding-top: 70px; 339 | margin: 0; 340 | } 341 | 342 | h2 { 343 | margin: 30px 0 0; 344 | } 345 | 346 | h2.pagetitle { 347 | margin-top: 30px; 348 | text-align: center; 349 | } 350 | 351 | #sidebar h2 { 352 | margin: 5px 0 0; 353 | padding: 0; 354 | } 355 | 356 | h3 { 357 | padding: 0; 358 | margin: 30px 0 0; 359 | } 360 | 361 | h3.comments { 362 | padding: 0; 363 | margin: 40px auto 20px ; 364 | } 365 | /* End Headers */ 366 | 367 | 368 | 369 | /* Begin Images */ 370 | p img { 371 | padding: 0; 372 | max-width: 100%; 373 | } 374 | 375 | /* Using 'class="alignright"' on an image will (who would've 376 | thought?!) align the image to the right. And using 'class="centered', 377 | will of course center the image. This is much better than using 378 | align="center", being much more futureproof (and valid) */ 379 | 380 | img.centered { 381 | display: block; 382 | margin-left: auto; 383 | margin-right: auto; 384 | } 385 | 386 | img.alignright { 387 | padding: 4px; 388 | margin: 0 0 2px 7px; 389 | display: inline; 390 | } 391 | 392 | img.alignleft { 393 | padding: 4px; 394 | margin: 0 7px 2px 0; 395 | display: inline; 396 | } 397 | 398 | .alignright { 399 | float: right; 400 | } 401 | 402 | .alignleft { 403 | float: left; 404 | } 405 | /* End Images */ 406 | 407 | 408 | 409 | /* Begin Lists 410 | 411 | Special stylized non-IE bullets 412 | Do not work in Internet Explorer, which merely default to normal bullets. */ 413 | 414 | html>body .entry ul { 415 | margin-left: 0px; 416 | padding: 0 0 0 30px; 417 | list-style: none; 418 | padding-left: 10px; 419 | text-indent: -10px; 420 | } 421 | 422 | html>body .entry li { 423 | margin: 7px 0 8px 10px; 424 | } 425 | 426 | .entry ul li:before, #sidebar ul ul li:before { 427 | content: "\00BB \0020"; 428 | } 429 | 430 | .entry ol { 431 | padding: 0 0 0 35px; 432 | margin: 0; 433 | } 434 | 435 | .entry ol li { 436 | margin: 0; 437 | padding: 0; 438 | } 439 | 440 | .postmetadata ul, .postmetadata li { 441 | display: inline; 442 | list-style-type: none; 443 | list-style-image: none; 444 | } 445 | 446 | #sidebar ul, #sidebar ul ol { 447 | margin: 0; 448 | padding: 0; 449 | } 450 | 451 | #sidebar ul li { 452 | list-style-type: none; 453 | list-style-image: none; 454 | margin-bottom: 15px; 455 | } 456 | 457 | #sidebar ul p, #sidebar ul select { 458 | margin: 5px 0 8px; 459 | } 460 | 461 | #sidebar ul ul, #sidebar ul ol { 462 | margin: 5px 0 0 10px; 463 | } 464 | 465 | #sidebar ul ul ul, #sidebar ul ol { 466 | margin: 0 0 0 10px; 467 | } 468 | 469 | ol li, #sidebar ul ol li { 470 | list-style: decimal outside; 471 | } 472 | 473 | #sidebar ul ul li, #sidebar ul ol li { 474 | margin: 3px 0 0; 475 | padding: 0; 476 | } 477 | /* End Entry Lists */ 478 | 479 | 480 | 481 | /* Begin Form Elements */ 482 | #searchform { 483 | margin: 10px auto; 484 | padding: 5px 3px; 485 | text-align: center; 486 | } 487 | 488 | #sidebar #searchform #s { 489 | width: 108px; 490 | padding: 2px; 491 | } 492 | 493 | #sidebar #searchsubmit { 494 | padding: 1px; 495 | } 496 | 497 | .entry form { /* This is mainly for password protected posts, makes them look better. */ 498 | text-align:center; 499 | } 500 | 501 | select { 502 | width: 130px; 503 | } 504 | 505 | #commentform input { 506 | width: 170px; 507 | padding: 2px; 508 | margin: 5px 5px 1px 0; 509 | } 510 | 511 | #commentform { 512 | margin: 5px 10px 0 0; 513 | } 514 | #commentform textarea { 515 | width: 100%; 516 | padding: 2px; 517 | } 518 | #respond:after { 519 | content: "."; 520 | display: block; 521 | height: 0; 522 | clear: both; 523 | visibility: hidden; 524 | } 525 | #commentform #submit { 526 | margin: 0 0 5px auto; 527 | float: right; 528 | } 529 | /* End Form Elements */ 530 | 531 | 532 | 533 | /* Begin Comments*/ 534 | .alt { 535 | margin: 0; 536 | padding: 10px; 537 | } 538 | 539 | .commentlist { 540 | padding: 0; 541 | text-align: justify; 542 | } 543 | 544 | .commentlist li { 545 | margin: 15px 0 10px; 546 | padding: 5px 5px 10px 10px; 547 | list-style: none; 548 | 549 | } 550 | .commentlist li ul li { 551 | margin-right: -5px; 552 | margin-left: 10px; 553 | } 554 | 555 | .commentlist p { 556 | margin: 10px 5px 10px 0; 557 | } 558 | .children { padding: 0; } 559 | 560 | #commentform p { 561 | margin: 5px 0; 562 | } 563 | 564 | .nocomments { 565 | text-align: center; 566 | margin: 0; 567 | padding: 0; 568 | } 569 | 570 | .commentmetadata { 571 | margin: 0; 572 | display: block; 573 | } 574 | /* End Comments */ 575 | 576 | 577 | 578 | /* Begin Sidebar */ 579 | #sidebar 580 | { 581 | padding: 20px 0 10px 0; 582 | margin-left: 545px; 583 | width: 190px; 584 | } 585 | 586 | #sidebar form { 587 | margin: 0; 588 | } 589 | /* End Sidebar */ 590 | 591 | 592 | 593 | /* Begin Calendar */ 594 | #wp-calendar { 595 | empty-cells: show; 596 | margin: 10px auto 0; 597 | width: 155px; 598 | } 599 | 600 | #wp-calendar #next a { 601 | padding-right: 10px; 602 | text-align: right; 603 | } 604 | 605 | #wp-calendar #prev a { 606 | padding-left: 10px; 607 | text-align: left; 608 | } 609 | 610 | #wp-calendar a { 611 | display: block; 612 | } 613 | 614 | #wp-calendar caption { 615 | text-align: center; 616 | width: 100%; 617 | } 618 | 619 | #wp-calendar td { 620 | padding: 3px 0; 621 | text-align: center; 622 | } 623 | 624 | #wp-calendar td.pad:hover { /* Doesn't work in IE */ 625 | background-color: #fff; } 626 | /* End Calendar */ 627 | 628 | 629 | 630 | /* Begin Various Tags & Classes */ 631 | acronym, abbr, span.caps { 632 | cursor: help; 633 | } 634 | 635 | acronym, abbr { 636 | border-bottom: 1px dashed #999; 637 | } 638 | 639 | blockquote { 640 | margin: 15px 30px 0 10px; 641 | padding-left: 20px; 642 | border-left: 5px solid #ddd; 643 | } 644 | 645 | blockquote cite { 646 | margin: 5px 0 0; 647 | display: block; 648 | } 649 | 650 | .center { 651 | text-align: center; 652 | } 653 | 654 | .hidden { 655 | display: none; 656 | } 657 | 658 | .screen-reader-text { 659 | position: absolute; 660 | left: -1000em; 661 | } 662 | 663 | hr { 664 | display: none; 665 | } 666 | 667 | a img { 668 | border: none; 669 | } 670 | 671 | .navigation { 672 | display: block; 673 | text-align: center; 674 | margin-top: 10px; 675 | margin-bottom: 60px; 676 | } 677 | /* End Various Tags & Classes*/ 678 | 679 | 680 | 681 | /* Captions */ 682 | .aligncenter, 683 | div.aligncenter { 684 | display: block; 685 | margin-left: auto; 686 | margin-right: auto; 687 | } 688 | 689 | .wp-caption { 690 | border: 1px solid #ddd; 691 | text-align: center; 692 | background-color: #f3f3f3; 693 | padding-top: 4px; 694 | margin: 10px; 695 | -moz-border-radius: 3px; 696 | -khtml-border-radius: 3px; 697 | -webkit-border-radius: 3px; 698 | border-radius: 3px; 699 | } 700 | 701 | .wp-caption img { 702 | margin: 0; 703 | padding: 0; 704 | border: 0 none; 705 | } 706 | 707 | .wp-caption p.wp-caption-text { 708 | font-size: 11px; 709 | line-height: 17px; 710 | padding: 0 4px 5px; 711 | margin: 0; 712 | } 713 | /* End captions */ 714 | 715 | 716 | /* "Daisy, Daisy, give me your answer do. I'm half crazy all for the love of you. 717 | It won't be a stylish marriage, I can't afford a carriage. 718 | But you'll look sweet upon the seat of a bicycle built for two." */ 719 | --------------------------------------------------------------------------------