mirror of
https://github.com/inspec/inspec
synced 2024-12-19 09:33:20 +00:00
d8590b6d9c
To do: Media Queries Highlight state when on page
66 lines
1.4 KiB
SCSS
66 lines
1.4 KiB
SCSS
// Normal Links
|
|
|
|
a {
|
|
@extend %transition;
|
|
color : $color_link;
|
|
font-family : $heading-font;
|
|
}
|
|
|
|
// All CTA's
|
|
|
|
.btn {
|
|
@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(
|
|
to right,
|
|
$color_purple 0,
|
|
$color_link 100%
|
|
),
|
|
linear-gradient(
|
|
to right,
|
|
$color_purple 0,
|
|
$color_link 100%
|
|
);
|
|
background-repeat : no-repeat;
|
|
background-position : 0 0,
|
|
0 100%;
|
|
background-size : 100% 1px;
|
|
|
|
&:hover {
|
|
color : $color_white;
|
|
border-color : $color_purple;
|
|
background-image : initial;
|
|
background-color : $color_purple;
|
|
}
|
|
|
|
&.btn-inverse {
|
|
color : $color_purple;
|
|
|
|
&:hover {
|
|
color : $color_white;
|
|
background-color : $color_purple;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Form Buttons
|
|
|
|
button {
|
|
@extend %transition;
|
|
padding : 0.6rem 1.25rem;
|
|
color : $color_white;
|
|
border : 2px $color-purple;
|
|
border-radius : 4px;
|
|
background : $color_purple;
|
|
}
|
|
|
|
button:hover {
|
|
opacity : 0.8;
|
|
}
|