diff options
author | Valentin Popov <info@valentineus.link> | 2018-05-15 14:28:17 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-05-15 14:28:17 +0300 |
commit | 3647ff37c565c77ebd1e68fce1552201c35b5cb3 (patch) | |
tree | af295c51a91eb8a491a951d00459138daaabfeda /_scss/components/theme/_buttons.scss | |
parent | bdbcbedc357627a583744b88ba35aeeddc6e69d0 (diff) | |
download | popov.link-3647ff37c565c77ebd1e68fce1552201c35b5cb3.tar.xz popov.link-3647ff37c565c77ebd1e68fce1552201c35b5cb3.zip |
Complete redesign of site styles
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_scss/components/theme/_buttons.scss')
-rw-r--r-- | _scss/components/theme/_buttons.scss | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/_scss/components/theme/_buttons.scss b/_scss/components/theme/_buttons.scss deleted file mode 100644 index 3ddc463..0000000 --- a/_scss/components/theme/_buttons.scss +++ /dev/null @@ -1,84 +0,0 @@ -@import 'utilities/borderradius'; - -.button, -button, -input[type='button'], -input[type='reset'], -input[type='submit'] { - background-color: $color-primary; - border: .1rem solid $color-primary; - color: $color-initial; - cursor: pointer; - display: inline-block; - font-size: 1.1rem; - font-weight: 700; - height: 3.8rem; - letter-spacing: .1rem; - line-height: 3.8rem; - padding: 0 3rem; - text-align: center; - text-decoration: none; - text-transform: uppercase; - white-space: nowrap; - - @include border-radius(.4rem); - - &:focus, - &:hover { - background-color: $color-secondary; - border-color: $color-secondary; - color: $color-initial; - outline: 0; - } - - &[disabled] { - cursor: default; - opacity: .5; - - &:focus, - &:hover { - background-color: $color-primary; - border-color: $color-primary; - } - } - - &.button-outline { - background-color: transparent; - color: $color-primary; - - &:focus, - &:hover { - background-color: transparent; - border-color: $color-secondary; - color: $color-secondary; - } - - &[disabled] { - &:focus, - &:hover { - border-color: inherit; - color: $color-primary; - } - } - } - - &.button-clear { - background-color: transparent; - border-color: transparent; - color: $color-primary; - - &:focus, - &:hover { - background-color: transparent; - border-color: transparent; - color: $color-secondary; - } - - &[disabled] { - &:focus, - &:hover { - color: $color-primary; - } - } - } -} |