css
6 years ago
attributes.js
6 years ago
block.js
6 years ago
edit.js
6 years ago
editor.scss
6 years ago
save.js
6 years ago
style.scss
6 years ago
style.scss
23 lines
| 1 | /** |
| 2 | * Frontend Styles |
| 3 | */ |
| 4 | @import "../../common"; |
| 5 | |
| 6 | .gb-button { |
| 7 | display: inline-block; |
| 8 | padding: .75em 1em; |
| 9 | line-height: 1em; |
| 10 | color: $white; |
| 11 | text-decoration: none !important; |
| 12 | background-color: $dark-gray-700; |
| 13 | border: none; |
| 14 | transition: .2s background-color ease-in-out, .2s color ease-in-out, .2s border-color ease-in-out, .2s opacity ease-in-out, .2s box-shadow ease-in-out; |
| 15 | |
| 16 | &:hover, |
| 17 | &:focus, |
| 18 | &:active { |
| 19 | color: $white; |
| 20 | background-color: $dark-gray-700; |
| 21 | } |
| 22 | } |
| 23 |