Changeset 7016
- Timestamp:
- 04/03/2018 11:21:42 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wp15.wordpress.net/public_html/content/themes/twentyseventeen-wp15/style.css
r7014 r7016 59 59 * Header 60 60 */ 61 .site-header { 62 display: grid; 63 grid-template-rows: auto 70px; 64 grid-template-columns: auto 300px; 61 @supports( display: grid ) { 62 .site-header { 63 display: grid; 64 grid-template-rows: auto 70px; 65 grid-template-columns: auto 300px; 66 } 65 67 } 66 68 67 69 .custom-header { 68 grid-column: 1 / span 2; 69 grid-row: 1; 70 height: 400px; 70 71 margin-bottom: 0 !important; 71 72 background-color: #00A0D2; … … 75 76 } 76 77 78 @supports( display: grid ) { 79 .custom-header { 80 grid-column: 1 / span 2; 81 grid-row: 1; 82 } 83 } 84 77 85 .home .custom-header { 78 86 height: calc( 100vh - 105px ); … … 85 93 86 94 .site-branding { 87 display: flex; 88 justify-content: center; 89 flex-direction: column; 95 text-align: center; 90 96 height: 100%; 91 97 min-height: 300px; 98 } 99 100 @supports( display: flex ) { 101 .site-branding { 102 display: flex; 103 justify-content: center; 104 flex-direction: column; 105 } 92 106 } 93 107 … … 106 120 .custom-logo-link img { 107 121 max-width: 300px; 108 max-height: none;122 max-height: 218px; 109 123 } 110 124
Note: See TracChangeset
for help on using the changeset viewer.