Fix transitions

This commit is contained in:
Kevin Cotugno 2016-12-07 17:45:31 -08:00
parent f7a4b91af3
commit 5b3da6b839

View File

@ -51,6 +51,7 @@ p {
a {
text-decoration: none;
color: blue;
transition: 0.25s;
}
a:hover {
@ -64,7 +65,6 @@ a:visited {
a:visited:hover{
color: #8ac0ff;
transition: color 0.25s;
}
a img {
@ -72,7 +72,7 @@ a img {
}
a:hover img {
color: black;
color: black;
}
a:visited img {
@ -89,9 +89,12 @@ a:visited:hover img {
height: 40px;
}
.generic-shadow {
transition: 0.5s;
}
.generic-shadow:hover {
box-shadow: 2px 2px 5px;
transition: box-shadow 0.5s;
}
footer {