refactor new link styles to mixin

This commit is contained in:
Lisa P 2015-10-28 12:56:19 +01:00
parent cd82f30f8c
commit 46836812f4
2 changed files with 13 additions and 10 deletions

View File

@ -1,13 +1,15 @@
.landing-pro
p a
text-decoration: none
border-bottom: 1px solid #bfc0c1
padding-bottom: 0.1em
&:hover,
&:active
color: #303030
border-color: transparent
@mixin linkStyle
a
text-decoration: none
border-bottom: 1px solid #bfc0c1
padding-bottom: 0.1em
&:hover,
&:active
color: #303030
text-decoration: none
border-color: transparent
.wrapper
width: 100%
@ -55,6 +57,7 @@
line-height: 1.55
.text-small
@include linkStyle
margin: 0 0 2.5em
.landing-button
@ -186,7 +189,7 @@
margin-top: 5em
@media #{$medium-up}
flex-flow: row wrap
margin-top: 0
margin-top: 1em
li
flex: 0 0 15em

View File

@ -2,7 +2,7 @@
<section class="section--hero section--grey">
<div class="inner">
<div class="section-text">
<h1 class="h1">Builds apps <br class="br-small"> with confidence</h1>
<h1 class="h1">Build apps <br class="br-small"> with confidence</h1>
<p class="text-big">Focus on writing code. Let Travis CI take care<br class="br-small"> of running your tests and deploying your apps.</p>
<a href="https://travis-ci.com/signin" class="hero-button" title="Start your free trial">Start your free trial</a>
</div>