Changeset 5803
- Timestamp:
- 08/15/2017 07:10:26 PM (8 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/gutenberg
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/gutenberg/footer.php
r5802 r5803 14 14 </div><!-- #content --> 15 15 16 <footer id="colophon" class="site-footer"> 17 <div class="site-info"> 18 <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'gutenbergtheme' ) ); ?>"><?php 19 /* translators: %s: CMS name, i.e. WordPress. */ 20 printf( esc_html__( 'Proudly powered by %s', 'gutenbergtheme' ), 'WordPress' ); 21 ?></a> 22 <span class="sep"> | </span> 23 <?php 24 /* translators: 1: Theme name, 2: Theme author. */ 25 printf( esc_html__( 'Theme: %1$s by %2$s.', 'gutenbergtheme' ), 'gutenbergtheme', '<a href="https://automattic.com/">Underscores.me</a>' ); 26 ?> 27 </div><!-- .site-info --> 28 </footer><!-- #colophon --> 29 </div><!-- #page --> 30 31 <?php wp_footer(); ?> 32 33 </body> 34 </html> 16 <?php 17 require WPORGPATH . 'footer.php'; -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/gutenberg/header.php
r5802 r5803 10 10 */ 11 11 12 require WPORGPATH . 'header.php'; 12 13 ?> 13 <!doctype html>14 <html <?php language_attributes(); ?>>15 <head>16 <meta charset="<?php bloginfo( 'charset' ); ?>">17 <meta name="viewport" content="width=device-width, initial-scale=1">18 <link rel="profile" href="http://gmpg.org/xfn/11">19 14 20 <?php wp_head(); ?>21 </head>22 23 <body <?php body_class(); ?>>24 15 <div id="page" class="site"> 25 16 <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'gutenbergtheme' ); ?></a> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/gutenberg/style.css
r5802 r5803 1 1 /* 2 Theme Name: gutenbergtheme3 Theme URI: 4 Author: 5 Author URI: 6 Description: Description2 Theme Name: Gutenberg 3 Theme URI: https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/themes/pub/gutenberg 4 Author: wordpressdotorg 5 Author URI: https://wordpress.org 6 Description: Showcasing themeing with Gutenberg. 7 7 Version: 1.0.0 8 8 License: GNU General Public License v2 or later … … 41 41 ## Captions 42 42 ## Galleries 43 # WP.org Header 43 44 --------------------------------------------------------------*/ 44 45 /*-------------------------------------------------------------- … … 924 925 display: block; 925 926 } 927 928 /*-------------------------------------------------------------- 929 ## WP.org Header 930 --------------------------------------------------------------*/ 931 #wporg-header h1 { 932 margin: auto 933 } 934 935 #wporg-header h2.rosetta { 936 clear: none 937 } 938 939 @media screen and (min-width: 769px) { 940 #wporg-header ul li.current-menu-item:after, #wporg-header ul li.current_page_parent:after, #wporg-header ul li a.current ~ .uparrow { 941 border-bottom-color: #0073aa 942 } 943 } 944 945 #wporg-header form input { 946 -webkit-box-sizing: content-box; 947 -moz-box-sizing: content-box; 948 box-sizing: content-box; 949 padding: 3px 950 } 951 952 #wporg-header .button { 953 -webkit-box-shadow: none; 954 box-shadow: none 955 } 956 957 #wporg-header .download-button { 958 background-color: #21759b; 959 background-image: -webkit-gradient(linear, left top, left bottom, from(#2a95c5), to(#21759b)); 960 background-image: -webkit-linear-gradient(top, #2a95c5, #21759b); 961 background-image: linear-gradient(180deg, #2a95c5, #21759b); 962 border-bottom-color: #1e6a8d; 963 border-color: #21759b; 964 -webkit-box-shadow: inset 0 1px 0 rgba(120, 200, 230, .5); 965 box-shadow: inset 0 1px 0 rgba(120, 200, 230, .5) 966 } 967 968 #wporg-header .download-button:focus, #wporg-header .download-button:hover { 969 background-color: #278ab7; 970 background-image: -webkit-gradient(linear, left top, left bottom, from(#2e9fd2), to(#21759b)); 971 background-image: -webkit-linear-gradient(top, #2e9fd2, #21759b); 972 background-image: linear-gradient(180deg, #2e9fd2, #21759b); 973 border-color: #1b607f; 974 -webkit-box-shadow: inset 0 1px 0 rgba(120, 200, 230, .6); 975 box-shadow: inset 0 1px 0 rgba(120, 200, 230, .6); 976 color: #fff; 977 text-shadow: 0 -1px 0 rgba(0, 0, 0, .3) 978 } 979 980 #wporg-header .download-button:active { 981 background: #1b607f; 982 background-image: -webkit-gradient(linear, left top, left bottom, from(#21759b), to(#278ab7)); 983 background-image: -webkit-linear-gradient(top, #21759b, #278ab7); 984 background-image: linear-gradient(180deg, #21759b, #278ab7); 985 border-color: #124560 #2382ae #2382ae; 986 -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, .1); 987 box-shadow: inset 0 1px 0 rgba(0, 0, 0, .1); 988 color: hsla(0, 0%, 100%, .95); 989 text-shadow: 0 1px 0 rgba(0, 0, 0, .1); 990 -webkit-transform: none; 991 -ms-transform: none; 992 transform: none 993 } 994 995 #wporg-header a:active, #wporg-header a:focus, #wporg-header a:hover { 996 text-decoration: none 997 }
Note: See TracChangeset
for help on using the changeset viewer.