diff options
| author | Dominic Matarese <dominicmatarese@gmail.com> | 2021-09-01 23:20:31 +0000 | 
|---|---|---|
| committer | Dominic Matarese <dominicmatarese@gmail.com> | 2021-09-01 23:20:31 +0000 | 
| commit | e75c7fb38a9818b5c95f226912b209b21c0c23fb (patch) | |
| tree | 50a6cd82196e341c38cf15d8281245998e39c3b7 | |
| parent | 76c2dd6cd1de96fed3a7e40e980201546388d2a6 (diff) | |
color now fades in and out on link hover
| -rw-r--r-- | style.css | 8 | 
1 files changed, 8 insertions, 0 deletions
| @@ -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;  } | 
