mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
32 lines
No EOL
516 B
SCSS
32 lines
No EOL
516 B
SCSS
.button {
|
|
font-family: $heading-font;
|
|
text-transform: uppercase;
|
|
border-radius: 0;
|
|
box-shadow: 3px 3px 0 0 $off-white;
|
|
|
|
&.primary {
|
|
color: $inspec-grey;
|
|
background: $white;
|
|
border: 1px solid $inspec-blue;
|
|
}
|
|
|
|
&.transparent {
|
|
color: $inspec-grey;
|
|
background: transparent;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
box-shadow: none;
|
|
|
|
&:hover {
|
|
color: darken($inspec-grey, 20%);
|
|
}
|
|
}
|
|
|
|
&.block {
|
|
display: block;
|
|
}
|
|
|
|
& + .button {
|
|
margin-left: 15px;
|
|
}
|
|
} |