Change link color + add transition animation on menu-bar icons on hover. Closes #15

This commit is contained in:
Mathieu David 2015-07-29 21:53:59 +02:00
parent 925b0834cb
commit 94d3d65a0e
1 changed files with 18 additions and 0 deletions

View File

@ -104,6 +104,13 @@ html, body {
color: #CCC;
}
.menu-bar i {
-webkit-transition: color 0.5s; /* Safari */
-o-transition: color 0.5s; /* Opera */
-moz-transition: color 0.5s; /* Mozilla Firefox */
transition: color 0.5s;
}
.menu-bar :hover {
/* Animate color change */
color: #333;
@ -130,3 +137,14 @@ pre {
.right {
float: right;
}
/* Content */
.page a {
color: #4183c4;
text-decoration: none;
}
.page a:hover {
text-decoration: underline;
}