summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2016-08-15 19:28:32 -0400
committerBen Burwell <ben@benburwell.com>2016-08-15 19:28:32 -0400
commit4d57e22cb8d937f1b7d5ce21975ada1d7190f4a7 (patch)
tree9e7330394e5343cad0a452424ddc031b5ecf41d5
parent50f316ad993890f72edec588c9d958d1a79cb13f (diff)
Fix link bottom borders, monospace font
-rw-r--r--_includes/site.scss6
1 files changed, 4 insertions, 2 deletions
diff --git a/_includes/site.scss b/_includes/site.scss
index 28335ca..854caf6 100644
--- a/_includes/site.scss
+++ b/_includes/site.scss
@@ -5,7 +5,7 @@ $primary-color: #FF6639;
$link-color: #476AE0;
$base-font-size: 22px;
-$monospace: Consolas, "Liberation Mono", Menlo, Courier, monospace !default;
+$monospace: monospace;
$container-width: 1200px;
@mixin container {
@@ -127,9 +127,11 @@ blockquote {
a {
color: $dark-gray;
- text-decoration: underline;
+ text-decoration: none;
+ border-bottom: 1px solid $dark-gray;
&:hover {
color: $primary-color;
+ border-bottom-color: $primary-color;
}
}