diff --git a/_assets/stylesheets/includes/styles.css.scss b/_assets/stylesheets/includes/styles.css.scss index 980d1b4..9a8f09e 100644 --- a/_assets/stylesheets/includes/styles.css.scss +++ b/_assets/stylesheets/includes/styles.css.scss @@ -21,8 +21,8 @@ body > header { } a { - @include transition(color 0.25s 0s ease); color: $link-color; + transition: color 0.25s 0s ease; &:hover { color: $link-color-hover; } @@ -45,9 +45,9 @@ header nav { padding-top: 0.15em; } a { - @include transition(text-shadow 0.25s 0s ease); color: white; text-decoration: none; + transition: text-shadow 0.25s 0s ease; &:hover, &:focus { color: white; text-shadow: 0 0 5px rgba(255, 255, 255, 0.6); diff --git a/_assets/stylesheets/parts/post.css.scss b/_assets/stylesheets/parts/post.css.scss index ae750ee..f1f9d03 100644 --- a/_assets/stylesheets/parts/post.css.scss +++ b/_assets/stylesheets/parts/post.css.scss @@ -60,7 +60,7 @@ article { margin-bottom: 1.5em; text-decoration: none; color: mix($text-color, $text-color-light); - @include transition(background-color 0.5s); + transition: background-color 0.5s; &:hover { background: $link-color-hover; text-shadow: none;