2017-01-09 05:29:00 +00:00
|
|
|
// Normal Links
|
2017-01-07 04:53:01 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
a {
|
2017-01-09 05:29:00 +00:00
|
|
|
@extend %transition;
|
|
|
|
color : $color_link;
|
|
|
|
font-family : $heading-font;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2016-09-19 22:06:36 +00:00
|
|
|
|
2017-01-09 05:29:00 +00:00
|
|
|
// All CTA's
|
2017-01-07 04:53:01 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
.btn {
|
2017-01-09 05:29:00 +00:00
|
|
|
@extend %transition;
|
|
|
|
box-sizing : border-box;
|
|
|
|
padding : 0.6rem 1.25rem;
|
|
|
|
color : $color_purple;
|
|
|
|
border : 1px solid transparent;
|
|
|
|
border-right : 1px solid $color_link;
|
|
|
|
border-left : 1px solid $color_purple;
|
|
|
|
border-radius : 4px;
|
|
|
|
background : transparent;
|
|
|
|
background-image : linear-gradient(
|
2017-01-20 09:15:38 +00:00
|
|
|
to right,
|
|
|
|
$color_purple 0,
|
|
|
|
$color_link 100%
|
2017-01-09 05:29:00 +00:00
|
|
|
),
|
|
|
|
linear-gradient(
|
2017-01-20 09:15:38 +00:00
|
|
|
to right,
|
|
|
|
$color_purple 0,
|
|
|
|
$color_link 100%
|
2017-01-09 05:29:00 +00:00
|
|
|
);
|
|
|
|
background-repeat : no-repeat;
|
|
|
|
background-position : 0 0,
|
|
|
|
0 100%;
|
|
|
|
background-size : 100% 1px;
|
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
&:hover {
|
2017-01-09 05:29:00 +00:00
|
|
|
color : $color_white;
|
|
|
|
border-color : $color_purple;
|
|
|
|
background-image : initial;
|
|
|
|
background-color : $color_purple;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2017-01-09 05:29:00 +00:00
|
|
|
|
2017-01-06 08:06:40 +00:00
|
|
|
&.btn-inverse {
|
2017-01-09 05:29:00 +00:00
|
|
|
color : $color_purple;
|
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
&:hover {
|
2017-01-09 05:29:00 +00:00
|
|
|
color : $color_white;
|
|
|
|
background-color : $color_purple;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
|
|
|
}
|
2017-01-13 23:07:38 +00:00
|
|
|
//mobile
|
|
|
|
@media only screen and (max-width: 40.063em) {
|
|
|
|
float: initial;
|
|
|
|
padding : 0.8rem 1.6rem;
|
|
|
|
margin : 0 auto;
|
|
|
|
text-align : center;
|
|
|
|
}
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2017-01-07 04:53:01 +00:00
|
|
|
|
2017-01-09 05:29:00 +00:00
|
|
|
// Form Buttons
|
2017-01-07 04:53:01 +00:00
|
|
|
|
|
|
|
button {
|
2017-01-09 05:29:00 +00:00
|
|
|
@extend %transition;
|
|
|
|
padding : 0.6rem 1.25rem;
|
|
|
|
color : $color_white;
|
|
|
|
border : 2px $color-purple;
|
|
|
|
border-radius : 4px;
|
|
|
|
background : $color_purple;
|
2017-01-07 04:53:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
button:hover {
|
2017-01-09 05:29:00 +00:00
|
|
|
opacity : 0.8;
|
2017-01-07 04:53:01 +00:00
|
|
|
}
|