diff options
Diffstat (limited to 'sass')
-rw-r--r-- | sass/_normalize.scss | 2 | ||||
-rw-r--r-- | sass/_predefined.scss | 8 | ||||
-rw-r--r-- | sass/style.scss | 2 |
3 files changed, 7 insertions, 5 deletions
diff --git a/sass/_normalize.scss b/sass/_normalize.scss index 47b010e..ce3e9a8 100644 --- a/sass/_normalize.scss +++ b/sass/_normalize.scss @@ -189,6 +189,7 @@ button, [type="reset"], [type="submit"] { -webkit-appearance: button; + appearance: button; } /** @@ -281,6 +282,7 @@ textarea { [type="search"] { -webkit-appearance: textfield; /* 1 */ + appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ } diff --git a/sass/_predefined.scss b/sass/_predefined.scss index ac955ed..e0fb95b 100644 --- a/sass/_predefined.scss +++ b/sass/_predefined.scss @@ -9,12 +9,12 @@ $dark-grey: #3b3e48; $highlight-grey: #7d828a; $midnightblue: #2b303b; //#31333d; // to fix code syntax highlighting -//$theme: #018574; -//$text: #8dabd0; // fg // general text // mod white -//$light-grey: #4e6695; // bg // mod blue +//$theme: #018574; // links // green +//$text: #8dabd0; // fg // general text // white +//$light-grey: #4e6695; // bg // blue //$dark-grey: #4e6695; //$highlight-grey: #4e6695; -//$midnightblue: #4e6695; +//$midnightblue: #2b303b; // Fonts // diff --git a/sass/style.scss b/sass/style.scss index 18ff1d0..b2d75f5 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -90,7 +90,7 @@ a { text-decoration: none; border: none; transition-property: color; - transition-duration: 0.4s; + transition-duration: 0.5s; transition-timing-function: ease-out; &:hover { |