diff options
Diffstat (limited to 'themes/hugo-whisper-theme/assets/scss/components/_buttons.scss')
-rw-r--r-- | themes/hugo-whisper-theme/assets/scss/components/_buttons.scss | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/themes/hugo-whisper-theme/assets/scss/components/_buttons.scss b/themes/hugo-whisper-theme/assets/scss/components/_buttons.scss new file mode 100644 index 0000000..59cfc5b --- /dev/null +++ b/themes/hugo-whisper-theme/assets/scss/components/_buttons.scss @@ -0,0 +1,23 @@ +.button { + white-space: nowrap; + display: inline-block; + padding: 8px 15px 6px 15px; + background: $primary; + font-weight: normal; + text-transform: uppercase; + color: lighten($primary, 50%); + text-decoration: none; + -webkit-transition: all 0.15s ease; + transition: all 0.15s ease; + border-radius: 3px; + &:hover { + color: #fff; + background-color: lighten($primary, 10%); + text-decoration: none; + } +} +.button-white { + background: none; + color: #fff; + border: 2px solid #fff; +} |