Added sidebar opacity on hover

This commit is contained in:
Kenneth John Odle 2021-08-01 15:50:14 -04:00
parent 50d0159d56
commit 0b592dbf6c

View File

@ -108,6 +108,18 @@ body > header {
}
/**********************************/
/* 2a. Sidebar hover effect */
#sidebar {
opacity: 0.2;
transition: opacity 1.5s;
}
#sidebar:hover {
opacity: 1.0;
}
/**********************************/
/* 3. Top Elements */