aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--style.css8
1 files changed, 8 insertions, 0 deletions
diff --git a/style.css b/style.css
index b5edaf5..3e4587c 100644
--- a/style.css
+++ b/style.css
@@ -27,11 +27,19 @@ body {
a {
color: #20FF86;
+ -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
+ -webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
+ -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
+ transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
text-decoration: none;
}
a:hover {
color: #ffdd00;
+ -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
+ -webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
+ -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
+ transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
text-decoration: none;
}