Browse Source

Added sidebar opacity on hover

main
Kenneth John Odle 3 years ago
parent
commit
0b592dbf6c
  1. 12
      style.css

12
style.css

@ -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 */

Loading…
Cancel
Save