Add CTA bar under top bar
This commit is contained in:
parent
59258637ba
commit
03e5ec53df
|
@ -18,4 +18,8 @@ Controller = Ember.Controller.extend
|
|||
return false
|
||||
}
|
||||
|
||||
showCta: (->
|
||||
!@get('auth.signedIn') && !@get('config.pro')
|
||||
).property('auth.signedIn')
|
||||
|
||||
`export default Controller`
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
.top.landing-page .topbar,
|
||||
.wrapper.centered .topbar
|
||||
.wrapper.centered .topbar,
|
||||
.wrapper.centered #top .cta,
|
||||
.top.landing-page .cta p
|
||||
margin: 0 auto
|
||||
max-width: 1024px
|
||||
|
||||
|
|
|
@ -1,5 +1,27 @@
|
|||
$top-height: 55px
|
||||
|
||||
#top .cta
|
||||
border-bottom: 2px solid #E4E4E4
|
||||
border-top: 2px solid #E4E4E4
|
||||
line-height: 2.7em
|
||||
font-size: 16px
|
||||
color: #71AE76
|
||||
text-align: right
|
||||
padding-right: 20px
|
||||
|
||||
p
|
||||
position: relative
|
||||
|
||||
.arrow
|
||||
display: block
|
||||
position: absolute
|
||||
top: -11px
|
||||
right: 66px
|
||||
background-image: inline-image('cta-arrow.svg')
|
||||
background-repeat: no-repeat
|
||||
width: 20px
|
||||
height: 12px
|
||||
|
||||
.logo
|
||||
position: relative
|
||||
margin: 0 1.5rem 0 1.3rem
|
||||
|
@ -39,7 +61,7 @@ $top-height: 55px
|
|||
|
||||
.topbar
|
||||
font-size: $font-size-m
|
||||
background-color: #eff0ec
|
||||
background-color: #eff0ec
|
||||
color: $grey1
|
||||
|
||||
a
|
||||
|
@ -84,7 +106,7 @@ $top-height: 55px
|
|||
height: $top-height
|
||||
> li
|
||||
display: inline-block
|
||||
margin-right: 1rem
|
||||
margin-right: 1rem
|
||||
a
|
||||
height: $top-height
|
||||
line-height: $top-height + 2px
|
||||
|
|
|
@ -70,4 +70,13 @@
|
|||
{{/if}}
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{#if showCta}}
|
||||
<div class="cta">
|
||||
<p>
|
||||
<span class="arrow"></span>
|
||||
Help make Open Source a better place and start building better software today!
|
||||
</p>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
|
7
public/images/cta-arrow.svg
Normal file
7
public/images/cta-arrow.svg
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20" height="12" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(10, 1), rotate(45)" fill="white">
|
||||
<rect x="0" y="0" width="20" height="20"
|
||||
style="fill: white; stroke-width: 2; stroke: #E4E4E4;" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 320 B |
Loading…
Reference in New Issue
Block a user