Make WordPress Core


Ignore:
Location:
branches/3.0/wp-content/themes/twentyten
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/wp-content/themes/twentyten/attachment.php

    r15262 r15465  
    1010get_header(); ?>
    1111
    12         <div id="container">
     12        <div id="container" class="single-attachment">
    1313            <div id="content" role="main">
    1414
    1515<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
    1616
    17                 <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php esc_attr( printf( __( 'Return to %s', 'twentyten' ), get_the_title( $post->post_parent ) ) ); ?>" rel="gallery"><?php
    18                     /* translators: %s - title of parent post */
    19                     printf( __( '<span class="meta-nav">&larr;</span> %s', 'twentyten' ), get_the_title( $post->post_parent ) );
    20                 ?></a></p>
     17                <?php if ( ! empty( $post->post_parent ) ) : ?>
     18                    <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php esc_attr( printf( __( 'Return to %s', 'twentyten' ), get_the_title( $post->post_parent ) ) ); ?>" rel="gallery"><?php
     19                        /* translators: %s - title of parent post */
     20                        printf( __( '<span class="meta-nav">&larr;</span> %s', 'twentyten' ), get_the_title( $post->post_parent ) );
     21                    ?></a></p>
     22                <?php endif; ?>
    2123
    2224                <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  • branches/3.0/wp-content/themes/twentyten/editor-style.css

    r15262 r15465  
    4040}
    4141hr {
    42     background-color: #E7E7E7;
     42    background-color: #e7e7e7;
    4343    border:0;
    4444    height: 1px;
     
    9696}
    9797ins {
    98     background: #FFFFCC;
     98    background: #ffffcc;
    9999    border: none;
    100100    color: #333;
     
    143143}
    144144a:link {
    145     color:#0066CC;
     145    color:#0066cc;
    146146}
    147147a:visited {
     
    150150a:active,
    151151a:hover {
    152     color: #FF4B33;
     152    color: #ff4b33;
    153153}
    154154p,
  • branches/3.0/wp-content/themes/twentyten/functions.php

    r15262 r15465  
    203203}
    204204endif;
    205 
    206 /**
    207  * Makes some changes to the <title> tag, by filtering the output of wp_title().
    208  *
    209  * If we have a site description and we're viewing the home page or a blog posts
    210  * page (when using a static front page), then we will add the site description.
    211  *
    212  * If we're viewing a search result, then we're going to recreate the title entirely.
    213  * We're going to add page numbers to all titles as well, to the middle of a search
    214  * result title and the end of all other titles.
    215  *
    216  * The site title also gets added to all titles.
    217  *
    218  * @since Twenty Ten 1.0
    219  *
    220  * @param string $title Title generated by wp_title()
    221  * @param string $separator The separator passed to wp_title(). Twenty Ten uses a
    222  *  vertical bar, "|", as a separator in header.php.
    223  * @return string The new title, ready for the <title> tag.
    224  */
    225 function twentyten_filter_wp_title( $title, $separator ) {
    226     // Don't affect wp_title() calls in feeds.
    227     if ( is_feed() )
    228         return $title;
    229 
    230     // The $paged global variable contains the page number of a listing of posts.
    231     // The $page global variable contains the page number of a single post that is paged.
    232     // We'll display whichever one applies, if we're not looking at the first page.
    233     global $paged, $page;
    234 
    235     if ( is_search() ) {
    236         // If we're a search, let's start over:
    237         $title = sprintf( __( 'Search results for %s', 'twentyten' ), '"' . get_search_query() . '"' );
    238         // Add a page number if we're on page 2 or more:
    239         if ( $paged >= 2 )
    240             $title .= " $separator " . sprintf( __( 'Page %s', 'twentyten' ), $paged );
    241         // Add the site name to the end:
    242         $title .= " $separator " . get_bloginfo( 'name', 'display' );
    243         // We're done. Let's send the new title back to wp_title():
    244         return $title;
    245     }
    246 
    247     // Otherwise, let's start by adding the site name to the end:
    248     $title .= get_bloginfo( 'name', 'display' );
    249 
    250     // If we have a site description and we're on the home/front page, add the description:
    251     $site_description = get_bloginfo( 'description', 'display' );
    252     if ( $site_description && ( is_home() || is_front_page() ) )
    253         $title .= " $separator " . $site_description;
    254 
    255     // Add a page number if necessary:
    256     if ( $paged >= 2 || $page >= 2 )
    257         $title .= " $separator " . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
    258 
    259     // Return the new title to wp_title():
    260     return $title;
    261 }
    262 add_filter( 'wp_title', 'twentyten_filter_wp_title', 10, 2 );
    263205
    264206/**
  • branches/3.0/wp-content/themes/twentyten/header.php

    r15262 r15465  
    1616    /*
    1717     * Print the <title> tag based on what is being viewed.
    18      * We filter the output of wp_title() a bit -- see
    19      * twentyten_filter_wp_title() in functions.php.
    2018     */
     19    global $page, $paged;
     20
    2121    wp_title( '|', true, 'right' );
     22
     23    // Add the blog name.
     24    bloginfo( 'name' );
     25
     26    // Add the blog description for the home/front page.
     27    $site_description = get_bloginfo( 'description', 'display' );
     28    if ( $site_description && ( is_home() || is_front_page() ) )
     29        echo " | $site_description";
     30
     31    // Add a page number if necessary:
     32    if ( $paged >= 2 || $page >= 2 )
     33        echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
    2234
    2335    ?></title>
  • branches/3.0/wp-content/themes/twentyten/languages/twentyten.pot

    r15262 r15465  
    1 # Translation of the WordPress theme Twenty Ten 1.0 by the WordPress team.
     1# Translation of the WordPress theme Twenty Ten 1.1 by the WordPress team.
    22# Copyright (C) 2010 the WordPress team
    33# This file is distributed under the same license as the Twenty Ten package.
     
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: Twenty Ten 1.0\n"
     9"Project-Id-Version: Twenty Ten 1.1\n"
    1010"Report-Msgid-Bugs-To: http://wordpress.org/tag/twentyten\n"
    11 "POT-Creation-Date: 2010-06-15 16:21+0000\n"
     11"POT-Creation-Date: 2010-07-14 16:21+0000\n"
    1212"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    4747msgstr ""
    4848
    49 #: attachment.php:17
     49#: attachment.php:18
    5050#, php-format
    5151msgid "Return to %s"
     
    5353
    5454#. translators: %s - title of parent post
    55 #: attachment.php:19
     55#: attachment.php:20
    5656#, php-format
    5757msgid "<span class=\"meta-nav\">&larr;</span> %s"
    5858msgstr ""
    5959
    60 #: attachment.php:27
     60#: attachment.php:29
    6161#, php-format
    6262msgid "<span class=\"%1$s\">By</span> %2$s"
    6363msgstr ""
    6464
    65 #: attachment.php:31 functions.php:509
     65#: attachment.php:33 functions.php:451
    6666#, php-format
    6767msgid "View all posts by %s"
    6868msgstr ""
    6969
    70 #: attachment.php:38
     70#: attachment.php:40
    7171#, php-format
    7272msgid "<span class=\"%1$s\">Published</span> %2$s"
    7373msgstr ""
    7474
    75 #: attachment.php:48
     75#: attachment.php:50
    7676#, php-format
    7777msgid "Full size is %s pixels"
    7878msgstr ""
    7979
    80 #: attachment.php:51
     80#: attachment.php:53
    8181msgid "Link to full-size image"
    8282msgstr ""
    8383
    84 #: attachment.php:58 attachment.php:105 loop.php:94 loop.php:117 loop.php:159
     84#: attachment.php:60 attachment.php:107 loop.php:95 loop.php:118 loop.php:160
    8585#: onecolumn-page.php:27 page.php:32 single.php:53
    8686msgid "Edit"
    8787msgstr ""
    8888
    89 #: attachment.php:98 functions.php:299 loop.php:109 loop.php:137
     89#: attachment.php:100 functions.php:241 loop.php:110 loop.php:138
    9090msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
    9191msgstr ""
    9292
    93 #: attachment.php:99 loop.php:138 onecolumn-page.php:26 page.php:31
     93#: attachment.php:101 loop.php:139 onecolumn-page.php:26 page.php:31
    9494#: single.php:31
    9595msgid "Pages:"
     
    135135msgstr ""
    136136
    137 #. #-#-#-#-#  twentyten.pot (Twenty Ten 1.0)  #-#-#-#-#
     137#. #-#-#-#-#  twentyten.pot (Twenty Ten 1.1)  #-#-#-#-#
    138138#. Theme URI of the plugin/theme
    139139#: footer.php:33
     
    194194msgstr ""
    195195
    196 #: functions.php:237
    197 #, php-format
    198 msgid "Search results for %s"
    199 msgstr ""
    200 
    201 #: functions.php:240 functions.php:257
    202 #, php-format
    203 msgid "Page %s"
    204 msgstr ""
    205 
    206 #: functions.php:366
     196#: functions.php:308
    207197#, php-format
    208198msgid "%s <span class=\"says\">says:</span>"
    209199msgstr ""
    210200
    211 #: functions.php:369
     201#: functions.php:311
    212202msgid "Your comment is awaiting moderation."
    213203msgstr ""
    214204
    215205#. translators: 1: date, 2: time
     206#: functions.php:318
     207#, php-format
     208msgid "%1$s at %2$s"
     209msgstr ""
     210
     211#: functions.php:318 functions.php:335
     212msgid "(Edit)"
     213msgstr ""
     214
     215#: functions.php:335
     216msgid "Pingback:"
     217msgstr ""
     218
     219#: functions.php:354
     220msgid "Primary Widget Area"
     221msgstr ""
     222
     223#: functions.php:356
     224msgid "The primary widget area"
     225msgstr ""
     226
     227#: functions.php:365
     228msgid "Secondary Widget Area"
     229msgstr ""
     230
     231#: functions.php:367
     232msgid "The secondary widget area"
     233msgstr ""
     234
    216235#: functions.php:376
    217 #, php-format
    218 msgid "%1$s at %2$s"
    219 msgstr ""
    220 
    221 #: functions.php:376 functions.php:393
    222 msgid "(Edit)"
    223 msgstr ""
    224 
    225 #: functions.php:393
    226 msgid "Pingback:"
    227 msgstr ""
    228 
    229 #: functions.php:412
    230 msgid "Primary Widget Area"
    231 msgstr ""
    232 
    233 #: functions.php:414
    234 msgid "The primary widget area"
    235 msgstr ""
    236 
    237 #: functions.php:423
    238 msgid "Secondary Widget Area"
    239 msgstr ""
    240 
    241 #: functions.php:425
    242 msgid "The secondary widget area"
    243 msgstr ""
    244 
    245 #: functions.php:434
    246236msgid "First Footer Widget Area"
    247237msgstr ""
    248238
    249 #: functions.php:436
     239#: functions.php:378
    250240msgid "The first footer widget area"
    251241msgstr ""
    252242
    253 #: functions.php:445
     243#: functions.php:387
    254244msgid "Second Footer Widget Area"
    255245msgstr ""
    256246
    257 #: functions.php:447
     247#: functions.php:389
    258248msgid "The second footer widget area"
    259249msgstr ""
    260250
    261 #: functions.php:456
     251#: functions.php:398
    262252msgid "Third Footer Widget Area"
    263253msgstr ""
    264254
    265 #: functions.php:458
     255#: functions.php:400
    266256msgid "The third footer widget area"
    267257msgstr ""
    268258
    269 #: functions.php:467
     259#: functions.php:409
    270260msgid "Fourth Footer Widget Area"
    271261msgstr ""
    272262
    273 #: functions.php:469
     263#: functions.php:411
    274264msgid "The fourth footer widget area"
    275265msgstr ""
    276266
    277 #: functions.php:500
     267#: functions.php:442
    278268#, php-format
    279269msgid ""
     
    282272msgstr ""
    283273
    284 #: functions.php:526
     274#: functions.php:468
    285275#, php-format
    286276msgid ""
     
    289279msgstr ""
    290280
    291 #: functions.php:528
     281#: functions.php:470
    292282#, php-format
    293283msgid ""
     
    296286msgstr ""
    297287
    298 #: functions.php:530
     288#: functions.php:472
    299289#, php-format
    300290msgid ""
     
    303293msgstr ""
    304294
    305 #: header.php:71
     295#: header.php:33
     296#, php-format
     297msgid "Page %s"
     298msgstr ""
     299
     300#: header.php:83
    306301msgid "Skip to content"
    307302msgstr ""
    308303
    309 #: loop.php:25 loop.php:172
     304#: loop.php:25 loop.php:173
    310305msgid "<span class=\"meta-nav\">&larr;</span> Older posts"
    311306msgstr ""
    312307
    313 #: loop.php:26 loop.php:173
     308#: loop.php:26 loop.php:174
    314309msgid "Newer posts <span class=\"meta-nav\">&rarr;</span>"
    315310msgstr ""
     
    321316msgstr ""
    322317
    323 #: loop.php:60 loop.php:91
     318#: loop.php:60 loop.php:92
    324319msgctxt "gallery category slug"
    325320msgid "gallery"
    326321msgstr ""
    327322
    328 #: loop.php:62 loop.php:82 loop.php:125
     323#: loop.php:62 loop.php:83 loop.php:126
    329324#, php-format
    330325msgid "Permalink to %s"
    331326msgstr ""
    332327
    333 #: loop.php:81
     328#: loop.php:82
    334329#, php-format
    335330msgid "This gallery contains <a %1$s>%2$s photos</a>."
    336331msgstr ""
    337332
    338 #: loop.php:91
     333#: loop.php:92
    339334msgid "View posts in the Gallery category"
    340335msgstr ""
    341336
    342 #: loop.php:91
     337#: loop.php:92
    343338msgid "More Galleries"
    344339msgstr ""
    345340
    346 #: loop.php:93 loop.php:116 loop.php:158
     341#: loop.php:94 loop.php:117 loop.php:159
    347342msgid "Leave a comment"
    348343msgstr ""
    349344
    350 #: loop.php:93 loop.php:116 loop.php:158
     345#: loop.php:94 loop.php:117 loop.php:159
    351346msgid "1 Comment"
    352347msgstr ""
    353348
    354 #: loop.php:93 loop.php:116 loop.php:158
     349#: loop.php:94 loop.php:117 loop.php:159
    355350msgid "% Comments"
    356351msgstr ""
    357352
    358 #: loop.php:100
     353#: loop.php:101
    359354msgctxt "asides category slug"
    360355msgid "asides"
    361356msgstr ""
    362357
    363 #: loop.php:145
     358#: loop.php:146
    364359#, php-format
    365360msgid "<span class=\"%1$s\">Posted in</span> %2$s"
    366361msgstr ""
    367362
    368 #: loop.php:154
     363#: loop.php:155
    369364#, php-format
    370365msgid "<span class=\"%1$s\">Tagged</span> %2$s"
     
    419414
    420415#. Description of the plugin/theme
    421 msgid "The 2010 default theme for WordPress."
     416msgid ""
     417"The 2010 theme for WordPress is stylish, customizable, simple, and readable "
     418"-- make it yours with a custom menu, header image, and background. Twenty "
     419"Ten supports six widgetized areas (two in the sidebar, four in the footer) "
     420"and featured images (thumbnails for gallery posts and custom header images "
     421"for posts and pages). It includes stylesheets for print and the admin Visual "
     422"Editor, special styles for posts in the \"Asides\" and \"Gallery\" "
     423"categories, and has an optional one-column page template that removes the "
     424"sidebar."
    422425msgstr ""
    423426
  • branches/3.0/wp-content/themes/twentyten/loop.php

    r15262 r15465  
    6969<?php if ( post_password_required() ) : ?>
    7070                <?php the_content(); ?>
    71 <?php else : ?>
    72                 <div class="gallery-thumb">
    73 <?php
    74     $images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) );
    75     $total_images = count( $images );
    76     $image = array_shift( $images );
    77     $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' );
    78 ?>
    79                     <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a>
    80                 </div><!-- .gallery-thumb -->
    81                 <p><em><?php printf( __( 'This gallery contains <a %1$s>%2$s photos</a>.', 'twentyten' ),
    82                         'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"',
    83                         $total_images
    84                     ); ?></em></p>
    85 
    86                 <?php the_excerpt(); ?>
     71<?php else : ?>         
     72                <?php
     73                    $images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) );
     74                    if ( $images ) :
     75                        $total_images = count( $images );
     76                        $image = array_shift( $images );
     77                        $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' );
     78                ?>
     79                        <div class="gallery-thumb">
     80                            <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a>
     81                        </div><!-- .gallery-thumb -->
     82                        <p><em><?php printf( __( 'This gallery contains <a %1$s>%2$s photos</a>.', 'twentyten' ),
     83                                'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"',
     84                                $total_images
     85                            ); ?></em></p>
     86                <?php endif; ?>
     87                        <?php the_excerpt(); ?>
    8788<?php endif; ?>
    8889            </div><!-- .entry-content -->
  • branches/3.0/wp-content/themes/twentyten/page.php

    r15262 r15465  
    44 *
    55 * This is the template that displays all pages by default.
    6  * Please note that this is the wordpress construct of pages
    7  * and that other 'pages' on your wordpress site will use a
     6 * Please note that this is the WordPress construct of pages
     7 * and that other 'pages' on your WordPress site will use a
    88 * different template.
    99 *
     
    2323                    <?php if ( is_front_page() ) { ?>
    2424                        <h2 class="entry-title"><?php the_title(); ?></h2>
    25                     <?php } else { ?>   
     25                    <?php } else { ?>
    2626                        <h1 class="entry-title"><?php the_title(); ?></h1>
    27                     <?php } ?>             
     27                    <?php } ?>
    2828
    2929                    <div class="entry-content">
  • branches/3.0/wp-content/themes/twentyten/style.css

    r15262 r15465  
    22Theme Name: Twenty Ten
    33Theme URI: http://wordpress.org/
    4 Description: The 2010 default theme for WordPress.
     4Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.
    55Author: the WordPress team
    6 Version: 1.0
     6Version: 1.1
    77Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style
    88*/
    99
    1010
    11 /* Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
     11/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
    1212-------------------------------------------------------------- */
    1313
     
    2121fieldset, form, label, legend,
    2222table, caption, tbody, tfoot, thead, tr, th, td {
     23    background: transparent;
     24    border: 0;
    2325    margin: 0;
    2426    padding: 0;
    25     border: 0;
    2627    vertical-align: baseline;
    27     background: transparent;
    2828}
    2929body {
     
    3131}
    3232h1, h2, h3, h4, h5, h6 {
     33    clear: both;
    3334    font-weight: normal;
    34     clear: both;
    3535}
    3636ol, ul {
     
    5252    border-spacing: 0;
    5353}
    54 a img { border: none; }
    55 
    56 
     54a img {
     55    border: none;
     56}
     57
     58/* =Layout
     59-------------------------------------------------------------- */
    5760
    5861/*
     
    113116    font-family: Georgia, "Bitstream Charter", serif;
    114117}
    115 
    116118h3#comments-title,
    117119h3#reply-title,
     
    139141.widget-title,
    140142.wp-caption-text,
    141 input[type=submit]
    142 {
     143input[type=submit] {
    143144    font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
    144145}
     
    149150    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    150151}
    151 
    152152
    153153
     
    166166}
    167167#wrapper {
     168    background: #fff;
    168169    margin-top: 20px;
    169     background: #fff;
    170170    padding: 0 20px;
    171171}
     
    185185#site-info {
    186186    float: left;
     187    font-size: 14px;
     188    font-weight: bold;
    187189    width: 700px;
    188     font-weight: bold;
    189     font-size: 14px;
    190190}
    191191#site-generator {
     
    195195
    196196
    197 
    198197/* =Global Elements
    199198-------------------------------------------------------------- */
    200199
    201 /* Main global 'theme' and typographic styles  */
     200/* Main global 'theme' and typographic styles */
    202201body {
    203202    background: #f1f1f1;
    204203}
    205 
    206204body,
    207205input,
     
    212210}
    213211hr {
    214     background-color: #E7E7E7;
    215     border:0;
     212    background-color: #e7e7e7;
     213    border: 0;
     214    clear: both;
    216215    height: 1px;
    217216    margin-bottom: 18px;
    218     clear:both;
    219217}
    220218
     
    232230}
    233231ol ol {
    234     list-style:upper-alpha;
     232    list-style: upper-alpha;
    235233}
    236234ol ol ol {
    237     list-style:lower-roman;
     235    list-style: lower-roman;
    238236}
    239237ol ol ol ol {
    240     list-style:lower-alpha;
     238    list-style: lower-alpha;
    241239}
    242240ul ul,
     
    244242ul ol,
    245243ol ul {
    246     margin-bottom:0;
     244    margin-bottom: 0;
    247245}
    248246dl {
    249     margin:0 0 24px 0;
     247    margin: 0 0 24px 0;
    250248}
    251249dt {
     
    291289    cursor: help;
    292290}
    293 
    294291sup,
    295292sub {
    296293    height: 0;
    297294    line-height: 1;
     295    position: relative;
    298296    vertical-align: baseline;
    299     position: relative;
    300297}
    301298sup {
     
    307304input[type="text"],
    308305textarea {
    309     padding: 2px;
    310306    background: #f9f9f9;
    311307    border: 1px solid #ccc;
     
    313309    -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
    314310    -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
     311    padding: 2px;
    315312}
    316313a:link {
    317     color:#0066CC;
     314    color: #0066cc;
    318315}
    319316a:visited {
    320     color:#743399;
     317    color: #743399;
    321318}
    322319a:active,
    323320a:hover {
    324     color: #FF4B33;
     321    color: #ff4b33;
    325322}
    326323
     
    332329
    333330
    334 
    335331/* =Header
    336332-------------------------------------------------------------- */
     
    341337#site-title {
    342338    float: left;
     339    font-size: 30px;
     340    line-height: 36px;
    343341    margin: 0 0 18px 0;
    344342    width: 700px;
    345     font-size: 30px;
    346     line-height: 36px;
    347343}
    348344#site-title a {
     
    361357/* This is the custom header image */
    362358#branding img {
     359    border-top: 4px solid #000;
     360    border-bottom: 1px solid #000;
    363361    clear: both;
    364     border-top: 4px solid #000;
    365362    display: block;
    366     border-bottom: 1px solid #000;
    367 }
    368 
     363}
    369364
    370365
     
    374369#access {
    375370    background: #000;
     371    display: block;
     372    float: left;
    376373    margin: 0 auto;
    377374    width: 940px;
    378     display:block;
    379     float:left;
    380375}
    381376#access .menu-header,
     
    383378    font-size: 13px;
    384379    margin-left: 12px;
     380    width: 928px;
    385381}
    386382#access .menu-header ul,
     
    391387#access .menu-header li,
    392388div.menu li {
    393     float:left;
     389    float: left;
    394390    position: relative;
    395391}
    396392#access a {
    397     display:block;
    398     text-decoration:none;
    399     color:#aaa;
    400     padding:0 10px;
    401     line-height:38px;
     393    color: #aaa;
     394    display: block;
     395    line-height: 38px;
     396    padding: 0 10px;
     397    text-decoration: none;
    402398}
    403399#access ul ul {
    404     display:none;
    405     position:absolute;
    406     top:38px;
    407     left:0;
    408     float:left;
    409400    box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    410401    -moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    411402    -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
     403    display: none;
     404    position: absolute;
     405    top: 38px;
     406    left: 0;
     407    float: left;
    412408    width: 180px;
    413409    z-index: 99999;
    414410}
    415411#access ul ul li {
    416     min-width: 180px;   
     412    min-width: 180px;
    417413}
    418414#access ul ul ul {
    419     left:100%;
    420     top:0;
     415    left: 100%;
     416    top: 0;
    421417}
    422418#access ul ul a {
    423     background:#333;
    424     height:auto;
    425     line-height:1em;
    426     padding:10px;
     419    background: #333;
     420    line-height: 1em;
     421    padding: 10px;
    427422    width: 160px;
     423    height: auto;
    428424}
    429425#access li:hover > a,
    430426#access ul ul :hover > a {
    431     color:#fff;
    432     background:#333;
     427    background: #333;
     428    color: #fff;
    433429}
    434430#access ul li:hover > ul {
    435     display:block;
     431    display: block;
    436432}
    437433#access ul li.current_page_item > a,
     
    441437    color: #fff;
    442438}
    443 
    444439* html #access ul li.current_page_item a,
    445440* html #access ul li.current-menu-ancestor a,
     
    447442* html #access ul li.current-menu-parent a,
    448443* html #access ul li a:hover {
    449     color:#fff;
    450 }
     444    color: #fff;
     445}
     446
    451447
    452448/* =Content
     
    454450
    455451#main {
     452    clear: both;
    456453    overflow: hidden;
    457454    padding: 40px 0 0 0;
     
    473470#content pre,
    474471#content hr {
    475     margin-bottom:24px;
     472    margin-bottom: 24px;
    476473}
    477474#content ul ul,
     
    479476#content ul ol,
    480477#content ol ul {
    481     margin-bottom:0;
     478    margin-bottom: 0;
    482479}
    483480#content pre,
     
    502499#content h6 {
    503500    color: #000;
     501    line-height: 1.5em;
    504502    margin: 0 0 20px 0;
    505     line-height: 1.5em;
    506503}
    507504#content table {
    508505    border: 1px solid #e7e7e7;
     506    margin: 0 -1px 24px 0;
    509507    text-align: left;
    510     margin: 0 -1px 24px 0;
    511508    width: 100%;
    512509}
     
    524521}
    525522#content tr.odd td {
    526     background: #F2F7FC;
     523    background: #f2f7fc;
    527524}
    528525.hentry {
     
    530527}
    531528.home .sticky {
    532     background: #F2F7FC;
     529    background: #f2f7fc;
    533530    border-top: 4px solid #000;
    534     padding: 18px 20px;
    535531    margin-left: -20px;
    536532    margin-right: -20px;
     533    padding: 18px 20px;
    537534}
    538535.single .hentry {
     
    553550.page-title a:link,
    554551.page-title a:visited {
    555     color:#888;
     552    color: #888;
    556553    text-decoration: none;
    557554}
    558555.page-title a:active,
    559556.page-title a:hover {
    560     color: #FF4B33;
     557    color: #ff4b33;
    561558}
    562559#content .entry-title {
    563560    color: #000;
    564561    font-size: 21px;
     562    font-weight: bold;
    565563    line-height: 1.3em;
    566     font-weight: bold;
    567564    margin-bottom: 0;
    568565}
    569566.entry-title a:link,
    570567.entry-title a:visited {
    571     color:#000;
     568    color: #000;
    572569    text-decoration: none;
    573570}
    574571.entry-title a:active,
    575572.entry-title a:hover {
    576     color: #FF4B33;
     573    color: #ff4b33;
    577574}
    578575.entry-meta {
     
    597594}
    598595.entry-content fieldset {
    599     border: 1px solid #E7E7E7;
     596    border: 1px solid #e7e7e7;
    600597    margin: 0 0 24px 0;
    601598    padding: 24px;
     
    641638.page-link {
    642639    color: #000;
    643     font-weight:bold;
    644     margin:0 0 22px 0;
    645     word-spacing:0.5em;
     640    font-weight: bold;
     641    margin: 0 0 22px 0;
     642    word-spacing: 0.5em;
    646643}
    647644.page-link a:link,
    648645.page-link a:visited {
    649646    background: #f1f1f1;
    650     color:#333;
    651     font-weight:normal;
    652     padding:0.5em 0.75em;
    653     text-decoration:none;
     647    color: #333;
     648    font-weight: normal;
     649    padding: 0.5em 0.75em;
     650    text-decoration: none;
    654651}
    655652.home .sticky .page-link a {
    656     background: #D9E8F7;
     653    background: #d9e8f7;
    657654}
    658655.page-link a:active,
    659656.page-link a:hover {
    660     color: #FF4B33;
    661 }
    662 .page .edit-link {
     657    color: #ff4b33;
     658}
     659body.page .edit-link {
    663660    clear: both;
    664661    display: block;
    665662}
    666663#entry-author-info {
    667     background: #F2F7FC;
     664    background: #f2f7fc;
    668665    border-top: 4px solid #000;
    669     padding: 18px 20px;
    670     margin: 24px 0;
    671     overflow: hidden;
    672666    clear: both;
    673667    font-size: 14px;
    674668    line-height: 20px;
     669    margin: 24px 0;
     670    overflow: hidden;
     671    padding: 18px 20px;
    675672}
    676673#entry-author-info #author-avatar {
     
    678675    border: 1px solid #e7e7e7;
    679676    float: left;
     677    height: 60px;
    680678    margin: 0 -104px 0 0;
    681679    padding: 11px;
    682     height: 60px;
    683680}
    684681#entry-author-info #author-description {
     
    688685#entry-author-info h2 {
    689686    color: #000;
    690     font-weight: bold;
    691687    font-size: 100%;
     688    font-weight: bold;
    692689    margin-bottom: 0;
    693690}
    694691.entry-utility {
     692    clear: both;
    695693    color: #888;
    696694    font-size: 12px;
    697695    line-height: 18px;
    698     clear: both;
    699696}
    700697.entry-meta a,
     
    704701.entry-meta a:hover,
    705702.entry-utility a:hover {
    706     color: #FF4B33;
     703    color: #ff4b33;
    707704}
    708705#content .video-player {
     
    711708
    712709
    713 
    714 /* Asides
     710/* =Asides
    715711-------------------------------------------------------------- */
    716712
     
    719715    line-height: 20px;
    720716    margin-bottom: 10px;
    721     margin-top:0;
     717    margin-top: 0;
    722718}
    723719.home .hentry.category-asides {
     
    729725
    730726
    731 
    732 
    733 /* Gallery listing
    734 -------------------------------------------------------------- */
    735 
    736 .category-gallery {
    737     margin-bottom: 48px;
    738 }
    739 .category-gallery h2 {
    740     margin-top: 10px;
    741 }
    742 .category-gallery .entry-meta {
    743 }
     727/* =Gallery listing
     728-------------------------------------------------------------- */
     729
    744730.category-gallery .size-thumbnail img {
    745731    border: 10px solid #f1f1f1;
     
    748734.category-gallery .gallery-thumb {
    749735    float: left;
    750     margin-right:20px;
     736    margin-right: 20px;
    751737    margin-top: -4px;
    752738}
    753 .home #content .category-gallery .entry-content p {
    754     display: inline;
    755 }
    756739.home #content .category-gallery .entry-utility {
    757     padding-top:4px;
    758 }
    759 
    760 
    761 /* Attachment pages
    762 -------------------------------------------------------------- */
    763 
    764 .entry-content .attachment img {
    765     margin-bottom: 0;
    766 }
     740    padding-top: 4px;
     741}
     742
     743
     744/* =Attachment pages
     745-------------------------------------------------------------- */
     746
    767747.attachment .entry-content .entry-caption {
    768748    font-size: 140%;
     
    777757
    778758
    779 
    780 /* Images
     759/* =Images
    781760-------------------------------------------------------------- */
    782761
    783762#content img {
    784763    margin: 0;
     764    height: auto;
    785765    max-width: 640px;
     766    width: auto;
    786767}
    787768#content .attachment img {
     
    809790    margin-right: auto;
    810791}
    811 #content img.alignleft, 
    812 #content img.alignright, 
     792#content img.alignleft,
     793#content img.alignright,
    813794#content img.aligncenter {
    814795    margin-bottom: 12px;
     
    817798    background: #f1f1f1;
    818799    line-height: 18px;
    819     text-align: center;
    820800    margin-bottom: 20px;
    821801    padding: 4px;
     802    text-align: center;
    822803}
    823804#content .wp-caption img {
     
    825806}
    826807#content .wp-caption p.wp-caption-text {
     808    color: #888;
     809    font-size: 12px;
    827810    margin: 5px;
    828     color: #888;
    829     font-size: 12px;
    830811}
    831812#content .wp-smiley {
    832     margin:0;
     813    margin: 0;
    833814}
    834815#content .gallery {
    835     margin: auto;
     816    margin: 0 auto 18px;
    836817}
    837818#content .gallery .gallery-item {
     
    858839    display: none;
    859840}
    860 
     841#content .attachment img { /* single attachment images should be centered */
     842    display: block;
     843    margin: 0 auto;
     844}
    861845
    862846
     
    865849
    866850.navigation {
    867     font-size:  12px;
     851    color: #888;
     852    font-size: 12px;
    868853    line-height: 18px;
    869854    overflow: hidden;
    870     color: #888;
    871855}
    872856.navigation a:link,
     
    877861.navigation a:active,
    878862.navigation a:hover {
    879     color: #FF4B33;
     863    color: #ff4b33;
    880864}
    881865.nav-previous {
     
    885869.nav-next {
    886870    float: right;
     871    text-align: right;
    887872    width: 50%;
    888     text-align:right;
    889873}
    890874#nav-above {
     
    903887
    904888
    905 
    906889/* =Comments
    907890-------------------------------------------------------------- */
     
    915898h3#reply-title {
    916899    color: #000;
    917     font-weight: bold;
    918900    font-size: 20px;
     901    font-weight: bold;
    919902    margin-bottom: 0;
    920903}
     
    934917}
    935918.commentlist li:last-child {
    936     border-bottom:none;
    937     margin-bottom:0;
     919    border-bottom: none;
     920    margin-bottom: 0;
    938921}
    939922#comments .comment-body ul,
     
    976959.comment-meta a:active,
    977960.comment-meta a:hover {
    978     color: #FF4B33;
     961    color: #ff4b33;
    979962}
    980963.commentlist .even {
     
    992975.reply a:hover,
    993976a.comment-edit-link:hover {
    994     color: #FF4B33;
     977    color: #ff4b33;
    995978}
    996979.commentlist .children {
     
    1007990}
    1008991#comments .pingback {
     992    border-bottom: 1px solid #e7e7e7;
    1009993    margin-bottom: 18px;
    1010994    padding-bottom: 18px;
    1011     border-bottom: 1px solid #e7e7e7;
    1012995}
    1013996.commentlist li.comment+li.pingback {
     
    1016999#comments .pingback p {
    10171000    color: #888;
     1001    display: block;
    10181002    font-size: 12px;
    10191003    line-height: 18px;
    1020     display:block;
    10211004    margin: 0;
    10221005}
    10231006#comments .pingback .url {
     1007    font-size: 13px;
    10241008    font-style: italic;
    1025     font-size: 13px;
    1026 }
    1027 
    1028 
     1009}
    10291010
    10301011/* Comments form */
     
    10331014}
    10341015#respond {
     1016    border-top: 1px solid #e7e7e7;
    10351017    margin: 24px 0;
    1036     border-top: 1px solid #e7e7e7;
    10371018    overflow: hidden;
    10381019    position: relative;
     
    10611042#cancel-comment-reply-link {
    10621043    font-size: 12px;
     1044    font-weight: normal;
    10631045    line-height: 18px;
    1064     font-weight: normal;
    10651046}
    10661047#respond .required {
    1067     color:#FF4B33;
    1068     font-weight:bold;
     1048    color: #ff4b33;
     1049    font-weight: bold;
    10691050}
    10701051#respond label {
     
    10731054}
    10741055#respond input {
    1075     margin:0 0 9px;
    1076     width:98%;
     1056    margin: 0 0 9px;
     1057    width: 98%;
    10771058}
    10781059#respond textarea {
    1079     width:98%;
     1060    width: 98%;
    10801061}
    10811062#respond .form-allowed-tags {
     
    10911072}
    10921073#respond .form-submit input {
     1074    font-size: 14px;
    10931075    width: auto;
    1094     font-size: 14px;
    10951076}
    10961077
     
    11071088    margin-left: 1.3em;
    11081089}
    1109 .widget_search #s { /* This keeps the search inputs in line */
     1090.widget_search #s {/* This keeps the search inputs in line */
    11101091    width: 60%;
    11111092}
    11121093.widget_search label {
    1113     display:none;
     1094    display: none;
    11141095}
    11151096.widget-container {
     
    11351116}
    11361117#wp-calendar {
    1137     width:100%;
     1118    width: 100%;
    11381119}
    11391120#wp-calendar caption {
    1140     font-weight: bold;
    11411121    color: #222;
     1122    font-size: 14px;
     1123    font-weight: bold;
     1124    padding-bottom: 4px;
    11421125    text-align: left;
    1143     font-size:14px;
    1144     padding-bottom: 4px;
    11451126}
    11461127#wp-calendar thead {
    1147     font-size:11px;
     1128    font-size: 11px;
    11481129}
    11491130#wp-calendar thead th {
     
    11531134}
    11541135#wp-calendar tbody td {
     1136    background: #f5f5f5;
     1137    border: 1px solid #fff;
    11551138    padding: 3px 0 2px;
    1156     background: #f5f5f5;
    1157     border:1px solid #fff;
    11581139    text-align: center;
    11591140}
     
    11681149}
    11691150.widget_rss a.rsswidget:hover {
    1170     color: #FF4B33;
     1151    color: #ff4b33;
    11711152}
    11721153.widget_rss .widget-title img {
     1154    width: 11px;
    11731155    height: 11px;
    1174     width: 11px;
    11751156}
    11761157
     
    11951176
    11961177
    1197 
    11981178/* =Footer
    11991179-------------------------------------------------------------- */
     
    12051185    border-top: 4px solid #000;
    12061186    margin-top: -4px;
     1187    overflow: hidden;
    12071188    padding: 18px 0;
    1208     overflow: hidden;
    12091189}
    12101190#site-info {
     
    12161196}
    12171197#site-generator {
     1198    font-style: italic;
    12181199    position: relative;
    1219     font-style: italic;
    12201200}
    12211201#site-generator a {
     1202    background: url(images/wordpress.png) center left no-repeat;
    12221203    color: #666;
    1223     display:inline-block;
     1204    display: inline-block;
     1205    line-height: 16px;
     1206    padding-left: 20px;
    12241207    text-decoration: none;
    1225     background: url(images/wordpress.png) center left no-repeat;
    1226     padding-left: 20px;
    1227     line-height: 16px;
    12281208}
    12291209#site-generator a:hover {
     
    12311211}
    12321212img#wpstats {
    1233     display:block;
     1213    display: block;
    12341214    margin: 0 auto 10px;
    12351215}
    12361216
    12371217
    1238 
    1239 /* Mobile Safari ( iPad, iPhone and iPod Touch )
     1218/* =Mobile Safari ( iPad, iPhone and iPod Touch )
    12401219-------------------------------------------------------------- */
    12411220
     
    12581237
    12591238
    1260 
    12611239/* =Print Style
    12621240-------------------------------------------------------------- */
     
    12641242@media print {
    12651243    body {
    1266         background:none !important;
     1244        background: none !important;
    12671245    }
    12681246    #wrapper {
    1269         float: none !important;
    12701247        clear: both !important;
    12711248        display: block !important;
     1249        float: none !important;
    12721250        position: relative !important;
    12731251    }
     
    12821260    #site-description {
    12831261        float: none;
     1262        line-height: 1.4em;
    12841263        margin: 0;
    1285         padding:0;
    1286         line-height: 1.4em;
     1264        padding: 0;
    12871265    }
    12881266    #site-title {
     
    13091287    #header,
    13101288    #footer {
     1289        margin: 0;
    13111290        width: 100%;
    1312         margin: 0;
    13131291    }
    13141292    #content,
    13151293    .one-column #content {
     1294        margin: 24pt 0 0;
    13161295        width: 100%;
    1317         margin: 24pt 0 0;
    13181296    }
    13191297    .wp-caption p {
     
    13291307    }
    13301308    img#wpstats {
    1331         display:none
     1309        display: none;
    13321310    }
    13331311    #site-generator a {
     1312        margin: 0;
    13341313        padding: 0;
    1335     margin: 0;
    13361314    }
    13371315    #entry-author-info {
     
    13391317    }
    13401318    #main {
    1341         display:inline;
     1319        display: inline;
    13421320    }
    13431321    .home .sticky {
Note: See TracChangeset for help on using the changeset viewer.