Compare commits
3 Commits
5560964bca
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 70cf7d32de | |||
| 0a4f532c43 | |||
| cc93742cf6 |
Vendored
+22
-14
@@ -1,7 +1,7 @@
|
||||
/*!
|
||||
* justifiedGallery - v3.7.0
|
||||
* justifiedGallery - v3.8.0
|
||||
* http://miromannino.github.io/Justified-Gallery/
|
||||
* Copyright (c) 2018 Miro Mannino
|
||||
* Copyright (c) 2020 Miro Mannino
|
||||
* Licensed under the MIT license.
|
||||
*/
|
||||
.justified-gallery {
|
||||
@@ -26,7 +26,13 @@
|
||||
.justified-gallery > figure > img,
|
||||
.justified-gallery > a > a > img,
|
||||
.justified-gallery > div > a > img,
|
||||
.justified-gallery > figure > a > img {
|
||||
.justified-gallery > figure > a > img,
|
||||
.justified-gallery > a > svg,
|
||||
.justified-gallery > div > svg,
|
||||
.justified-gallery > figure > svg,
|
||||
.justified-gallery > a > a > svg,
|
||||
.justified-gallery > div > a > svg,
|
||||
.justified-gallery > figure > a > svg {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
@@ -36,9 +42,9 @@
|
||||
filter: "alpha(opacity=0)";
|
||||
opacity: 0;
|
||||
}
|
||||
.justified-gallery > a > .caption,
|
||||
.justified-gallery > div > .caption,
|
||||
.justified-gallery > figure > .caption {
|
||||
.justified-gallery > a > .jg-caption,
|
||||
.justified-gallery > div > .jg-caption,
|
||||
.justified-gallery > figure > .jg-caption {
|
||||
display: none;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
@@ -52,9 +58,9 @@
|
||||
font-weight: 300;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
.justified-gallery > a > .caption.caption-visible,
|
||||
.justified-gallery > div > .caption.caption-visible,
|
||||
.justified-gallery > figure > .caption.caption-visible {
|
||||
.justified-gallery > a > .jg-caption.jg-caption-visible,
|
||||
.justified-gallery > div > .jg-caption.jg-caption-visible,
|
||||
.justified-gallery > figure > .jg-caption.jg-caption-visible {
|
||||
display: initial;
|
||||
filter: "alpha(opacity=70)";
|
||||
opacity: 0.7;
|
||||
@@ -63,13 +69,15 @@
|
||||
-o-transition: opacity 500ms ease-in;
|
||||
transition: opacity 500ms ease-in;
|
||||
}
|
||||
.justified-gallery > .entry-visible {
|
||||
.justified-gallery > .jg-entry-visible {
|
||||
filter: "alpha(opacity=100)";
|
||||
opacity: 1;
|
||||
background: none;
|
||||
}
|
||||
.justified-gallery > .entry-visible > img,
|
||||
.justified-gallery > .entry-visible > a > img {
|
||||
.justified-gallery > .jg-entry-visible > img,
|
||||
.justified-gallery > .jg-entry-visible > a > img,
|
||||
.justified-gallery > .jg-entry-visible > svg,
|
||||
.justified-gallery > .jg-entry-visible > a > svg {
|
||||
filter: "alpha(opacity=100)";
|
||||
opacity: 1;
|
||||
-webkit-transition: opacity 500ms ease-in;
|
||||
@@ -80,7 +88,7 @@
|
||||
.justified-gallery > .jg-filtered {
|
||||
display: none;
|
||||
}
|
||||
.justified-gallery > .spinner {
|
||||
.justified-gallery > .jg-spinner {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
margin-left: -24px;
|
||||
@@ -90,7 +98,7 @@
|
||||
opacity: 1;
|
||||
overflow: initial;
|
||||
}
|
||||
.justified-gallery > .spinner > span {
|
||||
.justified-gallery > .jg-spinner > span {
|
||||
display: inline-block;
|
||||
filter: "alpha(opacity=0)";
|
||||
opacity: 0;
|
||||
|
||||
+22
-27
@@ -1,10 +1,13 @@
|
||||
@import url("pygment.css");
|
||||
body { margin:0px; padding:20px 0px; text-align:center; font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif; color:#000000; }
|
||||
a, a:visited { text-decoration:none; color:#1d2a78; }
|
||||
a:hover { text-decoration:underline; }
|
||||
h1, h2, h3, h4, h5, h6, h7 { margin:0px; line-height: 1.0em; font-size: 2.0em; }
|
||||
@import url("colorbox.css");
|
||||
@import url("justifiedGallery.min.css");
|
||||
|
||||
body { margin:0px; padding:15px 0px; text-align:center; font-family: Arial, Helvetica, sans-serif; color:#000000; }
|
||||
a, a:visited { color:#0070b4;}
|
||||
a:hover { color:#009dfc; }
|
||||
h1, h2, h3, h4, h5, h6, h7 { margin:0px; line-height: 1.0em; }
|
||||
h4, h5, h6 { font-size:18px; }
|
||||
h1 { padding:0px 0px 0.5em; margin:0px 0px 5px 0px; }
|
||||
h1 { padding:0px 0px 0.5em; margin:0px 0px 5px 0px; font-size: 1.5em; }
|
||||
blockquote { font-style:italic; background:#EAEAEA; margin:20px; padding:5px 10px; }
|
||||
blockquote cite { display:block; padding:10px 20px 0 0; text-align:right; }
|
||||
input, textarea { padding:5px; border:1px solid #8A8A8A; background:#EAEAEA; }
|
||||
@@ -14,17 +17,21 @@ th { color: white; background: navy; text-align: center; }
|
||||
td { padding-left: 0.5em; }
|
||||
table { width: 100%; }
|
||||
tr:nth-child(odd) { background-color: lightgray;}
|
||||
pre { font-size: 1.2em; }
|
||||
|
||||
#wrap { margin:0em auto; text-align:left; line-height: 1.0; width: 100%; }
|
||||
#container { float: right; width: 70% }
|
||||
#sidebar { overflow:hidden; clear:left; text-align:right; width:25%; height:auto; padding:0px 15px 0px 0px; border-right:0.15em solid #C8C8C8; }
|
||||
#sidebar .description { display:block; font-size: 1.1em; width:100%; height:auto; margin:0px 0px 10px 0px; }
|
||||
#sidebar li { list-style-type:none; font-size: 1.3em; line-height: 1.1em; font-weight: bold; }
|
||||
#container { float: right; width: 77%; }
|
||||
#sidebar { overflow:hidden; clear:left; text-align:right; width: 20%; height:auto; padding:20px 15px 0px 0px; border-right:0.15em solid #C8C8C8; }
|
||||
#sidebar .description { display:block; font-size: 1.0em; width:100%; height:auto; margin:0px 0px 10px 0px; }
|
||||
#sidebar li { list-style-type:none; font-size: 1.2em; line-height: 1.1em; font-weight: bold; }
|
||||
#sidebar a { text-decoration: none }
|
||||
#sidebar > li { margin:20px 0px; }
|
||||
#sidebar .description { display:block; font-size: 1.1em; width:100%; height:auto; margin:0px 0px 10px 0px; }
|
||||
#landing img { display:block; border:1px solid #000000 !important; margin-left: auto; margin-right: auto; max-height: 100%; max-width: 100%; }
|
||||
#landing p { text-align: center; font-size: 1.3em; }
|
||||
#landing p { text-align: center; }
|
||||
|
||||
/*pre { background: #14191E; border: 1px solid #AAAAAA; overflow: auto; padding: 10px; color: #FFFFFF; font-family: "Lucida Console", "Courier New", monospace; }*/
|
||||
code { font-size: 1.1em; }
|
||||
|
||||
ul.sub-menu, ul.children { margin:0px 10px 0px 0px; }
|
||||
|
||||
@@ -33,18 +40,6 @@ ul.sub-menu, ul.children { margin:0px 10px 0px 0px; }
|
||||
.meta { margin:10px; padding:15px; background:#EAEAEA; clear:both; }
|
||||
.meta span { display:block; clear:left; }
|
||||
|
||||
.gallerysquare { position: relative; float: left; max-width: 50%; max-height: 50%; display: flex; }
|
||||
.gallerysquare img { object-fit: cover; width: 500px; height: 500px; }
|
||||
.gallerylabel { position: absolute; bottom: 20px; left: 20px; background-color: rgba(0, 0, 0, 0.5); color: white; font-size: 1.7em; font-weight: 600; font-family: Serif; padding: 1.5em; }
|
||||
|
||||
.gallerylabel a.hover { font-style: underline; }
|
||||
.gallerylabel a { color:#FFFFFF; }
|
||||
.gallerylabel a.visited { color:#FFFFFF; }
|
||||
|
||||
.portfolio { padding-right: 1.0em; text-align: center; }
|
||||
.portfolio h4 { font-size: 2.0em; font-family: Serif; }
|
||||
.portfolio img { display:block; border:1px solid #000000 !important; margin-left: auto; margin-right: auto; max-height: 100%; max-width: 100%; }
|
||||
|
||||
.prow { display: flex; flex-wrap: wrap; padding: 0 4px; }
|
||||
.pcolumn { flex: 25%; max-width: 25%; padding: 0 4px; }
|
||||
.pcolumn img { margin-top: 8px; vertical-align: middle; }
|
||||
@@ -52,9 +47,8 @@ ul.sub-menu, ul.children { margin:0px 10px 0px 0px; }
|
||||
@media screen and (max-width: 600px) { .pcolumn { flex: 100%; max-width: 100%; } }
|
||||
|
||||
|
||||
.entry { font-size: 1.1em; padding-right: 1.0em; max-width:1024px; line-height:1.2em; }
|
||||
.entry h2, h3, h4, h5 { margin:30px 0px 10px 0px; }
|
||||
|
||||
.entry { font-size: 1.0em; padding-right: 1.0em; max-width:1024px; line-height:1.2em; }
|
||||
.entry h2, h3, h4, h5 { margin:30px 0px 10px 0px; }
|
||||
.entry img { display:block; border:1px solid #000000 !important; margin-left: auto; margin-right: auto; max-height: 100%; max-width: 100%; }
|
||||
.entry img.wp-smiley { border:0px !important; }
|
||||
.entry a img:hover { background-color:transparent; border:1px solid #E5E5E5 !important; }
|
||||
@@ -108,8 +102,8 @@ ul.commentlist ul.children li { list-style-type:none; border:1px solid #AAA }
|
||||
input#submit { font-weight:bold; }
|
||||
input#s { width:70%; height:auto; margin:5px 0px; }
|
||||
|
||||
#footer { text-align:center; clear:both; font-size: 1.1em; }
|
||||
#footer div { margin:30px 0px 0px 0px; padding:30px 0px 0px 0px; border-top:0.15em solid #C8C8C8; }
|
||||
#footer { text-align:center; clear:both; font-size: 1.0em; }
|
||||
#footer div { margin:30px 0px 0px 0px; padding:20px 0px 0px 0px; }
|
||||
#footer li { list-style-type:none; }
|
||||
#footer .widget_tag_cloud h2 { display:none; }
|
||||
|
||||
@@ -117,4 +111,5 @@ input#s { width:70%; height:auto; margin:5px 0px; }
|
||||
#page-title{
|
||||
position : relative;
|
||||
top : 8px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
+85
-294
@@ -1,294 +1,85 @@
|
||||
.highlight code,
|
||||
.highlight pre {
|
||||
color: #FFFFFF;
|
||||
background-color: #333333;
|
||||
white-space: pre-wrap;
|
||||
padding: 0.10em;
|
||||
font-size: 1.0em;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.highlight .hll {
|
||||
background-color: #222
|
||||
}
|
||||
|
||||
.highlight .c {
|
||||
color: #7f9f7f
|
||||
}
|
||||
|
||||
.highlight .err {
|
||||
color: #e37170;
|
||||
background-color: #3d3535
|
||||
}
|
||||
|
||||
.highlight .g {
|
||||
color: #7f9f7f
|
||||
}
|
||||
|
||||
.highlight .k {
|
||||
color: #f0dfaf
|
||||
}
|
||||
|
||||
.highlight .l {
|
||||
color: #ccc
|
||||
}
|
||||
|
||||
.highlight .n {
|
||||
color: #dcdccc
|
||||
}
|
||||
|
||||
.highlight .o {
|
||||
color: #f0efd0
|
||||
}
|
||||
|
||||
.highlight .x {
|
||||
color: #ccc
|
||||
}
|
||||
|
||||
.highlight .p {
|
||||
color: #41706f
|
||||
}
|
||||
|
||||
.highlight .cm {
|
||||
color: #7f9f7f
|
||||
}
|
||||
|
||||
.highlight .cp {
|
||||
color: #7f9f7f
|
||||
}
|
||||
|
||||
.highlight .c1 {
|
||||
color: #7f9f7f
|
||||
}
|
||||
|
||||
.highlight .cs {
|
||||
color: #cd0000;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
.highlight .gd {
|
||||
color: #cd0000
|
||||
}
|
||||
|
||||
.highlight .ge {
|
||||
color: #ccc;
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
.highlight .gr {
|
||||
color: red
|
||||
}
|
||||
|
||||
.highlight .gh {
|
||||
color: #dcdccc;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
.highlight .gi {
|
||||
color: #00cd00
|
||||
}
|
||||
|
||||
.highlight .go {
|
||||
color: gray
|
||||
}
|
||||
|
||||
.highlight .gp {
|
||||
color: #dcdccc;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
.highlight .gs {
|
||||
color: #ccc;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
.highlight .gu {
|
||||
color: purple;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
.highlight .gt {
|
||||
color: #0040D0
|
||||
}
|
||||
|
||||
.highlight .kc {
|
||||
color: #dca3a3
|
||||
}
|
||||
|
||||
.highlight .kd {
|
||||
color: #ffff86
|
||||
}
|
||||
|
||||
.highlight .kn {
|
||||
color: #dfaf8f;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
.highlight .kp {
|
||||
color: #cdcf99
|
||||
}
|
||||
|
||||
.highlight .kr {
|
||||
color: #cdcd00
|
||||
}
|
||||
|
||||
.highlight .kt {
|
||||
color: #00cd00
|
||||
}
|
||||
|
||||
.highlight .ld {
|
||||
color: #cc9393
|
||||
}
|
||||
|
||||
.highlight .m {
|
||||
color: #8cd0d3
|
||||
}
|
||||
|
||||
.highlight .s {
|
||||
color: #cc9393
|
||||
}
|
||||
|
||||
.highlight .na {
|
||||
color: #9ac39f
|
||||
}
|
||||
|
||||
.highlight .nb {
|
||||
color: #efef8f
|
||||
}
|
||||
|
||||
.highlight .nc {
|
||||
color: #efef8f
|
||||
}
|
||||
|
||||
.highlight .no {
|
||||
color: #ccc
|
||||
}
|
||||
|
||||
.highlight .nd {
|
||||
color: #ccc
|
||||
}
|
||||
|
||||
.highlight .ni {
|
||||
color: #c28182
|
||||
}
|
||||
|
||||
.highlight .ne {
|
||||
color: #c3bf9f;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
.highlight .nf {
|
||||
color: #efef8f
|
||||
}
|
||||
|
||||
.highlight .nl {
|
||||
color: #ccc
|
||||
}
|
||||
|
||||
.highlight .nn {
|
||||
color: #8fbede
|
||||
}
|
||||
|
||||
.highlight .nx {
|
||||
color: #ccc
|
||||
}
|
||||
|
||||
.highlight .py {
|
||||
color: #ccc
|
||||
}
|
||||
|
||||
.highlight .nt {
|
||||
color: #9ac39f
|
||||
}
|
||||
|
||||
.highlight .nv {
|
||||
color: #dcdccc
|
||||
}
|
||||
|
||||
.highlight .ow {
|
||||
color: #f0efd0
|
||||
}
|
||||
|
||||
.highlight .w {
|
||||
color: #ccc
|
||||
}
|
||||
|
||||
.highlight .mf {
|
||||
color: #8cd0d3
|
||||
}
|
||||
|
||||
.highlight .mh {
|
||||
color: #8cd0d3
|
||||
}
|
||||
|
||||
.highlight .mi {
|
||||
color: #8cd0d3
|
||||
}
|
||||
|
||||
.highlight .mo {
|
||||
color: #8cd0d3
|
||||
}
|
||||
|
||||
.highlight .sb {
|
||||
color: #cc9393
|
||||
}
|
||||
|
||||
.highlight .sc {
|
||||
color: #cc9393
|
||||
}
|
||||
|
||||
.highlight .sd {
|
||||
color: #cc9393
|
||||
}
|
||||
|
||||
.highlight .s2 {
|
||||
color: #cc9393
|
||||
}
|
||||
|
||||
.highlight .se {
|
||||
color: #cc9393
|
||||
}
|
||||
|
||||
.highlight .sh {
|
||||
color: #cc9393
|
||||
}
|
||||
|
||||
.highlight .si {
|
||||
color: #cc9393
|
||||
}
|
||||
|
||||
.highlight .sx {
|
||||
color: #cc9393
|
||||
}
|
||||
|
||||
.highlight .sr {
|
||||
color: #cc9393
|
||||
}
|
||||
|
||||
.highlight .s1 {
|
||||
color: #cc9393
|
||||
}
|
||||
|
||||
.highlight .ss {
|
||||
color: #cc9393
|
||||
}
|
||||
|
||||
.highlight .bp {
|
||||
color: #efef8f
|
||||
}
|
||||
|
||||
.highlight .vc {
|
||||
color: #efef8f
|
||||
}
|
||||
|
||||
.highlight .vg {
|
||||
color: #dcdccc
|
||||
}
|
||||
|
||||
.highlight .vi {
|
||||
color: #ffffc7
|
||||
}
|
||||
|
||||
.highlight .il {
|
||||
color: #8cd0d3
|
||||
}
|
||||
pre { line-height: 125%; padding: 15px; white-space: pre-wrap; }
|
||||
td.linenos .normal { color: #3c4354; background-color: transparent; padding-left: 5px; padding-right: 5px; }
|
||||
span.linenos { color: #3c4354; background-color: transparent; padding-left: 5px; padding-right: 5px; }
|
||||
td.linenos .special { color: #3c4354; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
|
||||
span.linenos.special { color: #3c4354; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
|
||||
.highlight .hll { background-color: #6e7681 }
|
||||
.highlight { background: #1d2331; color: #d4d2c8 }
|
||||
.highlight .c { color: #7e8aa1 } /* Comment */
|
||||
.highlight .err { color: #f88f7f } /* Error */
|
||||
.highlight .esc { color: #d4d2c8 } /* Escape */
|
||||
.highlight .g { color: #d4d2c8 } /* Generic */
|
||||
.highlight .k { color: #FFAD66 } /* Keyword */
|
||||
.highlight .l { color: #D5FF80 } /* Literal */
|
||||
.highlight .n { color: #d4d2c8 } /* Name */
|
||||
.highlight .o { color: #FFAD66 } /* Operator */
|
||||
.highlight .x { color: #d4d2c8 } /* Other */
|
||||
.highlight .p { color: #d4d2c8 } /* Punctuation */
|
||||
.highlight .ch { color: #f88f7f; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #7e8aa1 } /* Comment.Multiline */
|
||||
.highlight .cp { color: #FFAD66; font-weight: bold } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #7e8aa1 } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #7e8aa1 } /* Comment.Single */
|
||||
.highlight .cs { color: #7e8aa1; font-style: italic } /* Comment.Special */
|
||||
.highlight .gd { color: #f88f7f; background-color: #3d1e20 } /* Generic.Deleted */
|
||||
.highlight .ge { color: #d4d2c8; font-style: italic } /* Generic.Emph */
|
||||
.highlight .ges { color: #d4d2c8 } /* Generic.EmphStrong */
|
||||
.highlight .gr { color: #f88f7f } /* Generic.Error */
|
||||
.highlight .gh { color: #d4d2c8 } /* Generic.Heading */
|
||||
.highlight .gi { color: #6ad4af; background-color: #19362c } /* Generic.Inserted */
|
||||
.highlight .go { color: #7e8aa1 } /* Generic.Output */
|
||||
.highlight .gp { color: #d4d2c8 } /* Generic.Prompt */
|
||||
.highlight .gs { color: #d4d2c8; font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #d4d2c8 } /* Generic.Subheading */
|
||||
.highlight .gt { color: #f88f7f } /* Generic.Traceback */
|
||||
.highlight .kc { color: #FFAD66 } /* Keyword.Constant */
|
||||
.highlight .kd { color: #FFAD66 } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #FFAD66 } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #FFAD66 } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #FFAD66 } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #73D0FF } /* Keyword.Type */
|
||||
.highlight .ld { color: #D5FF80 } /* Literal.Date */
|
||||
.highlight .m { color: #DFBFFF } /* Literal.Number */
|
||||
.highlight .s { color: #D5FF80 } /* Literal.String */
|
||||
.highlight .na { color: #FFD173 } /* Name.Attribute */
|
||||
.highlight .nb { color: #FFD173 } /* Name.Builtin */
|
||||
.highlight .nc { color: #73D0FF } /* Name.Class */
|
||||
.highlight .no { color: #FFD173 } /* Name.Constant */
|
||||
.highlight .nd { color: #7e8aa1; font-weight: bold; font-style: italic } /* Name.Decorator */
|
||||
.highlight .ni { color: #95E6CB } /* Name.Entity */
|
||||
.highlight .ne { color: #73D0FF } /* Name.Exception */
|
||||
.highlight .nf { color: #FFD173 } /* Name.Function */
|
||||
.highlight .nl { color: #d4d2c8 } /* Name.Label */
|
||||
.highlight .nn { color: #d4d2c8 } /* Name.Namespace */
|
||||
.highlight .nx { color: #d4d2c8 } /* Name.Other */
|
||||
.highlight .py { color: #FFD173 } /* Name.Property */
|
||||
.highlight .nt { color: #5CCFE6 } /* Name.Tag */
|
||||
.highlight .nv { color: #d4d2c8 } /* Name.Variable */
|
||||
.highlight .ow { color: #FFAD66 } /* Operator.Word */
|
||||
.highlight .pm { color: #d4d2c8 } /* Punctuation.Marker */
|
||||
.highlight .w { color: #d4d2c8 } /* Text.Whitespace */
|
||||
.highlight .mb { color: #DFBFFF } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #DFBFFF } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #DFBFFF } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #DFBFFF } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #DFBFFF } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #F29E74 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #D5FF80 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #D5FF80 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #D5FF80 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #7e8aa1 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #D5FF80 } /* Literal.String.Double */
|
||||
.highlight .se { color: #95E6CB } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #D5FF80 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #95E6CB } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #95E6CB } /* Literal.String.Other */
|
||||
.highlight .sr { color: #95E6CB } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #D5FF80 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #DFBFFF } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #5CCFE6 } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #FFD173 } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #d4d2c8 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #d4d2c8 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #d4d2c8 } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #d4d2c8 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #DFBFFF } /* Literal.Number.Integer.Long */
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
.highlight code,.highlight pre{color:#fdce93;background-color:#3f3f3f;padding:10px;}.highlight .hll{background-color:#222}.highlight .c{color:#7f9f7f}.highlight .err{color:#e37170;background-color:#3d3535}.highlight .g{color:#7f9f7f}.highlight .k{color:#f0dfaf}.highlight .l{color:#ccc}.highlight .n{color:#dcdccc}.highlight .o{color:#f0efd0}.highlight .x{color:#ccc}.highlight .p{color:#41706f}.highlight .cm{color:#7f9f7f}.highlight .cp{color:#7f9f7f}.highlight .c1{color:#7f9f7f}.highlight .cs{color:#cd0000;font-weight:bold}.highlight .gd{color:#cd0000}.highlight .ge{color:#ccc;font-style:italic}.highlight .gr{color:red}.highlight .gh{color:#dcdccc;font-weight:bold}.highlight .gi{color:#00cd00}.highlight .go{color:gray}.highlight .gp{color:#dcdccc;font-weight:bold}.highlight .gs{color:#ccc;font-weight:bold}.highlight .gu{color:purple;font-weight:bold}.highlight .gt{color:#0040D0}.highlight .kc{color:#dca3a3}.highlight .kd{color:#ffff86}.highlight .kn{color:#dfaf8f;font-weight:bold}.highlight .kp{color:#cdcf99}.highlight .kr{color:#cdcd00}.highlight .kt{color:#00cd00}.highlight .ld{color:#cc9393}.highlight .m{color:#8cd0d3}.highlight .s{color:#cc9393}.highlight .na{color:#9ac39f}.highlight .nb{color:#efef8f}.highlight .nc{color:#efef8f}.highlight .no{color:#ccc}.highlight .nd{color:#ccc}.highlight .ni{color:#c28182}.highlight .ne{color:#c3bf9f;font-weight:bold}.highlight .nf{color:#efef8f}.highlight .nl{color:#ccc}.highlight .nn{color:#8fbede}.highlight .nx{color:#ccc}.highlight .py{color:#ccc}.highlight .nt{color:#9ac39f}.highlight .nv{color:#dcdccc}.highlight .ow{color:#f0efd0}.highlight .w{color:#ccc}.highlight .mf{color:#8cd0d3}.highlight .mh{color:#8cd0d3}.highlight .mi{color:#8cd0d3}.highlight .mo{color:#8cd0d3}.highlight .sb{color:#cc9393}.highlight .sc{color:#cc9393}.highlight .sd{color:#cc9393}.highlight .s2{color:#cc9393}.highlight .se{color:#cc9393}.highlight .sh{color:#cc9393}.highlight .si{color:#cc9393}.highlight .sx{color:#cc9393}.highlight .sr{color:#cc9393}.highlight .s1{color:#cc9393}.highlight .ss{color:#cc9393}.highlight .bp{color:#efef8f}.highlight .vc{color:#efef8f}.highlight .vg{color:#dcdccc}.highlight .vi{color:#ffffc7}.highlight .il{color:#8cd0d3}
|
||||
|
||||
+3
-3
File diff suppressed because one or more lines are too long
Vendored
+2
-2
File diff suppressed because one or more lines are too long
+13
-34
@@ -3,23 +3,14 @@
|
||||
<head>
|
||||
<title>{% block title %}{{ SITENAME }}{%endblock%}</title>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="stylesheet" href="/theme/css/colorbox.css">
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/{{ CSS_FILE }}" type="text/css" />
|
||||
<link href="{{ SITEURL }}/{{ FEED_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} ATOM Feed" />
|
||||
{% if FEED_RSS %}
|
||||
<link href="{{ SITEURL }}/{{ FEED_RSS }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} RSS Feed" />
|
||||
{% endif %}
|
||||
|
||||
<!--[if IE]>
|
||||
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
||||
|
||||
<!--[if lte IE 7]>
|
||||
<link rel="stylesheet" type="text/css" media="all" href="{{ SITEURL }}/css/ie.css"/>
|
||||
<script src="{{ SITEURL }}/js/IE8.js" type="text/javascript"></script><![endif]-->
|
||||
|
||||
<!--[if lt IE 7]>
|
||||
<link rel="stylesheet" type="text/css" media="all" href="{{ SITEURL }}/css/ie6.css"/><![endif]-->
|
||||
|
||||
{% block scripts %}
|
||||
{% endblock %}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@@ -31,26 +22,15 @@
|
||||
<span class="description">{{ DESCRIPTION }} </span>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="{{ SITEURL }}/index.html">Home</a></li>
|
||||
<li><a href="{{ SITEURL }}/posts.html">Articles</a></li>
|
||||
<li><a href="https://portfolio.one-button.org/">Photography</a></li>
|
||||
<li><a href="{{ SITEURL }}/about.html">About</a></li>
|
||||
{% if categories|length > 1 %}
|
||||
<!-- <li><a href="{{ SITEURL }}/categories.html">Categories</a></li>
|
||||
<!-- <li><a href="{{ SITEURL }}/categories.html">Categories</a></li>
|
||||
{% endif %}
|
||||
{% if tags|length > 1 %}
|
||||
<li><a href="{{ SITEURL }}/tags.html">Tags</a></li>
|
||||
{% endif %} -->
|
||||
{% endif %} -->
|
||||
<br />
|
||||
<!--
|
||||
<li>Galleries:</li>
|
||||
{% for page in pages %}
|
||||
{% if page.title != "About" and page.title !="Welcome" %}
|
||||
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a>{% if not loop.last %}{% endif %}</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<br />
|
||||
-->
|
||||
<li>{{ LINKS_WIDGET_NAME | default('links') }}</li>
|
||||
{% for name, link in LINKS %}
|
||||
<li><a href="{{ link }}">{{ name }}</a></li>
|
||||
@@ -61,22 +41,21 @@
|
||||
<span class="feed"><a href="{{ SITEURL }}/{{ FEED_RSS }}">RSS</a> | <a href="{{ SITEURL }}/{{ FEED_ATOM }}">Atom</a></span>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
|
||||
<div id="credits">
|
||||
<span>Powered by <a href="https://www.debian.org/" target="_blank">Debian GNU/Linux</a> and <a href="https://blog.getpelican.com/" target="_blank">Pelican</a>.</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{% include 'analytics.html' %}
|
||||
{% include 'piwik.html' %}
|
||||
{% include 'disqus_script.html' %}
|
||||
<script src="/theme/js/jquery.min.js"></script>
|
||||
<!-- <script src="/theme/js/jquery.min.js"></script>
|
||||
<script src="/theme/js/jquery.colorbox-min.js"></script>
|
||||
<script src="/theme/js/load-colorbox.js"></script>
|
||||
|
||||
<script src="/theme/js/load-colorbox.js"></script> -->
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
|
||||
<div id="credits">
|
||||
<span><p>© Leander Hutton | <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/" target="_blank">Creative Commons BY-NC-SA 4.0</a> | Powered by <a href="https://www.debian.org/" target="_blank">Debian GNU/Linux</a> and <a href="https://blog.getpelican.com/" target="_blank">Pelican</a>.</p></span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
{% if articles %}
|
||||
|
||||
<header>
|
||||
<h1><a href="{{ SITEURL }}" id="site-title"> {# {{ SITENAME }} #} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> {#:#}</h1>
|
||||
{% for article in articles_page.object_list %}
|
||||
<h1><a href="{{ SITEURL }}/{{ article.url }}" id="page-title">{{ article.title }}</a></h1>
|
||||
{% if not HIDE_DATE %}<b><time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time></b>{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user