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/_form.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/_form.scss')
-rw-r--r-- | _scss/components/theme/_form.scss | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/_scss/components/theme/_form.scss b/_scss/components/theme/_form.scss deleted file mode 100644 index 211383c..0000000 --- a/_scss/components/theme/_form.scss +++ /dev/null @@ -1,69 +0,0 @@ -@import 'utilities/appearance'; -@import 'utilities/borderradius'; -@import 'utilities/boxshadow'; -@import 'utilities/boxsizing'; - -input:not([type]), -input[type='color'], -input[type='date'], -input[type='datetime'], -input[type='datetime-local'], -input[type='email'], -input[type='month'], -input[type='number'], -input[type='password'], -input[type='search'], -input[type='tel'], -input[type='text'], -input[type='url'], -input[type='week'], -select, -textarea { - background-color: transparent; - border: .1rem solid $color-quaternary; - height: 3.8rem; - padding: .6rem 1rem; - width: 100%; - - @include appearance(none); - @include border-radius(.4rem); - @include box-shadow(none); - @include box-sizing(inherit); - - &:focus { - border-color: $color-primary; - outline: 0; - } -} - -select { - padding-right: 3rem; -} - -textarea { - min-height: 6.5rem; -} - -label, -legend { - display: block; - font-size: 1.6rem; - font-weight: 700; - margin-bottom: .5rem; -} - -fieldset { - border-width: 0; - padding: 0; -} - -input[type='checkbox'], -input[type='radio'] { - display: inline; -} - -.label-inline { - display: inline-block; - font-weight: normal; - margin-left: .5rem; -} |