|
@@ -21,14 +21,14 @@
|
|
}
|
|
}
|
|
|
|
|
|
html {
|
|
html {
|
|
- font-family: 'Merriweather', serif;
|
|
|
|
- font-size: 16px;
|
|
|
|
|
|
+ font-family: '{{ .Get "body_font" }}', sans-serif;
|
|
|
|
+ font-size: {{ .Get "font_size_small" }}px;
|
|
color: rgba(0,0,0,0.8);
|
|
color: rgba(0,0,0,0.8);
|
|
line-height: 1.65;
|
|
line-height: 1.65;
|
|
}
|
|
}
|
|
@media screen and (min-width: 58em) {
|
|
@media screen and (min-width: 58em) {
|
|
html {
|
|
html {
|
|
- font-size: 20px;
|
|
|
|
|
|
+ font-size: {{ .Get "font_size" }}px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -61,7 +61,7 @@ ul, ol, dl {
|
|
|
|
|
|
/* Navigation bar text */
|
|
/* Navigation bar text */
|
|
.navbar-default {
|
|
.navbar-default {
|
|
- font-family: 'Lato', sans-serif;
|
|
|
|
|
|
+ font-family: '{{ .Get "body_font" }}', sans-serif;
|
|
font-weight: 400;
|
|
font-weight: 400;
|
|
line-height: 1.25;
|
|
line-height: 1.25;
|
|
text-rendering: optimizeLegibility;
|
|
text-rendering: optimizeLegibility;
|
|
@@ -69,7 +69,7 @@ ul, ol, dl {
|
|
|
|
|
|
/* Headings */
|
|
/* Headings */
|
|
h1, h2, h3, h4, h5, h6 {
|
|
h1, h2, h3, h4, h5, h6 {
|
|
- font-family: 'Lato', sans-serif;
|
|
|
|
|
|
+ font-family: '{{ .Get "heading_font" }}', sans-serif;
|
|
font-weight: 400;
|
|
font-weight: 400;
|
|
margin-bottom: .5rem;
|
|
margin-bottom: .5rem;
|
|
line-height: 1.25;
|
|
line-height: 1.25;
|
|
@@ -96,14 +96,14 @@ h4, h5, h6 {
|
|
|
|
|
|
a,
|
|
a,
|
|
h3.article-title a:hover {
|
|
h3.article-title a:hover {
|
|
- color: #0095eb;
|
|
|
|
|
|
+ color: {{ .Get "primary" }};
|
|
text-decoration: none;
|
|
text-decoration: none;
|
|
transition: color 0.6s ease;
|
|
transition: color 0.6s ease;
|
|
}
|
|
}
|
|
|
|
|
|
a:hover,
|
|
a:hover,
|
|
a:focus {
|
|
a:focus {
|
|
- color: #005181;
|
|
|
|
|
|
+ color: {{ .Get "primary" }};
|
|
}
|
|
}
|
|
|
|
|
|
img,
|
|
img,
|
|
@@ -130,7 +130,7 @@ figcaption {
|
|
line-height: 1.25;
|
|
line-height: 1.25;
|
|
font-size: 1rem;
|
|
font-size: 1rem;
|
|
margin-bottom: 1.65rem;
|
|
margin-bottom: 1.65rem;
|
|
- font-family: 'Lato', sans-serif;
|
|
|
|
|
|
+ font-family: '{{ .Get "heading_font" }}', sans-serif;
|
|
counter-increment: captions;
|
|
counter-increment: captions;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -143,7 +143,7 @@ figcaption h4 {
|
|
|
|
|
|
pre,
|
|
pre,
|
|
code {
|
|
code {
|
|
- font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace;
|
|
|
|
|
|
+ font-family: '{{ .Get "mono_font" }}', monospace;
|
|
}
|
|
}
|
|
|
|
|
|
pre {
|
|
pre {
|
|
@@ -210,7 +210,7 @@ blockquote p:last-child {
|
|
}
|
|
}
|
|
|
|
|
|
.home-section {
|
|
.home-section {
|
|
- background-color: rgb(255, 255, 255);
|
|
|
|
|
|
+ background-color: {{ .Get "home_section_odd" }};
|
|
padding: 110px 0 110px 0;
|
|
padding: 110px 0 110px 0;
|
|
animation: intro 0.3s both;
|
|
animation: intro 0.3s both;
|
|
animation-delay: 0.15s;
|
|
animation-delay: 0.15s;
|
|
@@ -221,7 +221,7 @@ blockquote p:last-child {
|
|
}
|
|
}
|
|
|
|
|
|
.home-section:nth-of-type(even) {
|
|
.home-section:nth-of-type(even) {
|
|
- background-color: rgb(247, 247, 247);
|
|
|
|
|
|
+ background-color: {{ .Get "home_section_even" }};
|
|
}
|
|
}
|
|
|
|
|
|
@media screen and (max-width: 768px) {
|
|
@media screen and (max-width: 768px) {
|
|
@@ -238,7 +238,6 @@ blockquote p:last-child {
|
|
}
|
|
}
|
|
|
|
|
|
.section-heading p {
|
|
.section-heading p {
|
|
- font-family: 'Lato', sans-serif;
|
|
|
|
font-weight: 400;
|
|
font-weight: 400;
|
|
font-size: 1.1rem;
|
|
font-size: 1.1rem;
|
|
color: #b2b2b2;
|
|
color: #b2b2b2;
|
|
@@ -261,8 +260,6 @@ blockquote p:last-child {
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
border-radius: 50%;
|
|
border-radius: 50%;
|
|
background-size: cover;
|
|
background-size: cover;
|
|
- -webkit-background-size: cover;
|
|
|
|
- -moz-background-size: cover;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
#profile .portrait-title h2 {
|
|
#profile .portrait-title h2 {
|
|
@@ -273,13 +270,13 @@ blockquote p:last-child {
|
|
}
|
|
}
|
|
|
|
|
|
#profile .portrait-title h3 {
|
|
#profile .portrait-title h3 {
|
|
- font-size: 1.13em;
|
|
|
|
|
|
+ font-size: 1rem;
|
|
font-weight: 300;
|
|
font-weight: 300;
|
|
- color: #AAAAAA;
|
|
|
|
|
|
+ color: rgba(0,0,0, 0.54);
|
|
margin: 0px 0 10px 0;
|
|
margin: 0px 0 10px 0;
|
|
}
|
|
}
|
|
|
|
|
|
-#profile ul.social-icon {
|
|
|
|
|
|
+#profile ul.network-icon {
|
|
display: inline-flex;
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
@@ -288,15 +285,15 @@ blockquote p:last-child {
|
|
margin-top: 30px;
|
|
margin-top: 30px;
|
|
}
|
|
}
|
|
|
|
|
|
-#profile .social-icon li {
|
|
|
|
|
|
+#profile .network-icon li {
|
|
margin-right: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
|
|
|
|
-#profile .social-icon li:last-of-type {
|
|
|
|
|
|
+#profile .network-icon li:last-of-type {
|
|
margin-right: 0;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
|
|
-#profile .social-icon li:hover {
|
|
|
|
|
|
+#profile .network-icon li:hover {
|
|
transform: scale(1.2)
|
|
transform: scale(1.2)
|
|
}
|
|
}
|
|
|
|
|
|
@@ -452,7 +449,7 @@ article {
|
|
}
|
|
}
|
|
|
|
|
|
.article-metadata a:hover {
|
|
.article-metadata a:hover {
|
|
- color: #0095eb;
|
|
|
|
|
|
+ color: {{ .Get "primary" }};
|
|
}
|
|
}
|
|
|
|
|
|
.article-list-item {
|
|
.article-list-item {
|
|
@@ -503,7 +500,7 @@ article {
|
|
**************************************************/
|
|
**************************************************/
|
|
|
|
|
|
.pub-icon {
|
|
.pub-icon {
|
|
- color: #03396c;
|
|
|
|
|
|
+ color: rgba(0, 0, 0, 0.54);
|
|
font-size: 0.81em;
|
|
font-size: 0.81em;
|
|
padding-top: 6px;
|
|
padding-top: 6px;
|
|
}
|
|
}
|
|
@@ -758,16 +755,16 @@ footer a#back_to_top i {
|
|
**************************************************/
|
|
**************************************************/
|
|
|
|
|
|
.btn-primary {
|
|
.btn-primary {
|
|
- border-color: #0095eb;
|
|
|
|
- background: #0095eb;
|
|
|
|
|
|
+ border-color: {{ .Get "primary" }} !important;
|
|
|
|
+ background: {{ .Get "primary" }} !important;
|
|
}
|
|
}
|
|
|
|
|
|
.btn-primary:hover,
|
|
.btn-primary:hover,
|
|
-.btn-primary:focus,
|
|
|
|
.btn-primary:active,
|
|
.btn-primary:active,
|
|
.btn-primary.active,
|
|
.btn-primary.active,
|
|
|
|
+.btn-primary:visited,
|
|
.open > .dropdown-toggle.btn-primary {
|
|
.open > .dropdown-toggle.btn-primary {
|
|
- background: #0095eb;
|
|
|
|
|
|
+ background: {{ .Get "primary" }} !important;
|
|
}
|
|
}
|
|
|
|
|
|
/*************************************************
|
|
/*************************************************
|
|
@@ -790,12 +787,12 @@ footer a#back_to_top i {
|
|
|
|
|
|
.btn-toolbar .btn.btn-primary:hover,
|
|
.btn-toolbar .btn.btn-primary:hover,
|
|
.btn-toolbar .btn.btn-primary:focus {
|
|
.btn-toolbar .btn.btn-primary:focus {
|
|
- background-color: rgba(0,149,235,0.6);
|
|
|
|
|
|
+ background-color: {{ .Get "primary_dark" }} !important;
|
|
}
|
|
}
|
|
|
|
|
|
.btn-toolbar .btn.btn-primary:active,
|
|
.btn-toolbar .btn.btn-primary:active,
|
|
.btn-toolbar .btn.btn-primary.active {
|
|
.btn-toolbar .btn.btn-primary.active {
|
|
- background-color: rgba(0,89,175,1);
|
|
|
|
|
|
+ background-color: {{ .Get "primary_light" }} !important;
|
|
}
|
|
}
|
|
|
|
|
|
/*************************************************
|
|
/*************************************************
|
|
@@ -803,14 +800,22 @@ footer a#back_to_top i {
|
|
**************************************************/
|
|
**************************************************/
|
|
|
|
|
|
.btn-outline {
|
|
.btn-outline {
|
|
- background-color: transparent;
|
|
|
|
|
|
+ background-color: transparent !important;
|
|
color: inherit;
|
|
color: inherit;
|
|
transition: all .5s;
|
|
transition: all .5s;
|
|
}
|
|
}
|
|
|
|
|
|
.btn-primary.btn-outline {
|
|
.btn-primary.btn-outline {
|
|
- color: #0095eb;
|
|
|
|
- border-color: #0095eb;
|
|
|
|
|
|
+ color: {{ .Get "primary" }} !important;
|
|
|
|
+ border-color: {{ .Get "primary" }} !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.btn-primary.btn-outline:focus {
|
|
|
|
+ color: {{ .Get "primary" }} !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.btn-primary.btn-outline:active {
|
|
|
|
+ color: #fff !important;
|
|
}
|
|
}
|
|
|
|
|
|
.btn-success.btn-outline {
|
|
.btn-success.btn-outline {
|
|
@@ -834,7 +839,7 @@ footer a#back_to_top i {
|
|
.btn-info.btn-outline:hover,
|
|
.btn-info.btn-outline:hover,
|
|
.btn-warning.btn-outline:hover,
|
|
.btn-warning.btn-outline:hover,
|
|
.btn-danger.btn-outline:hover {
|
|
.btn-danger.btn-outline:hover {
|
|
- color: #fff;
|
|
|
|
|
|
+ color: #fff !important;
|
|
}
|
|
}
|
|
|
|
|
|
/*************************************************
|
|
/*************************************************
|
|
@@ -846,12 +851,21 @@ footer a#back_to_top i {
|
|
}
|
|
}
|
|
|
|
|
|
.navbar-default {
|
|
.navbar-default {
|
|
- background: #fff;
|
|
|
|
|
|
+ background: {{ .Get "menu_primary" }};
|
|
box-shadow: 0 0.125rem 0.25rem 0 rgba(0,0,0,.11)
|
|
box-shadow: 0 0.125rem 0.25rem 0 rgba(0,0,0,.11)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.navbar-default .navbar-toggle {
|
|
|
|
+ border-color: transparent;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.navbar-default .navbar-toggle:focus,
|
|
|
|
+.navbar-default .navbar-toggle:hover {
|
|
|
|
+ background-color: transparent;
|
|
|
|
+}
|
|
|
|
+
|
|
nav#navbar-main li {
|
|
nav#navbar-main li {
|
|
- font-size: 16px;
|
|
|
|
|
|
+ font-size: {{ .Get "font_size_small" }}px;
|
|
}
|
|
}
|
|
|
|
|
|
.navbar-default .navbar-nav>li>a,
|
|
.navbar-default .navbar-nav>li>a,
|
|
@@ -860,14 +874,20 @@ nav#navbar-main li {
|
|
white-space: nowrap;
|
|
white-space: nowrap;
|
|
-webkit-transition: 0.2s ease;
|
|
-webkit-transition: 0.2s ease;
|
|
transition: 0.2s ease;
|
|
transition: 0.2s ease;
|
|
- color: #34495e;
|
|
|
|
|
|
+ color: {{ .Get "menu_text" }};
|
|
font-weight: 600;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.navbar-default .navbar-nav>li>a:focus,
|
|
|
|
+.navbar-default .navbar-nav>li>a:hover {
|
|
|
|
+ color: {{ .Get "menu_text_active" }};
|
|
|
|
+ background-color: transparent;
|
|
|
|
+}
|
|
|
|
+
|
|
.navbar-default .navbar-nav>.active>a,
|
|
.navbar-default .navbar-nav>.active>a,
|
|
.navbar-default .navbar-nav>.active>a:focus,
|
|
.navbar-default .navbar-nav>.active>a:focus,
|
|
.navbar-default .navbar-nav>.active>a:hover {
|
|
.navbar-default .navbar-nav>.active>a:hover {
|
|
- color: #0095eb;
|
|
|
|
|
|
+ color: {{ .Get "menu_text_active" }};
|
|
font-weight: 700;
|
|
font-weight: 700;
|
|
background-color: transparent !important; /* Override Bootstrap. */
|
|
background-color: transparent !important; /* Override Bootstrap. */
|
|
}
|
|
}
|
|
@@ -880,30 +900,59 @@ nav#navbar-main li {
|
|
padding-bottom: 10px;
|
|
padding-bottom: 10px;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.navbar-default .navbar-toggle .icon-bar {
|
|
|
|
+ background-color: {{ .Get "menu_text" }} !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.dropdown-menu {
|
|
|
|
+ background-color: {{ .Get "menu_primary" }} !important;
|
|
|
|
+}
|
|
|
|
+
|
|
.dropdown-menu > li > a {
|
|
.dropdown-menu > li > a {
|
|
display: block;
|
|
display: block;
|
|
padding: 3px 20px;
|
|
padding: 3px 20px;
|
|
clear: both;
|
|
clear: both;
|
|
font-weight: 400;
|
|
font-weight: 400;
|
|
line-height: 1.42857143;
|
|
line-height: 1.42857143;
|
|
- color: #34495e;
|
|
|
|
|
|
+ color: {{ .Get "menu_text" }};
|
|
white-space: nowrap;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.dropdown-menu>li>a:focus,
|
|
|
|
+.dropdown-menu>li>a:hover {
|
|
|
|
+ color: {{ .Get "menu_text_active" }};
|
|
|
|
+ text-decoration: none;
|
|
|
|
+ background-color: {{ .Get "menu_primary" }};
|
|
|
|
+}
|
|
|
|
+
|
|
.dropdown-menu > .active > a,
|
|
.dropdown-menu > .active > a,
|
|
.dropdown-menu > .active > a:focus,
|
|
.dropdown-menu > .active > a:focus,
|
|
.dropdown-menu > .active > a:hover {
|
|
.dropdown-menu > .active > a:hover {
|
|
- color: #fff;
|
|
|
|
|
|
+ color: {{ .Get "menu_primary" }};
|
|
text-decoration: none;
|
|
text-decoration: none;
|
|
- background-color: #0095eb;
|
|
|
|
|
|
+ background-color: {{ .Get "menu_text_active" }};
|
|
outline: 0;
|
|
outline: 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.navbar-default .navbar-nav>.open>a,
|
|
|
|
+.navbar-default .navbar-nav>.open>a:focus,
|
|
|
|
+.navbar-default .navbar-nav>.open>a:hover,
|
|
|
|
+.navbar-default .navbar-nav>.open>a:visited {
|
|
|
|
+ color: {{ .Get "menu_text" }} !important;
|
|
|
|
+ background-color: {{ .Get "menu_primary" }} !important;
|
|
|
|
+}
|
|
|
|
+
|
|
.navbar-default .navbar-brand {
|
|
.navbar-default .navbar-brand {
|
|
text-transform: uppercase;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
font-size: 1.2em;
|
|
- color: #2b2b2b;
|
|
|
|
|
|
+ color: {{ .Get "menu_title" }};
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.navbar-default .navbar-brand:focus,
|
|
|
|
+.navbar-default .navbar-brand:hover {
|
|
|
|
+ color: {{ .Get "menu_title" }};
|
|
|
|
+ background-color: transparent;
|
|
}
|
|
}
|
|
|
|
|
|
@media screen and (max-width: 1200px) {
|
|
@media screen and (max-width: 1200px) {
|
|
@@ -963,7 +1012,7 @@ nav#navbar-main li {
|
|
clear: both;
|
|
clear: both;
|
|
font-weight: 400;
|
|
font-weight: 400;
|
|
line-height: 1.42857143;
|
|
line-height: 1.42857143;
|
|
- color: #34495e;
|
|
|
|
|
|
+ color: {{ .Get "menu_text" }};
|
|
white-space: nowrap;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -980,7 +1029,7 @@ nav#navbar-main li {
|
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
|
padding: 5px 15px 5px 25px;
|
|
padding: 5px 15px 5px 25px;
|
|
line-height: 20px;
|
|
line-height: 20px;
|
|
- color: #34495e;
|
|
|
|
|
|
+ color: {{ .Get "menu_text" }};
|
|
}
|
|
}
|
|
|
|
|
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
|
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
|
|
@@ -992,7 +1041,7 @@ nav#navbar-main li {
|
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,
|
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,
|
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
|
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
|
|
- color: #0095eb;
|
|
|
|
|
|
+ color: {{ .Get "menu_text_active" }};
|
|
background-color: transparent;
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
|