Prettier link hover state
authorspf13 <steve.francia@gmail.com>
Mon, 25 Aug 2014 19:52:43 +0000 (15:52 -0400)
committerspf13 <steve.francia@gmail.com>
Mon, 25 Aug 2014 19:52:43 +0000 (15:52 -0400)
docs/static/css/style.css

index f21761fec3d5267039029252443c8777b2e96a25..4cc5417530f4577e2d7767bf4dd7d1a5efe82190 100755 (executable)
@@ -2,6 +2,7 @@
 /* ******************************
  For the github btn
 ****************************** */
+
 .github-btn {
   font-size: 11px;
 }
@@ -125,9 +126,27 @@ a, a:hover, a:focus {
     outline: 0;
 }
 
-.panel-body a:hover {
-    text-decoration: underline;
+
+.panel-body a {
+    line-height: 1.1;
+    display: inline-block;
+}
+.panel-body a:after {
+  display: block;
+  content: "";
+  height: 2px;
+  width: 0%;
+  background-color: #ff4088;
+  -webkit-transition: width 0.3s ease;
+  -moz-transition: width 0.3s ease;
+  -ms-transition: width 0.3s ease;
+  transition: width 0.3s ease;
+}
+
+.panel-body a:hover:after, .panel-body a:focus:after {
+    width: 100%;
 }
+
 input:focus, textarea:focus { outline: none; }
 *:focus {outline: none;}
 ::selection {