Migrate to Zola
288
static/assets/css/style.css
Normal file
|
|
@ -0,0 +1,288 @@
|
|||
@font-face {
|
||||
font-family: 'Mononoki';
|
||||
src: url('../fonts/Mononoki.ttf'), format('truetype');
|
||||
}
|
||||
|
||||
#theme {
|
||||
background-color: #f1e9e5;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
html {
|
||||
font-family: 'Mononoki', monospace;
|
||||
}
|
||||
|
||||
* { margin: 0px; }
|
||||
|
||||
.header-art {
|
||||
color: #888
|
||||
}
|
||||
|
||||
#user-controls {
|
||||
display: grid;
|
||||
grid-template-columns: 8fr 1fr;
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
nav {
|
||||
justify-self: start;
|
||||
}
|
||||
|
||||
#language-selector {
|
||||
justify-self: end;
|
||||
margin-top: 7px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
#nav-menu #home {
|
||||
color: #353;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#nav-menu li {
|
||||
display: inline-block;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
#skip-to-main {
|
||||
position: absolute;
|
||||
left: -1000%;
|
||||
}
|
||||
|
||||
#skip-to-main:focus {
|
||||
left: 40%;
|
||||
background-color: #333;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#posts {
|
||||
margin-left: 20px;
|
||||
margin-top: 20px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.index-posts h2 {
|
||||
margin-top: 80px;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin-top: 5px;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
ol {
|
||||
margin-top: 5px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: 10px;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
ul li:before {
|
||||
content: "▫";
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
nav ul li:before {
|
||||
content: "";
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 30px;
|
||||
line-height: 1.7em;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline dotted #999;
|
||||
text-decoration-thickness: 1.5px;
|
||||
color: #276E6B;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #007F80;
|
||||
text-decoration: underline dotted #39959A;
|
||||
transition: 1500ms;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 25px;
|
||||
font-weight: bold;
|
||||
color: #444;
|
||||
margin: 40px 0px 10px 0px;
|
||||
}
|
||||
|
||||
h2,h3,h4 {
|
||||
font-weight: bold;
|
||||
margin: 20px 0px 10px 30px;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
h2 { font-size: 25px; }
|
||||
h3 { font-size: 21px; }
|
||||
h4 { font-size: 21px; color: #59978b; }
|
||||
|
||||
.article p {
|
||||
margin: 25px 0px;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
p code {
|
||||
background-color: #ccc;
|
||||
padding: 5px 6.5px;
|
||||
margin-right: 2px;
|
||||
border-radius: 6px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
li code {
|
||||
background-color: #ccc;
|
||||
padding: 5px 8px;
|
||||
border-radius: 6px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
color: #333;
|
||||
background-color: #ddd;
|
||||
padding: 10px 10px;
|
||||
margin: 10px 20px;
|
||||
font-style: italic;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
main pre {
|
||||
margin: 30px;
|
||||
border-color: #fff;
|
||||
padding: 20px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
blockquote p code {
|
||||
color: #222;
|
||||
}
|
||||
|
||||
table {
|
||||
text-align: center;
|
||||
margin: 30px;
|
||||
border: 1px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table th, td {
|
||||
border: 1px dotted;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.footer-text {
|
||||
padding: 20px 20px;
|
||||
}
|
||||
|
||||
.footer-back {
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* tablet */
|
||||
@media (min-width: 401px) {
|
||||
.article {
|
||||
margin: 0 45px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin-left: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
.post-date {
|
||||
color: #777;
|
||||
font-size: 14px;
|
||||
margin-top: 0px;
|
||||
text-decoration-thickness: 0.1px;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
#theme {
|
||||
background-color: #222222;
|
||||
color: #F1E9E5;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #AEDBCE;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #39AEA9;
|
||||
}
|
||||
|
||||
h1,h2,h3 {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
h4 {
|
||||
color: #6a978b;
|
||||
}
|
||||
|
||||
p code {
|
||||
background-color: #444;
|
||||
}
|
||||
|
||||
li code {
|
||||
background-color: #444;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
color: #888;
|
||||
background-color: #1b1b1b;
|
||||
}
|
||||
|
||||
blockquote p code {
|
||||
color: #bbb;
|
||||
}
|
||||
|
||||
.post-date {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
#nav-menu #home {
|
||||
color: #aaa;
|
||||
}
|
||||
}
|
||||
|
||||
/* widescreen */
|
||||
@media (min-width: 1000px) {
|
||||
.article {
|
||||
margin: 0 20%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin-left: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
/* fullscreen */
|
||||
@media (min-width: 1500px) {
|
||||
.article {
|
||||
margin: 0 30%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin-left: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
/* phone */
|
||||
@media (max-width: 400px) {
|
||||
.article {
|
||||
margin: 0 20px;
|
||||
}
|
||||
}
|
||||
265
static/assets/css/syntax-dark.css
Normal file
|
|
@ -0,0 +1,265 @@
|
|||
/*
|
||||
* theme "Material-Theme-Darker" generated by syntect
|
||||
*/
|
||||
|
||||
.z-code {
|
||||
color: #eeffff;
|
||||
background-color: #292929;
|
||||
}
|
||||
|
||||
.z-comment, .z-punctuation.z-definition.z-comment {
|
||||
color: #7f7f7f;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-variable, .z-string .z-constant.z-other.z-placeholder {
|
||||
color: #eeffff;
|
||||
}
|
||||
.z-constant.z-other.z-color {
|
||||
color: #ffffff;
|
||||
}
|
||||
.z-invalid, .z-invalid.z-illegal, .z-invalid.z-broken {
|
||||
color: #ffffff;
|
||||
background-color: #ff5370;
|
||||
}
|
||||
.z-invalid.z-unimplemented {
|
||||
color: #ffffff;
|
||||
background-color: #aacaba;
|
||||
}
|
||||
.z-invalid.z-deprecated {
|
||||
color: #ffffff;
|
||||
background-color: #c792ea;
|
||||
}
|
||||
.z-keyword, .z-storage.z-type, .z-storage.z-modifier {
|
||||
color: #c792ea;
|
||||
}
|
||||
.z-storage.z-type, .z-keyword.z-control {
|
||||
font-style: italic;
|
||||
}
|
||||
.z-keyword.z-operator, .z-constant.z-other.z-color, .z-punctuation, .z-meta.z-tag, .z-punctuation.z-definition.z-tag, .z-punctuation.z-separator.z-inheritance.z-php, .z-punctuation.z-definition.z-tag.z-html, .z-punctuation.z-definition.z-tag.z-begin.z-html, .z-punctuation.z-definition.z-tag.z-end.z-html, .z-punctuation.z-section.z-embedded, .z-keyword.z-other.z-template, .z-keyword.z-other.z-substitution {
|
||||
color: #aaaaff;
|
||||
}
|
||||
.z-entity.z-name.z-tag, .z-meta.z-tag.z-sgml, .z-markup.z-deleted.z-git_gutter {
|
||||
color: #f07178;
|
||||
}
|
||||
.z-entity.z-name.z-function, .z-meta.z-function-call, .z-variable.z-function, .z-support.z-function, .z-keyword.z-other.z-special-method, .z-meta.z-block-level {
|
||||
color: #aaaaaf;
|
||||
}
|
||||
.z-support.z-other.z-variable, .z-string.z-other.z-link {
|
||||
color: #f07178;
|
||||
}
|
||||
.z-constant.z-numeric, .z-constant.z-language, .z-support.z-constant, .z-constant.z-character, .z-variable.z-parameter, .z-keyword.z-other.z-unit {
|
||||
color: #6f67fe;
|
||||
}
|
||||
.z-string, .z-constant.z-other.z-symbol, .z-constant.z-other.z-key, .z-entity.z-other.z-inherited-class, .z-markup.z-heading, .z-markup.z-inserted.z-git_gutter, .z-meta.z-group.z-braces.z-curly .z-constant.z-other.z-object.z-key.z-js .z-string.z-unquoted.z-label.z-js {
|
||||
color: #aacaba;
|
||||
}
|
||||
.z-entity.z-name.z-class, .z-entity.z-name.z-type.z-class, .z-support.z-type, .z-support.z-class, .z-support.z-orther.z-namespace.z-use.z-php, .z-meta.z-use.z-php, .z-support.z-other.z-namespace.z-php, .z-markup.z-changed.z-git_gutter, .z-support.z-type.z-sys-types {
|
||||
color: #ffcb6b;
|
||||
}
|
||||
.z-source.z-css .z-support.z-type, .z-source.z-sass .z-support.z-type, .z-source.z-scss .z-support.z-type, .z-source.z-less .z-support.z-type, .z-source.z-stylus .z-support.z-type {
|
||||
color: #b2ccd6;
|
||||
}
|
||||
.z-entity.z-name.z-module.z-js, .z-variable.z-import.z-parameter.z-js, .z-variable.z-other.z-class.z-js {
|
||||
color: #ff5370;
|
||||
}
|
||||
.z-variable.z-language {
|
||||
color: #ff5370;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-entity.z-name.z-method.z-js {
|
||||
color: #82aaff;
|
||||
}
|
||||
.z-meta.z-class-method.z-js .z-entity.z-name.z-function.z-js, .z-variable.z-function.z-constructor {
|
||||
color: #82aaff;
|
||||
}
|
||||
.z-entity.z-other.z-attribute-name {
|
||||
color: #c792ea;
|
||||
}
|
||||
.z-text.z-html.z-basic .z-entity.z-other.z-attribute-name.z-html, .z-text.z-html.z-basic .z-entity.z-other.z-attribute-name {
|
||||
color: #ffcb6b;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-entity.z-other.z-attribute-name.z-class {
|
||||
color: #ffcb6b;
|
||||
}
|
||||
.z-source.z-sass .z-keyword.z-control {
|
||||
color: #82aaff;
|
||||
}
|
||||
.z-markup.z-inserted {
|
||||
color: #aacaba;
|
||||
}
|
||||
.z-markup.z-deleted {
|
||||
color: #ff5370;
|
||||
}
|
||||
.z-markup.z-changed {
|
||||
color: #c792ea;
|
||||
}
|
||||
.z-string.z-regexp {
|
||||
color: #89ddff;
|
||||
}
|
||||
.z-constant.z-character.z-escape {
|
||||
color: #89ddff;
|
||||
}
|
||||
.z-*url*, .z-*link*, .z-*uri* {
|
||||
text-decoration: underline;
|
||||
}
|
||||
.z-constant.z-numeric.z-line-number.z-find-in-files {
|
||||
color: #c17e70;
|
||||
}
|
||||
.z-entity.z-name.z-filename.z-find-in-files {
|
||||
color: #aacaba;
|
||||
}
|
||||
.z-tag.z-decorator.z-js .z-entity.z-name.z-tag.z-js, .z-tag.z-decorator.z-js .z-punctuation.z-definition.z-tag.z-js {
|
||||
color: #82aaff;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-source.z-js .z-constant.z-other.z-object.z-key.z-js .z-string.z-unquoted.z-label.z-js {
|
||||
color: #ff5370;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-source.z-json .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-string.z-quoted.z-double.z-json, .z-source.z-json .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-punctuation.z-definition.z-string {
|
||||
color: #aacaba;
|
||||
}
|
||||
.z-source.z-json .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-string.z-quoted.z-double.z-json, .z-source.z-json .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-punctuation.z-definition.z-string {
|
||||
color: #c792ea;
|
||||
}
|
||||
.z-source.z-json .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-string.z-quoted.z-double.z-json, .z-source.z-json .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-punctuation.z-definition.z-string {
|
||||
color: #f07178;
|
||||
}
|
||||
.z-source.z-json .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-string.z-quoted.z-double.z-json, .z-source.z-json .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-punctuation.z-definition.z-string {
|
||||
color: #82aaff;
|
||||
}
|
||||
.z-source.z-json .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-string.z-quoted.z-double.z-json, .z-source.z-json .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-punctuation.z-definition.z-string {
|
||||
color: #c17e70;
|
||||
}
|
||||
.z-source.z-json .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-string.z-quoted.z-double.z-json, .z-source.z-json .z-meta .z-meta .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-punctuation.z-definition.z-string {
|
||||
color: #ff5370;
|
||||
}
|
||||
.z-source.z-json .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-string.z-quoted.z-double.z-json, .z-source.z-json .z-meta .z-meta .z-meta .z-meta.z-structure.z-dictionary.z-json .z-punctuation.z-definition.z-string {
|
||||
color: #f78c6c;
|
||||
}
|
||||
.z-source.z-json .z-meta .z-meta.z-structure.z-dictionary.z-json .z-string.z-quoted.z-double.z-json, .z-source.z-json .z-meta .z-meta.z-structure.z-dictionary.z-json .z-punctuation.z-definition.z-string {
|
||||
color: #ffcb6b;
|
||||
}
|
||||
.z-source.z-json .z-meta.z-structure.z-dictionary.z-json .z-string.z-quoted.z-double.z-json, .z-source.z-json .z-meta.z-structure.z-dictionary.z-json .z-punctuation.z-definition.z-string {
|
||||
color: #c792ea;
|
||||
}
|
||||
.z-text.z-html.z-markdown, .z-punctuation.z-definition.z-list_item.z-markdown {
|
||||
color: #eeffff;
|
||||
}
|
||||
.z-text.z-html.z-markdown .z-markup.z-raw.z-inline {
|
||||
color: #c792ea;
|
||||
}
|
||||
.z-text.z-html.z-markdown .z-punctuation.z-definition.z-raw.z-markdown {
|
||||
color: #65737e;
|
||||
}
|
||||
.z-markdown.z-heading, .z-markup.z-heading, .z-markup.z-heading .z-entity.z-name, .z-markup.z-heading.z-markdown .z-punctuation.z-definition.z-heading.z-markdown {
|
||||
color: #aacaba;
|
||||
}
|
||||
.z-markup.z-italic {
|
||||
color: #f07178;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-markup.z-bold, .z-markup.z-bold .z-string {
|
||||
color: #f07178;
|
||||
font-weight: bold;
|
||||
}
|
||||
.z-markup.z-bold .z-markup.z-italic, .z-markup.z-italic .z-markup.z-bold, .z-markup.z-quote .z-markup.z-bold, .z-markup.z-bold .z-markup.z-italic .z-string, .z-markup.z-italic .z-markup.z-bold .z-string, .z-markup.z-quote .z-markup.z-bold .z-string {
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-markup.z-underline {
|
||||
color: #f78c6c;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.z-markup.z-quote .z-punctuation.z-definition.z-blockquote.z-markdown {
|
||||
color: #65737e;
|
||||
background-color: #65737e;
|
||||
}
|
||||
.z-string.z-other.z-link.z-title.z-markdown {
|
||||
color: #82aaff;
|
||||
}
|
||||
.z-string.z-other.z-link.z-description.z-title.z-markdown {
|
||||
color: #c792ea;
|
||||
}
|
||||
.z-constant.z-other.z-reference.z-link.z-markdown {
|
||||
color: #ffcb6b;
|
||||
}
|
||||
.z-markup.z-raw.z-block {
|
||||
color: #c792ea;
|
||||
}
|
||||
.z-markup.z-raw.z-block.z-fenced.z-markdown {
|
||||
background-color: #000000;
|
||||
}
|
||||
.z-punctuation.z-definition.z-fenced.z-markdown {
|
||||
background-color: #000000;
|
||||
}
|
||||
.z-markup.z-raw.z-block.z-fenced.z-markdown, .z-variable.z-language.z-fenced.z-markdown, .z-punctuation.z-section.z-class.z-end {
|
||||
color: #eeffff;
|
||||
}
|
||||
.z-variable.z-language.z-fenced.z-markdown {
|
||||
color: #65737e;
|
||||
}
|
||||
.z-text.z-html.z-markdown .z-punctuation.z-definition {
|
||||
color: #4a4a4a;
|
||||
}
|
||||
.z-text.z-html.z-markdown .z-meta.z-disable-markdown .z-punctuation.z-definition {
|
||||
color: #89ddff;
|
||||
}
|
||||
.z-meta.z-separator {
|
||||
color: #65737e;
|
||||
background-color: #000000;
|
||||
font-weight: bold;
|
||||
}
|
||||
.z-acejump.z-label.z-blue {
|
||||
color: #ffffff;
|
||||
background-color: #82aaff;
|
||||
}
|
||||
.z-acejump.z-label.z-green {
|
||||
color: #ffffff;
|
||||
background-color: #aacaba;
|
||||
}
|
||||
.z-acejump.z-label.z-orange {
|
||||
color: #ffffff;
|
||||
background-color: #f78c6c;
|
||||
}
|
||||
.z-acejump.z-label.z-purple {
|
||||
color: #ffffff;
|
||||
background-color: #c792ea;
|
||||
}
|
||||
.z-sublimelinter.z-mark.z-warning {
|
||||
color: #ffcb6b;
|
||||
}
|
||||
.z-sublimelinter.z-gutter-mark {
|
||||
color: #ffffff;
|
||||
}
|
||||
.z-sublimelinter.z-mark.z-error {
|
||||
color: #ff5370;
|
||||
}
|
||||
.z-sublimelinter.z-annotations {
|
||||
background-color: #c17e70;
|
||||
}
|
||||
.z-markup.z-ignored.z-git_gutter {
|
||||
color: #65737e;
|
||||
}
|
||||
.z-markup.z-untracked.z-git_gutter {
|
||||
color: #65737e;
|
||||
}
|
||||
.z-markup.z-inserted.z-git_gutter {
|
||||
color: #aacaba;
|
||||
}
|
||||
.z-markup.z-changed.z-git_gutter {
|
||||
color: #ffcb6b;
|
||||
}
|
||||
.z-markup.z-deleted.z-git_gutter {
|
||||
color: #ff5370;
|
||||
}
|
||||
.z-brackethighlighter.z-default {
|
||||
color: #b2ccd6;
|
||||
}
|
||||
.z-brackethighlighter.z-quote {
|
||||
color: #aacaba;
|
||||
}
|
||||
.z-brackethighlighter.z-unmatched {
|
||||
color: #ff5370;
|
||||
}
|
||||
61
static/assets/css/syntax-light.css
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
/*
|
||||
* theme "Dimmed Fluid" generated by syntect
|
||||
*/
|
||||
|
||||
.z-code {
|
||||
color: #4d4d4c;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.z-comment {
|
||||
color: #999999;
|
||||
}
|
||||
.z-keyword.z-operator.z-class, .z-constant.z-other, .z-source.z-php.z-embedded.z-line {
|
||||
color: #666666;
|
||||
}
|
||||
.z-variable, .z-support.z-other.z-variable, .z-string.z-other.z-link, .z-string.z-regexp, .z-entity.z-name.z-tag, .z-entity.z-other.z-attribute-name, .z-meta.z-tag, .z-declaration.z-tag {
|
||||
color: #77c;
|
||||
}
|
||||
.z-constant.z-numeric, .z-constant.z-language, .z-support.z-constant, .z-constant.z-character, .z-variable.z-parameter, .z-punctuation.z-section.z-embedded, .z-keyword.z-other.z-unit {
|
||||
color: #b77;
|
||||
}
|
||||
.z-entity.z-name.z-class, .z-entity.z-name.z-type.z-class, .z-support.z-type, .z-support.z-class {
|
||||
color: #f0ae00;
|
||||
}
|
||||
.z-string, .z-constant.z-other.z-symbol, .z-entity.z-other.z-inherited-class, .z-markup.z-heading {
|
||||
color: #699200;
|
||||
}
|
||||
.z-keyword.z-operator, .z-constant.z-other.z-color {
|
||||
color: #1aa7b0;
|
||||
}
|
||||
.z-entity.z-name.z-function, .z-meta.z-function-call, .z-support.z-function, .z-keyword.z-other.z-special-method, .z-meta.z-block-level {
|
||||
color: #777;
|
||||
}
|
||||
.z-keyword, .z-storage, .z-storage.z-type {
|
||||
color: #8e44be;
|
||||
}
|
||||
.z-meta.z-separator {
|
||||
color: #ffffff;
|
||||
background-color: #2169c7;
|
||||
}
|
||||
.z-invalid.z-deprecated {
|
||||
color: #ffffff;
|
||||
background-color: #8e44be;
|
||||
}
|
||||
.z-markup.z-inserted.z-diff, .z-markup.z-deleted.z-diff, .z-meta.z-diff.z-header.z-to-file, .z-meta.z-diff.z-header.z-from-file {
|
||||
color: #ffffff;
|
||||
}
|
||||
.z-markup.z-inserted.z-diff, .z-meta.z-diff.z-header.z-to-file {
|
||||
background-color: #008f00;
|
||||
}
|
||||
.z-markup.z-deleted.z-diff, .z-meta.z-diff.z-header.z-from-file {
|
||||
background-color: #ef0000;
|
||||
}
|
||||
.z-meta.z-diff.z-header.z-from-file, .z-meta.z-diff.z-header.z-to-file {
|
||||
color: #ffffff;
|
||||
background-color: #333333;
|
||||
}
|
||||
.z-meta.z-diff.z-range {
|
||||
color: #333333;
|
||||
font-style: italic;
|
||||
}
|
||||
94
static/assets/fonts/Mononoki.LICENSE
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
Copyright (c) 2022, Matthias Tellen matthias.tellen@googlemail.com,
|
||||
with Reserved Font Name mononoki.
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||
BIN
static/assets/fonts/Mononoki.ttf
Normal file
51
static/assets/img/icon/icon.svg
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="128"
|
||||
height="128"
|
||||
viewBox="0 0 6 6"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="favicon.svg"
|
||||
inkscape:export-filename="favicon.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.8780367"
|
||||
inkscape:cx="56.44192"
|
||||
inkscape:cy="47.922385"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="741"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<circle
|
||||
style="fill:#483737;fill-rule:evenodd;stroke-width:0.046875"
|
||||
id="path897"
|
||||
cx="3"
|
||||
cy="3"
|
||||
r="2.901917" />
|
||||
<path
|
||||
fill="#000000"
|
||||
fill-rule="evenodd"
|
||||
d="m 3.0016204,1.6398895 c -0.330319,0 -0.363351,0.035041 -0.5343133,0.035041 -0.1423944,0 -0.5700235,-0.3488437 -0.7836149,-0.3488437 -0.2138146,0 -0.4631162,0.1256552 -0.4631162,0.4883365 V 2.2329015 C 1.2210224,2.34271 1.2607503,2.6792784 1.4169819,2.5893335 1.2324051,2.8076119 1.2138804,3.0622699 1.2163354,3.3086701 1.1665645,3.3229539 1.1159003,3.3392468 1.066576,3.3559863 0.91391508,3.408212 0.75188026,3.4747226 0.67889763,3.5220385 A 0.16739867,0.16739867 0 0 0 0.86057297,3.8032557 C 0.89539086,3.7807138 1.021492,3.7251395 1.1748224,3.6726904 l 0.050887,-0.016739 c 0.010262,0.096641 0.035934,0.1852464 0.074099,0.2655943 l -0.00535,0.0029 C 1.2029445,3.972656 1.1181325,4.0282296 1.064121,4.0634934 L 1.0389,4.0800084 a 0.16739867,0.16739867 0 1 0 0.1816753,0.2812175 l 0.029238,-0.019194 c 0.054681,-0.03571 0.1247624,-0.081464 0.2010929,-0.1216376 0.017856,-0.0096 0.035041,-0.018078 0.051556,-0.025891 0.3861161,0.3622348 1.0795628,0.4794089 1.4991573,0.4794089 0.4195944,0 1.113041,-0.1171741 1.4991571,-0.4794089 0.016515,0.00781 0.033478,0.016293 0.051556,0.025891 0.07633,0.040173 0.1464117,0.085928 0.2010928,0.1216376 l 0.029238,0.019194 A 0.16739867,0.16739867 0 0 0 4.96434,4.0800095 L 4.93912,4.0634935 A 2.9032361,2.9032361 0 0 0 4.7087892,3.9244471 l -0.00535,-0.0029 c 0.038158,-0.080347 0.063824,-0.1689531 0.074091,-0.2655938 l 0.050887,0.016739 C 4.9817492,3.7251405 5.1078507,3.780714 5.1428913,3.803256 A 0.16739138,0.16739138 0 0 0 5.324343,3.5220382 C 5.2513604,3.4747222 5.0893256,3.408212 4.9368879,3.355986 A 3.6475698,3.6475698 0 0 0 4.7869052,3.3084468 C 4.7895834,3.0620466 4.7708356,2.8076118 4.5860356,2.5893334 4.7422675,2.6792783 4.7824415,2.3427101 4.7826646,2.2326782 V 1.8144229 c 0,-0.3626813 -0.2493016,-0.4883365 -0.4631161,-0.4883365 -0.2135914,0 -0.6412205,0.3488437 -0.7833917,0.3488437 -0.1711855,0 -0.2042175,-0.035041 -0.5345364,-0.035041 z M 2.8509681,3.6918846 c 0.045085,-0.0154 0.098426,-0.022319 0.1506523,-0.022319 0.052226,0 0.1055685,0.00691 0.1508754,0.022319 0.022319,0.00759 0.049101,0.019641 0.073205,0.038835 a 0.13815369,0.13815369 0 0 1 0.054905,0.1062378 c 0,0.051334 -0.031023,0.087043 -0.054905,0.1062378 -0.023881,0.019194 -0.051109,0.031246 -0.073205,0.038835 A 0.47985529,0.47985529 0 0 1 3.0016204,4.0043485 0.4776234,0.4776234 0 0 1 2.8509681,3.9820296 0.2405972,0.2405972 0 0 1 2.7775391,3.9431948 0.13815369,0.13815369 0 0 1 2.7226348,3.8369571 c 0,-0.051334 0.031023,-0.087043 0.054905,-0.1062378 0.02388,-0.019194 0.051334,-0.031246 0.073428,-0.038835 z M 3.4859394,3.0000003 c 0.030577,-0.050887 0.090614,-0.1115943 0.1807827,-0.1115943 0.090169,0 0.150429,0.060707 0.1807827,0.1115943 0.031693,0.053342 0.04687,0.1176203 0.04687,0.1814522 0,0.063609 -0.015177,0.127887 -0.04687,0.1810059 -0.030354,0.051109 -0.090614,0.1118174 -0.1807827,0.1118174 -0.090169,0 -0.1502059,-0.060707 -0.1807827,-0.1115942 a 0.35620886,0.35620886 0 0 1 -0.04687,-0.1814523 c 0,-0.063608 0.015177,-0.127887 0.04687,-0.1810058 z m -1.3302035,0 c 0.030577,-0.050887 0.090614,-0.1115943 0.1807827,-0.1115943 0.090169,0 0.1504291,0.060707 0.1807828,0.1115943 0.031693,0.053342 0.04687,0.1176203 0.04687,0.1814522 0,0.063609 -0.015177,0.127887 -0.04687,0.1810059 -0.030354,0.051109 -0.090614,0.1118174 -0.1807828,0.1118174 -0.090168,0 -0.1502058,-0.060707 -0.1807827,-0.1115942 a 0.35620886,0.35620886 0 0 1 -0.04687,-0.1814523 c 0,-0.063608 0.015177,-0.127887 0.04687,-0.1810058 z"
|
||||
clip-rule="evenodd"
|
||||
id="path2"
|
||||
style="stroke-width:0.223188;fill:#ffffff" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
BIN
static/assets/img/icon/icon_16.png
Normal file
|
After Width: | Height: | Size: 449 B |
BIN
static/assets/img/icon/icon_192.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
static/assets/img/icon/icon_260.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
static/assets/img/icon/icon_32.png
Normal file
|
After Width: | Height: | Size: 845 B |
BIN
static/assets/img/posts/void-on-zfs/desk.jpg
Normal file
|
After Width: | Height: | Size: 152 KiB |
BIN
static/assets/img/posts/void-on-zfs/duo.jpg
Normal file
|
After Width: | Height: | Size: 152 KiB |
BIN
static/assets/img/posts/void-on-zfs/karu-inside.jpg
Normal file
|
After Width: | Height: | Size: 151 KiB |
BIN
static/assets/img/posts/void-on-zfs/notes.jpg
Normal file
|
After Width: | Height: | Size: 135 KiB |
19
static/assets/rss/en.rss
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
|
||||
<channel>
|
||||
<title>jutty.dev</title>
|
||||
<link>http://blog.jutty.dev</link>
|
||||
<description>Just computer nerd things</description>
|
||||
<language>en</language>
|
||||
<atom:link href="http://blog.jutty.dev/assets/rss/en.xml" rel="self" type="application/rss+xml"/>
|
||||
<lastBuildDate>Sun, 18 Aug 2024 00:00:00 +0000</lastBuildDate>
|
||||
<item>
|
||||
<title>The jutty.dev feed has moved</title>
|
||||
<pubDate>Sun, 18 Aug 2024 15:52:11 +0000</pubDate>
|
||||
<author>Juno Takano</author>
|
||||
<link>http://blog.jutty.dev/en/rss.xml</link>
|
||||
<guid>http://blog.jutty.dev/en/rss.xml</guid>
|
||||
<description xml:base="http://blog.jutty.dev/en/rss.xml">This RSS feed has moved to: blog.jutty.dev/rss.xml. More feed options are available at blog.jutty.dev/feeds. Update your RSS reader to continue receiving new entries.</description>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
19
static/assets/rss/pt.rss
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
|
||||
<channel>
|
||||
<title>jutty.dev</title>
|
||||
<link>http://blog.jutty.dev</link>
|
||||
<description>Nerdices, unix, computarias</description>
|
||||
<language>pt</language>
|
||||
<atom:link href="http://blog.jutty.dev/pt/rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<lastBuildDate>Sun, 18 Aug 2024 00:00:00 +0000</lastBuildDate>
|
||||
<item>
|
||||
<title>O feed para jutty.dev mudou</title>
|
||||
<pubDate>Sun, 18 Aug 2024 15:52:11 +0000</pubDate>
|
||||
<author>Juno Takano</author>
|
||||
<link>http://blog.jutty.dev/pt/rss.xml</link>
|
||||
<guid>http://blog.jutty.dev/pt/rss.xml</guid>
|
||||
<description xml:base="http://blog.jutty.dev/pt/rss.xml">O endereço deste feed RSS mudou para: blog.jutty.dev/pt/rss.xml. Mais opções de feeds estão disponíveis em blog.jutty.dev/pt/feeds (Português) e blog.jutty.dev/feeds (Inglês). Atualize seu leitor de RSS para continuar recebendo atualizações.</description>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||