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