reordering of selectors

This commit is contained in:
CJ Patoilo
2015-12-27 14:43:13 -03:00
parent 77a0b3af72
commit b584bf2073
7 changed files with 38 additions and 42 deletions

View File

@@ -2,10 +2,8 @@
// Base
//
// NOTE
// The base font-size is set at 62.5% for having the convenience
// of sizing rems in a way that is similar to using px. 1.6rem=16px
html
box-sizing: border-box
font-size: 62.5%

View File

@@ -4,9 +4,9 @@
.button,
button,
input[type='submit'],
input[type='button'],
input[type='reset'],
input[type='button']
input[type='submit']
background-color: $color-primary
border: .1rem solid $color-primary
border-radius: .4rem

View File

@@ -4,11 +4,11 @@
input[type='email'],
input[type='number'],
input[type='search'],
input[type='text'],
input[type='tel'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
textarea,
select
appearance: none // Removes awkward default styles on some inputs for iOS

View File

@@ -2,8 +2,8 @@
// Spacing
//
button,
.button
.button,
button
margin-bottom: 1rem
input,