Merge branch 'landing-page' of github.com:travis-ci/travis-web into landing-page

This commit is contained in:
Justine Arreche 2015-04-08 09:30:30 +02:00
commit de0dd340cf
6 changed files with 31 additions and 26 deletions

View File

@ -47,11 +47,13 @@
.wrapper
overflow: hidden
.wrapper.non-centered
#main,
#left
margin-bottom: -99999px
padding-bottom: 100034px
@media #{$large-up}
#left, #right, .wrapper-main

View File

@ -2,6 +2,8 @@
* Footer on the dashboard
*/
$footer-height: 204px
a
color : $color-link
text-decoration : none
@ -25,11 +27,11 @@ footer
height: auto
@media (min-width: 640px)
.wrapper
padding-bottom: 244px //footer height plus some extra padding
padding-bottom: $footer-height + 50
footer
margin-top: -204px
min-height: 204px
margin-top: - $footer-height
min-height: $footer-height
footer h3
font-size : 15px
@ -87,5 +89,3 @@ footer a:active
.status-circle.major
background: #e74c3c
.wrapper:not(.centered) ~ footer
display: none

View File

@ -25,7 +25,7 @@
content: ""
position: absolute
left: 0
bottom: -4px
bottom: -0.25em
width: 100%
height: 2px
background-color: $teal2

View File

@ -1,14 +1,15 @@
<div class="centered">
<div class="wrapper wrapper-dashboard">
<header id="top" class="top">
<div class="wrapper wrapper-dashboard">
<header id="top" class="top">
<div class="centered">
{{render "top"}}
</header>
</div>
</header>
<div class="centered">
{{yield}}
</div>
<footer>
{{render "footer"}}
</footer>
</div>
<footer>
{{render "footer"}}
</footer>

View File

@ -17,6 +17,6 @@
</aside>
</div>
<footer>
<footer {{bind-attr class="auth.signedIn:hidden"}}>
{{render "footer"}}
</footer>

View File

@ -1,15 +1,17 @@
<header id="top" class="topbar">
<div class="wrapper">
<header id="top" class="topbar">
<div class="centered">
{{render "top"}}
</div>
</header>
<div class="centered">
{{render "top"}}
</div>
</header>
{{render "flash"}}
<div id="main" class="main" role="main">
{{yield}}
<div class="wrapper centered">
{{render "flash"}}
<div id="main" class="main" role="main">
{{yield}}
{{outlet "left"}}
{{outlet "left"}}
</div>
</div>
</div>