From 2504f479cca81cf620084c47564e28a7ecc4fca7 Mon Sep 17 00:00:00 2001 From: ManjaroOne666 Date: Sun, 27 Jan 2019 18:26:13 +0000 Subject: [PATCH] form styling --- TODO.md | 4 ++ assets/scss/_buefy.scss | 17 +++++ components/ContentPage.vue | 1 + pages/contact.vue | 134 +++++++++++++++++++++++++++++-------- 4 files changed, 127 insertions(+), 29 deletions(-) diff --git a/TODO.md b/TODO.md index 0a2e1ec..4e1b2fb 100644 --- a/TODO.md +++ b/TODO.md @@ -6,6 +6,10 @@ ## Menu * Proper background images for hover effect +## contact +* social icons at bottom right of form +* form background image + ## General * loading transitions * nav buttons diff --git a/assets/scss/_buefy.scss b/assets/scss/_buefy.scss index 262ce06..1627f78 100644 --- a/assets/scss/_buefy.scss +++ b/assets/scss/_buefy.scss @@ -2,7 +2,24 @@ $link: $color__primary-500; $link-hover: $color__primary-700; $primary: #f00; +$white: $color__neutral-900; +$danger: $color__accent-danger-300; +$success: $color__accent-success-300; @import "~bulma/sass/utilities/_all.sass"; @import "~bulma/bulma.sass"; @import "~buefy/src/scss/buefy"; + +.label { + color: $color__neutral-700; + @include font-title(600); +} + +.input, .textarea { + font-weight: 600; +} + +.help { + font-weight: 600; + font-size: .8em; +} diff --git a/components/ContentPage.vue b/components/ContentPage.vue index b81c199..092c525 100644 --- a/components/ContentPage.vue +++ b/components/ContentPage.vue @@ -72,6 +72,7 @@ $z-index-top: 10; .content { position: absolute; width: 100%; + min-height: 100%; top: 0; right: 0; diff --git a/pages/contact.vue b/pages/contact.vue index c227494..263ff6f 100644 --- a/pages/contact.vue +++ b/pages/contact.vue @@ -1,49 +1,73 @@