diff --git a/templates/project/partials/_example.scss b/templates/project/partials/_example.scss index f595e25..224759e 100644 --- a/templates/project/partials/_example.scss +++ b/templates/project/partials/_example.scss @@ -13,13 +13,8 @@ //-------------------------------- // Minimal Base Styles //-------------------------------- -body, select, input, textarea { color: $font-color; } - html { @include force-scrollbar; } -a, a:active, a:visited { color: $link-color; } -a:hover { color: $link-hover-color; } - ul, ol { margin-left: $list-left-margin; } ol { list-style-type: decimal; } @@ -29,6 +24,8 @@ sub { @include sub; } sup { @include sup; } +textarea { overflow: auto; } + @include accessible-focus; @include quoted-pre; @@ -37,6 +34,8 @@ sup { @include sup; } @include hand-cursor-inputs; +@include webkit-reset-form-elements; + @include selected-text; @include webkit-tap-highlight; diff --git a/templates/project/partials/_page.scss b/templates/project/partials/_page.scss index 07efff4..278237e 100644 --- a/templates/project/partials/_page.scss +++ b/templates/project/partials/_page.scss @@ -11,13 +11,6 @@ body, select, input, textarea { // font-family: Georgia, serif; } -body, select, input, textarea { color: $font-color; } - -html { @include force-scrollbar; } - -a, a:active, a:visited { color: $link-color; } -a:hover { color: $link-hover-color; } - //Headers (h1, h2, etc) have no default font-size or margin; define those yourself h1, h2, h3, h4, h5, h6 { // Bold might not be the best choice if you are @@ -25,7 +18,6 @@ h1, h2, h3, h4, h5, h6 { font-weight: bold; } -// See defaults in _base.scss a, a:active, a:visited { color: $link-color; } a:hover { color: $link-hover-color; }