aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominic Matarese <dominicmatarese@gmail.com>2021-09-01 23:20:31 +0000
committerDominic Matarese <dominicmatarese@gmail.com>2021-09-01 23:20:31 +0000
commite75c7fb38a9818b5c95f226912b209b21c0c23fb (patch)
tree50a6cd82196e341c38cf15d8281245998e39c3b7
parent76c2dd6cd1de96fed3a7e40e980201546388d2a6 (diff)
color now fades in and out on link hover
-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;
}