Improve flexibility of applying color to the theme

This commit is contained in:
Michael Rose
2016-04-05 15:18:05 -04:00
parent 1b9508d229
commit ecae46746d
13 changed files with 69 additions and 58 deletions

View File

@@ -51,7 +51,7 @@ input,
button,
select,
textarea {
font-family: $serif;
font-family: $sans-serif;
box-sizing: border-box;
}
@@ -81,7 +81,7 @@ select {
color: $text-color;
&:hover {
border-color: mix(#fff, $accent-color, 50%);
border-color: mix(#fff, $primary-color, 50%);
}
}
@@ -212,7 +212,7 @@ textarea[readonly] {
input:focus,
textarea:focus {
border-color: $accent-color;
border-color: $primary-color;
outline: 0;
outline: thin dotted \9;
}