diff --git wp-content/themes/twentyfourteen/header.php wp-content/themes/twentyfourteen/header.php
index d6c8fc4..3cd5664 100644
|
|
|
|
| 49 | 49 | </div> |
| 50 | 50 | |
| 51 | 51 | <nav id="primary-navigation" class="site-navigation primary-navigation" role="navigation"> |
| 52 | | <h1 class="menu-toggle"><?php _e( 'Primary Menu', 'twentyfourteen' ); ?></h1> |
| | 52 | <button class="menu-toggle"><?php _e( 'Primary Menu', 'twentyfourteen' ); ?></button> |
| 53 | 53 | <a class="screen-reader-text skip-link" href="#content"><?php _e( 'Skip to content', 'twentyfourteen' ); ?></a> |
| 54 | 54 | <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?> |
| 55 | 55 | </nav> |
diff --git wp-content/themes/twentyfourteen/style.css wp-content/themes/twentyfourteen/style.css
index 74aafa0..8369dfb 100644
|
|
|
span + .edit-link:before, |
| 985 | 985 | } |
| 986 | 986 | |
| 987 | 987 | .menu-toggle { |
| | 988 | background-color: #000; |
| | 989 | border-radius: 0; |
| 988 | 990 | cursor: pointer; |
| 989 | 991 | font-size: 0; |
| 990 | 992 | height: 48px; |
| 991 | 993 | margin: 0; |
| 992 | 994 | overflow: hidden; |
| | 995 | padding: 0; |
| 993 | 996 | position: absolute; |
| 994 | 997 | top: 0; |
| 995 | 998 | right: 0; |
| … |
… |
span + .edit-link:before, |
| 1000 | 1003 | .menu-toggle:before { |
| 1001 | 1004 | color: #fff; |
| 1002 | 1005 | content: "\f419"; |
| | 1006 | display: inline; |
| 1003 | 1007 | margin-top: 16px; |
| 1004 | 1008 | } |
| 1005 | 1009 | |
| | 1010 | .menu-toggle:active, |
| | 1011 | .menu-toggle:focus, |
| | 1012 | .menu-toggle:hover { |
| | 1013 | background-color: #000; |
| | 1014 | } |
| | 1015 | |
| 1006 | 1016 | |
| 1007 | 1017 | /** |
| 1008 | 1018 | * 6.0 Content |