mirror of
https://github.com/romancm/gamebrary
synced 2024-11-24 20:23:06 +00:00
Added success button style
This commit is contained in:
parent
987095552d
commit
9ee504516c
1 changed files with 19 additions and 0 deletions
|
@ -80,6 +80,14 @@ button, a.link {
|
||||||
&:active { background-color: darken($color-blue, 10%); }
|
&:active { background-color: darken($color-blue, 10%); }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.success {
|
||||||
|
background: $color-green;
|
||||||
|
color: $color-white;
|
||||||
|
|
||||||
|
&:hover { background-color: lighten($color-green, 10%); }
|
||||||
|
&:active { background-color: darken($color-green, 10%); }
|
||||||
|
}
|
||||||
|
|
||||||
&.accent {
|
&.accent {
|
||||||
background: $color-light-gray;
|
background: $color-light-gray;
|
||||||
color: $color-dark-gray;
|
color: $color-dark-gray;
|
||||||
|
@ -124,6 +132,17 @@ button, a.link {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.success {
|
||||||
|
color: $color-green;
|
||||||
|
border: 1px solid $color-green;
|
||||||
|
background: transparent;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: $color-green;
|
||||||
|
color: $color-white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&.accent {
|
&.accent {
|
||||||
color: $color-gray;
|
color: $color-gray;
|
||||||
border: 1px solid $color-gray;
|
border: 1px solid $color-gray;
|
||||||
|
|
Loading…
Reference in a new issue