From cd96ffc8f6114b7e8bd6adf64309b75043f0727f Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Tue, 25 Sep 2018 21:30:49 -0400 Subject: [PATCH] No more transition mixin --- _assets/stylesheets/includes/styles.css.scss | 4 ++-- _assets/stylesheets/parts/post.css.scss | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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;