Change link color + add transition animation on menu-bar icons on hover. Closes #15
This commit is contained in:
parent
925b0834cb
commit
94d3d65a0e
|
@ -104,6 +104,13 @@ html, body {
|
||||||
color: #CCC;
|
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 {
|
.menu-bar :hover {
|
||||||
/* Animate color change */
|
/* Animate color change */
|
||||||
color: #333;
|
color: #333;
|
||||||
|
@ -130,3 +137,14 @@ pre {
|
||||||
.right {
|
.right {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Content */
|
||||||
|
|
||||||
|
.page a {
|
||||||
|
color: #4183c4;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue