Making WordPress.org

Ticket #204: sa-makehome.diff

File sa-makehome.diff, 2.3 KB (added by shaunandrews, 11 years ago)
  • style.css

     
    159159
    160160/* section.get-involved */
    161161
     162section.get-involved {
     163        padding: 20px 0 60px 0;
     164}
     165
    162166section.get-involved h2 {
    163         font-family: "Open Sans";
     167        font-family: "Open Sans", sans-serif;
    164168        font-weight: 600;
    165169        padding-bottom: 0.5em;
    166170}
     
    173177        margin: 10px;
    174178        padding: 20px;
    175179        width: 420px;
     180        position: relative;
    176181        width: calc( 100% / 2 - 60px );
    177         font-size: 11pt;
     182        min-height: 170px;
     183        font-size: 1.5em;
    178184        background: #fff;
    179185        float: left;
    180186        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
     
    223229}
    224230
    225231section.get-involved article p {
     232        font-size: 0.9em;
     233        line-height: 1.6;
     234}
     235
     236section.get-involved article a {
     237        display: block;
     238        border: 1px solid rgba(0,0,0,0.3);
     239        padding: 5px 10px;
    226240        font-size: 1em;
    227         line-height: 1.3;
     241        float: left;
     242        position: absolute;
     243        bottom: 15px;
     244        left: 15px;
     245        border-radius: 3px;
     246        color: #555;
     247        background: #F7F7F7;
     248        -webkit-box-shadow: inset 0 1px 0 #FFF, 0 1px 0 rgba(0, 0, 0, 0.08);
     249        box-shadow: inset 0 1px 0 #FFF, 0 1px 0 rgba(0, 0, 0, 0.04);
     250        text-shadow: 0 1px 0 #fff;
    228251}
     252section.get-involved article a:hover {
     253        background: #FAFAFA;
     254        border-color: #999;
     255        color: #222;
     256}
    229257
    230258section.get-involved article small {
    231259        display: block;
    232         font-size: 0.8em;
    233         font-style: italic;
    234         opacity: 0.5;
    235         padding-top: 0.5em;
     260        color: #999;
     261        position: absolute;
     262        bottom: 15px;
     263        right: 20px;
     264        text-align: right;
    236265}
    237266
    238267section.get-involved article small p {
    239         line-height: 1.5;
     268        line-height: 1.4;
    240269}
    241270
    242271@media ( max-width: 960px ) {
  • front-page.php

     
    1515                                <?php the_content(); ?>
    1616                                <?php  if ( '1' == get_post_meta( get_the_ID(), 'weekly_meeting', true ) ) : ?>
    1717                                        <small>
    18                                                 <p><?php printf( __( 'Weekly IRC chats: %s', 'make-wporg' ), get_post_meta( get_the_ID(), 'weekly_meeting_when', true ) ); ?></p>
     18                                                <p><?php printf( __( 'Meets %s', 'make-wporg' ), get_post_meta( get_the_ID(), 'weekly_meeting_when', true ) ); ?></p>
    1919                                                <p><?php echo get_post_meta( get_the_ID(), 'weekly_meeting_where', true ); ?></p>
    2020                                        </small>
    2121                                <?php endif; /**/ ?>