Merge upstream and update Gemfile.lock

This commit is contained in:
2020-01-26 03:31:36 -05:00
parent 12bc37ec52
commit b1f816924a
50 changed files with 1654 additions and 202 deletions

View File

@@ -13,7 +13,7 @@ body {
position: relative;
background-color: {{ site.page-col }};
{% if site.page-img %}
background-image: url({{ site.page-img }});
background-image: url({{ site.page-img | relative_url }});
background-attachment: fixed;
{% endif %}
}
@@ -110,7 +110,7 @@ img {
border-bottom: 1px solid #EAEAEA;
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
{% if site.navbar-img %}
background-image: url({{ site.navbar-img }});
background-image: url({{ site.navbar-img | relative_url }});
background-attachment: fixed;
{% endif %}
}
@@ -172,7 +172,7 @@ img {
width: 50px;
margin-top: -25px;
}
.navbar-custom .avatar-container .avatar-img-border {
.navbar-custom .avatar-container .avatar-img-border {
width: 100%;
border-radius: 50%;
margin-left: -50%;
@@ -181,13 +181,13 @@ img {
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .8);
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
}
.navbar-custom .avatar-container .avatar-img {
.navbar-custom .avatar-container .avatar-img {
width: 100%;
border-radius: 50%;
display: block;
}
.navbar-custom.top-nav-expanded .avatar-container {
.navbar-custom.top-nav-expanded .avatar-container {
display: none;
}
@@ -197,14 +197,14 @@ img {
margin-top: -50px;
}
.navbar-custom .avatar-container .avatar-img-border {
.navbar-custom .avatar-container .avatar-img-border {
width: 100%;
box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
}
.navbar-custom .avatar-container .avatar-img {
.navbar-custom .avatar-container .avatar-img {
width: 100%;
}
}
@@ -267,7 +267,7 @@ footer {
font-size: 14px;
background-color: {{ site.footer-col }};
{% if site.footer-img %}
background-image: url({{ site.footer-img }});
background-image: url({{ site.footer-img | relative_url }});
background-attachment: fixed;
{% endif %}
}
@@ -445,7 +445,7 @@ footer .theme-by {
margin-top: 51px; /* The small navbar is 50px tall + 1px border */
margin-bottom: 35px;
}
.intro-header.big-img .big-img-transition {
.intro-header.big-img .big-img-transition {
position: absolute;
width: 100%;
height: 100%;
@@ -516,10 +516,10 @@ footer .theme-by {
margin-top: 130px;
}
.intro-header.big-img {
margin-top: 91px; /* Full navbar is small navbar + 20px padding on each side when expanded */
margin-top: 91px; /* Full navbar is small navbar + 20px padding on each side when expanded */
}
.intro-header.big-img .page-heading,
.intro-header.big-img .post-heading {
.intro-header.big-img .post-heading {
padding: 150px 0;
}
.intro-header .page-heading h1 {
@@ -621,7 +621,7 @@ footer .theme-by {
}
@media only screen and (min-width: 768px) {
.pager.blog-pager {
.pager.blog-pager {
margin-top: 10px;
}
}
@@ -668,37 +668,43 @@ pre {
font-size: 16px;
line-height: 1.5em;
}
pre code {
white-space: pre;
}
pre.highlight, .highlight > pre, td.code pre {
background-color: #FAFAFA;
background-image: linear-gradient(#F9F9F9 50%, #FDFDFD 50%);
background-repeat: repeat;
background-size: 3em 3em;
background-position: 0px 10px;
border-left: 7px solid #444;
}
code table, code table td, code table th, code table tbody, code table tr,
td.gutter pre {
padding: 0;
.highlight pre {
border: none;
background-color: #fff;
background: none;
margin: 0;
}
.highlight > pre {
background-image: linear-gradient(
rgba(0,0,0,0.06), rgba(0,0,0,0.06) 1.5em, rgba(0,0,0,0.03) 1.5em, rgba(0,0,0,0.03) 3em);
background-size: auto 3em;
background-position-y: 10px;
border: 1px solid rgba(0,0,0,0.1);
border-left: 7px solid #444;
}
.highlight > pre:not([class~="highlight"]) { /* code block with line number */
padding: 0;
}
.highlight > pre.highlight {
padding: 9.5px;
.highlight table, .highlight tr, .highlight td { /* to be removed after fixing table styles */
border: none;
background: none;
padding: 0;
margin: 0;
}
td.code pre {
border-width: 0 0 0 2px;
border-style: solid;
border-color: #444;
.highlight pre.lineno {
color: rgba(0,0,0,0.3);
border-radius: 0;
border-right: 2px solid #444;
}
td.gutter {
padding-top: 3px;
/* Make line numbers unselectable: excludes line numbers from copy-paste user ops */
.lineno {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.lineno::selection, .lineno::-moz-selection {
background: none;
}
/* --- Social media sharing section --- */
@@ -708,7 +714,7 @@ td.gutter {
}
/* --- Notification boxes --- */
.box-note, .box-warning, .box-error {
.box-note, .box-warning, .box-error, .box-success {
padding: 15px 15px 15px 10px;
margin: 20px 20px 20px 5px;
border: 1px solid #eee;
@@ -731,6 +737,11 @@ td.gutter {
border-left-color: #c0392b;
}
.box-success {
background-color: #98FB98;
border-left-color: #3CB371;
}
/* Fix table border github gist snippets */
.gist, .gist-file table tr {