diff --git a/layouts/partials/head_includes.html b/layouts/partials/head_includes.html
index 0f7e08e..7fcb102 100644
--- a/layouts/partials/head_includes.html
+++ b/layouts/partials/head_includes.html
@@ -4,7 +4,7 @@
var baseUrl = '{{ .Site.BaseUrl }}';
var host = baseUrl.substring(0, baseUrl.length - 1).replace(/\//g, '');
if ((host === window.location.host) && (window.location.protocol !== 'https:')) {
- window.location.protocol = 'https';
+ window.location.protocol = 'https:';
}
diff --git a/main.less b/main.less
index c68d6a3..d509485 100644
--- a/main.less
+++ b/main.less
@@ -11,14 +11,14 @@
@vspacing: @base-font-size*2;
@monospace-font-stack: ~"'Ubuntu Mono', 'Menlo', monospace";
-@body-font-stack: ~"'Proxima Nova', 'Helvetica Neue', 'Arial', sans-serif";
+@body-font-stack: ~"'ProximaNova', 'Open Sans', 'Helvetica Neue', 'Arial', sans-serif";
@heading-font-stack: ~"'Raleway', 'Helvetica Neue', 'Arial', sans-serif";
@special-font-stack-1: ~"'Raleway', 'Helvetica Neue', 'Arial', sans-serif";
@black: #444;
@gray: #999;
-@accent: #0096cc; // jasonlong.me blue
-@link-hover: #007199; // jasonlong.me hover blue
+@accent: rgba(244,109,44,1); // jasonlong.me blue
+@link-hover: rgba(222,90,29,1); // jasonlong.me hover blue
@background: #f7f7f7;
@compensated-black: #555;
@compensated-gray: #999;
diff --git a/static/css/main.css b/static/css/main.css
index ed0c193..2406f10 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -9,7 +9,7 @@
color: #999 !important;
}
.accent {
- color: #0096cc !important;
+ color: #f46d2c !important;
}
@media (min-width: 550px) {
.small-screens-only {
@@ -60,7 +60,7 @@ body {
width: 100%;
min-height: 100%;
font-weight: 400;
- font-family: 'Proxima Nova', 'Helvetica Neue', 'Arial', sans-serif;
+ font-family: 'ProximaNova', 'Open Sans', 'Helvetica Neue', 'Arial', sans-serif;
color: #444;
line-height: 1.6;
text-rendering: optimizeLegibility !important;
@@ -524,14 +524,14 @@ body {
}
}
a {
- color: #0096cc;
+ color: #f46d2c;
-webkit-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-moz-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-ms-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-o-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
}
a:hover {
- color: #007199;
+ color: #de5a1d;
}
img {
max-width: 100%;