Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/JugglerX/hugo-whisper-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/scss/components/_buttons.scss')
-rw-r--r--assets/scss/components/_buttons.scss23
1 files changed, 23 insertions, 0 deletions
diff --git a/assets/scss/components/_buttons.scss b/assets/scss/components/_buttons.scss
new file mode 100644
index 0000000..59cfc5b
--- /dev/null
+++ b/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;
+}