Ned Zimmerman
7 years ago
16 changed files with 272 additions and 427 deletions
@ -1,214 +1,42 @@
|
||||
.banner { |
||||
.home .header { |
||||
background-position: bottom; |
||||
background-size: cover; |
||||
height: 560px; |
||||
|
||||
.container { |
||||
display: flex; |
||||
flex-direction: column; |
||||
justify-content: space-between; |
||||
align-items: center; |
||||
height: 560px; |
||||
width: 100%; |
||||
&__title { |
||||
font-family: $font-family-sans-serif; |
||||
font-size: 1.875rem; |
||||
margin-top: 3rem; |
||||
margin-bottom: 0; |
||||
text-align: center; |
||||
max-width: 100%; |
||||
max-width: 1440px; |
||||
} |
||||
|
||||
.toggle { |
||||
display: block; |
||||
position: absolute; |
||||
top: 30px; |
||||
right: 17px; |
||||
width: 25px; |
||||
height: 20px; |
||||
z-index: 99; |
||||
text-indent: -9999em; |
||||
|
||||
&__icon { |
||||
display: block; |
||||
position: absolute; |
||||
top: 7px; |
||||
width: 25px; |
||||
height: 3px; |
||||
background: var(--primary, $brand-primary); |
||||
|
||||
&::before, |
||||
&::after { |
||||
width: 25px; |
||||
height: 3px; |
||||
content: ''; |
||||
background: var(--primary, $brand-primary); |
||||
} |
||||
|
||||
&::before { |
||||
position: absolute; |
||||
top: -7px; |
||||
right: 0; |
||||
} |
||||
|
||||
&::after { |
||||
position: absolute; |
||||
top: 7px; |
||||
right: 0; |
||||
} |
||||
} |
||||
|
||||
&--active { |
||||
.toggle__icon { |
||||
background: var(--primary-fg, $white); |
||||
|
||||
&::before, |
||||
&::after { |
||||
background: var(--primary-fg, $white); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
&__brand { |
||||
display: block; |
||||
align-self: flex-start; |
||||
width: 6.5625rem; |
||||
height: auto; |
||||
margin: 30px 0 0 17px; |
||||
|
||||
svg, |
||||
img { |
||||
width: auto; |
||||
max-width: 100%; |
||||
height: auto; |
||||
} |
||||
&__description { |
||||
font-family: $font-family-sans-serif; |
||||
font-size: 1.125rem; |
||||
margin-bottom: 0; |
||||
text-align: center; |
||||
max-width: 100%; |
||||
} |
||||
|
||||
&__navigation { |
||||
display: flex; |
||||
position: absolute; |
||||
flex-direction: column; |
||||
justify-content: center; |
||||
align-items: flex-start; |
||||
top: 0; |
||||
width: 100%; |
||||
height: 560px; |
||||
margin: 0 0 0 -100%; |
||||
padding: 0 17px; |
||||
background: transparent; |
||||
|
||||
a { |
||||
display: none; |
||||
font-family: $font-family-sans-serif; |
||||
font-size: rem(24); |
||||
line-height: (80/24); |
||||
color: var(--primary-fg, $white); |
||||
letter-spacing: 0; |
||||
} |
||||
|
||||
.sep { |
||||
display: none; |
||||
} |
||||
|
||||
&--visible { |
||||
margin: 0; |
||||
padding: 0 52px; |
||||
z-index: 1; |
||||
background: var(--primary, $brand-primary); |
||||
|
||||
a { |
||||
display: block; |
||||
width: 100%; |
||||
border-bottom: solid 1px var(--primary-fg, $white); |
||||
@media #{$breakpoint-large} { |
||||
height: 880px; |
||||
|
||||
&:last-child { |
||||
border-bottom: 0; |
||||
} |
||||
} |
||||
&__title { |
||||
font-size: 4.5rem; |
||||
} |
||||
} |
||||
|
||||
&__branding { |
||||
display: flex; |
||||
flex-direction: column; |
||||
justify-content: flex-start; |
||||
align-items: center; |
||||
height: 364px; |
||||
text-align: center; |
||||
|
||||
p { |
||||
font-family: $font-family-sans-serif; |
||||
&__description { |
||||
font-size: 1.875rem; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.page:not(.home) .banner__branding { |
||||
display: none; |
||||
.page .header { |
||||
// TODO |
||||
} |
||||
|
||||
@media #{$breakpoint-large} { |
||||
.banner { |
||||
.container { |
||||
height: 880px; |
||||
margin: 0 auto; |
||||
} |
||||
|
||||
.toggle { |
||||
display: none; |
||||
} |
||||
|
||||
&__brand { |
||||
align-self: center; |
||||
width: 16.5625rem; |
||||
height: auto; |
||||
margin-top: 40px; |
||||
} |
||||
|
||||
&__navigation { |
||||
top: 40px; |
||||
height: 40px; |
||||
max-width: 1440px; |
||||
margin: 0 auto; |
||||
flex-direction: row; |
||||
justify-content: flex-start; |
||||
align-items: center; |
||||
|
||||
a { |
||||
display: inline-block; |
||||
font-size: rem(18); |
||||
color: var(--header-text, $black); |
||||
line-height: normal; |
||||
|
||||
&:hover, |
||||
&:focus { |
||||
color: var(--primary, $brand-primary); |
||||
} |
||||
} |
||||
|
||||
&--catalog { |
||||
margin-right: auto; |
||||
} |
||||
|
||||
&--contact { |
||||
margin: 0 1em 0 auto; |
||||
} |
||||
|
||||
&--sep { |
||||
display: inline-block; |
||||
margin: 0 0.5em; |
||||
} |
||||
} |
||||
|
||||
&__branding { |
||||
height: 576px; |
||||
|
||||
p { |
||||
font-size: rem(30); |
||||
letter-spacing: 0.75px; |
||||
line-height: (40/30); |
||||
} |
||||
} |
||||
|
||||
h1 { |
||||
margin-bottom: rem(32); |
||||
font-size: rem(72); |
||||
line-height: (40/72); |
||||
letter-spacing: rem(1.8); |
||||
} |
||||
} |
||||
.page.catalog .header { |
||||
// TODO |
||||
} |
||||
|
@ -1,5 +1,5 @@
|
||||
{ |
||||
"/scripts/aldine.js": "/scripts/aldine.js?id=f0380c51980a33b2d33c", |
||||
"/styles/aldine.css": "/styles/aldine.css?id=405ee7591545ea8b1977", |
||||
"/scripts/aldine.js": "/scripts/aldine.js?id=af09fa97e83d238ec459", |
||||
"/styles/aldine.css": "/styles/aldine.css?id=28b42418cb02cfbe2c49", |
||||
"/scripts/customizer.js": "/scripts/customizer.js?id=f1f1f4225cba4c1b35f2" |
||||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,7 @@
|
||||
<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
|
||||
<label for="s"> |
||||
<?php _ex( 'Search Catalog', 'label', 'pressbooks-aldine' ); ?> |
||||
<input id="s" type="search" class="search-field" value="<?php echo get_search_query(); ?>" name="s" />
|
||||
</label> |
||||
<input type="submit" class="search-submit" value="<?php _ex( 'Search', 'submit button', 'pressbooks-aldine' ); ?>" />
|
||||
</form> |
Loading…
Reference in new issue