Added navigation bar and relative page title
Made baseof layout and deleted public build.
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
|
public/*
|
||||||
themes/base16*
|
themes/base16*
|
||||||
|
|
||||||
commit-msg.txt
|
commit-msg.txt
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: "{{ replace .Name "-" " " | title }}"
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
date: {{ .Date }}
|
date: {{ .Date }}
|
||||||
draft: true
|
draft: false
|
||||||
layout:
|
layout:
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# baseURL = "file:///home/kevin/coding/mf-site/public/"
|
# baseURL = "http://localhost:1313/"
|
||||||
baseURL = "https://kevin-mok.gitlab.io/my-site-hugo"
|
baseURL = "https://kevin-mok.gitlab.io/my-site-hugo/"
|
||||||
languageCode = "en-us"
|
languageCode = "en-us"
|
||||||
title = "Kevin Mok"
|
title = "Kevin Mok"
|
||||||
# theme = "base16"
|
# theme = "base16"
|
||||||
|
|||||||
8
content/_index.md
Normal file
8
content/_index.md
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
date: 2019-01-31T03:10:25-05:00
|
||||||
|
draft: false
|
||||||
|
layout: baseof
|
||||||
|
---
|
||||||
|
<!-- title: "/ home / kevin-mok" -->
|
||||||
|
<!-- title: "/ home / kevin" -->
|
||||||
|
<!-- title: "[ ~ ]" -->
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: "Credits"
|
title: "Credits"
|
||||||
date: 2019-01-31T03:10:25-05:00
|
date: 2019-01-31T03:10:25-05:00
|
||||||
draft: true
|
draft: false
|
||||||
layout: article
|
layout: single
|
||||||
---
|
---
|
||||||
<span>
|
<span>
|
||||||
Icons made by <a href="https://www.freepik.com/"
|
Icons made by <a href="https://www.freepik.com/"
|
||||||
6
ideas.md
Normal file
6
ideas.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
- refactor single/list into baseof
|
||||||
|
- i3-like nav. bar
|
||||||
|
- symbols
|
||||||
|
- blog
|
||||||
|
- about?
|
||||||
|
- work
|
||||||
8
layouts/_default/baseof.html
Normal file
8
layouts/_default/baseof.html
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{{ partial "header.html" . }}
|
||||||
|
|
||||||
|
{{ partial "hero.html" . }}
|
||||||
|
|
||||||
|
{{ block "main" . }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ partial "footer.html" . }}
|
||||||
@@ -1,8 +1,10 @@
|
|||||||
{{ partial "header.html" . }}
|
{{ define "main" }}
|
||||||
<main role="main" class="article-list">
|
|
||||||
|
<!-- <main role="main" class="article-list">
|
||||||
<h1 class="list-title">{{ .Title }}</h1>
|
<h1 class="list-title">{{ .Title }}</h1>
|
||||||
{{ range .Data.Pages }}
|
{{ range .Data.Pages }}
|
||||||
{{ partial "article-list-item.html" . }}
|
{{ partial "article-list-item.html" . }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</main>
|
</main> -->
|
||||||
{{ partial "footer.html" . }}
|
|
||||||
|
{{ end }}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{{ partial "header.html" . }}
|
{{ define "main" }}
|
||||||
|
|
||||||
<main role="main" class="article">
|
<main role="main" class="article">
|
||||||
{{ partial "article.html" . }}
|
{{ partial "article.html" . }}
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
{{ partial "footer.html" . }}
|
{{ end }}
|
||||||
|
|||||||
5
layouts/credits.html
Normal file
5
layouts/credits.html
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
|
||||||
|
{{ .Content }}
|
||||||
|
|
||||||
|
{{ end }}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
{{ partial "header.html" . }}
|
{{ partial "header.html" . }}
|
||||||
|
|
||||||
{{ partial "homepage.html" . }}
|
<!-- {{ partial "homepage.html" . }} -->
|
||||||
|
|
||||||
{{ partial "footer.html" . }}
|
{{ partial "footer.html" . }}
|
||||||
@@ -1,18 +1,26 @@
|
|||||||
{{ $page := .Page }}
|
{{ $page := .Page }}
|
||||||
<article class="single" itemscope itemtype="http://schema.org/BlogPosting">
|
<article class="single" itemscope itemtype="http://schema.org/BlogPosting">
|
||||||
<div class="meta">
|
<div class="meta">
|
||||||
|
<!-- published -->
|
||||||
|
|
||||||
{{ if not .Page.Date.IsZero }}
|
{{ if not .Page.Date.IsZero }}
|
||||||
<span class="key">published on</span>
|
<!-- <span class="key">published </span> -->
|
||||||
<span class="val"><time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "January 02, 2006" }}</time></span>
|
<span class="val"><time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "January 02, 2006" }}</time></span>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ with .Params.categories }}
|
{{ with .Params.categories }}
|
||||||
<span class="key">{{ if $page.Date.IsZero }}published {{ end }}in</span>
|
<span class="key">{{ if $page.Date.IsZero }}published {{ end }}in</span>
|
||||||
<span class="val">
|
<span class="val">
|
||||||
|
|
||||||
|
<!-- published -->
|
||||||
|
|
||||||
{{ range . }}
|
{{ range . }}
|
||||||
<a href="{{ . | printf "categories/%s" | relURL }}">{{ . }}</a>
|
<a href="{{ . | printf "categories/%s" | relURL }}">{{ . }}</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ with .Params.tags }}
|
{{ with .Params.tags }}
|
||||||
<br>
|
<br>
|
||||||
<span class="key">tags:</span>
|
<span class="key">tags:</span>
|
||||||
@@ -22,6 +30,7 @@
|
|||||||
{{ end }}
|
{{ end }}
|
||||||
</span>
|
</span>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<h1 class="headline" itemprop="headline">{{ .Title }}</h1>
|
<h1 class="headline" itemprop="headline">{{ .Title }}</h1>
|
||||||
<section class="body" itemprop="articleBody">
|
<section class="body" itemprop="articleBody">
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
<span class="copyright">
|
<span class="copyright">
|
||||||
© {{ now.Year }} {{ .Site.Title }} · <a rel="license"
|
© {{ now.Year }} {{ .Site.Title }} · <a rel="license"
|
||||||
href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a> ·
|
href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a> ·
|
||||||
<a href="/credits">Credits</a>
|
<a href="{{ "credits" | relURL }}">Credits</a>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -16,13 +16,22 @@
|
|||||||
<!-- <link rel="stylesheet" href="https://meyerweb.com/eric/tools/css/reset/reset.css" type="text/css" media="all" /> -->
|
<!-- <link rel="stylesheet" href="https://meyerweb.com/eric/tools/css/reset/reset.css" type="text/css" media="all" /> -->
|
||||||
<link rel="stylesheet" href="{{ "css/style.css" | relURL }}" type="text/css">
|
<link rel="stylesheet" href="{{ "css/style.css" | relURL }}" type="text/css">
|
||||||
<link rel="alternate" href="{{ "index.xml" | relURL }}" type="application/rss+xml" title="{{ .Site.Title }}">
|
<link rel="alternate" href="{{ "index.xml" | relURL }}" type="application/rss+xml" title="{{ .Site.Title }}">
|
||||||
<title>{{ $isHomePage := eq .Title .Site.Title }}{{ .Title }}{{ if eq $isHomePage false }} - {{ .Site.Title }}{{ end }}</title>
|
<!-- <title>
|
||||||
|
{{ $isHomePage := eq .Title .Site.Title }}
|
||||||
|
{{ .Title }}
|
||||||
|
{{ if eq $isHomePage false }} -
|
||||||
|
{{ .Site.Title }}
|
||||||
|
{{ end }}</title> -->
|
||||||
|
<title>
|
||||||
|
~{{ .Page.RelPermalink }} · {{ .Site.Title }}
|
||||||
|
</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<!-- <header>
|
<!-- <header>
|
||||||
<div class="container clearfix">
|
<div class="container clearfix">
|
||||||
<a class="path" href="{{ .Site.BaseURL }}">[{{ .Site.Title }}]</a>
|
[><a class="path" href="{{ .Site.BaseURL }}">[{{ .Site.Title }}]</a><]
|
||||||
|
<a class="path" href="{{ .Site.BaseURL }}">[~]</a>
|
||||||
<span class="caret"># _</span>
|
<span class="caret"># _</span>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
{{ range $i, $page := (where .Site.Pages "Section" "pages") }}
|
{{ range $i, $page := (where .Site.Pages "Section" "pages") }}
|
||||||
|
|||||||
@@ -9,15 +9,33 @@
|
|||||||
class="base0a">i</span><span class="base0b">n </span><span
|
class="base0a">i</span><span class="base0b">n </span><span
|
||||||
class="base0c">M</span><span class="base0d">o</span><span
|
class="base0c">M</span><span class="base0d">o</span><span
|
||||||
class="base0e">k</span><span
|
class="base0e">k</span><span
|
||||||
class="base05">]</span> <span class="base05"># _</span>
|
class="base05">]</span> <span class="base05"># _</span>
|
||||||
<!-- <span class="base0d">6</span> -->
|
<!-- <span class="base0d">6</span> -->
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
|
<div class="container clearfix nav-bar">
|
||||||
|
[ <a class="path" href="{{ .Site.BaseURL }}">~</a> /
|
||||||
|
<a class="path" href="{{ .Page.Permalink }}">{{ .Page.Dir }}</a>
|
||||||
|
|
||||||
|
]
|
||||||
|
<span class="caret"># _</span>
|
||||||
|
<div class="right">
|
||||||
|
{{ range $i, $page := (where .Site.Pages "Section" "pages") }}
|
||||||
|
{{ if not (eq $i 0) }}|{{ end }}
|
||||||
|
<a class="path" href="{{ $page.RelPermalink }}">{{ $page.Title }}</a>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="hero-logo">
|
<div class="hero-logo">
|
||||||
<img src="{{ "img/base16-eighties.svg" | relURL }}">
|
<img src="{{ "img/base16-eighties.svg" | relURL }}">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="text-align: center;">
|
<!-- <div style="text-align: center;"> -->
|
||||||
|
<div class="hero-tagline">
|
||||||
<!-- Add your own "<code>layouts/partials/hero.html</code>" to replace this text. -->
|
<!-- Add your own "<code>layouts/partials/hero.html</code>" to replace this text. -->
|
||||||
Live, love and Linux.
|
Live, love and Linux.
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
{{ $baseurl := .Site.BaseURL }}
|
{{ $baseurl := .Site.BaseURL }}
|
||||||
<main role="main" class="homepage">
|
<main role="main" class="homepage">
|
||||||
|
|
||||||
{{ partial "hero.html" . }}
|
|
||||||
|
|
||||||
<!-- {{ partial "about.html" . }} -->
|
<!-- {{ partial "about.html" . }} -->
|
||||||
|
|
||||||
<!-- <h1 class="headline">Recent Posts</h1>
|
<!-- <h1 class="headline">Recent Posts</h1>
|
||||||
|
|||||||
@@ -1,52 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-us">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="generator" content="Hugo 0.53" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
|
|
||||||
<link rel='stylesheet' href='//cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack-subset.css'>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="/home/kevin/coding/mf-site/public/css/style.css" type="text/css">
|
|
||||||
<link rel="alternate" href="/home/kevin/coding/mf-site/public/index.xml" type="application/rss+xml" title="Kevin Mok">
|
|
||||||
<title>404 Page not found - Kevin Mok</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<main role="main" class="page-not-found">
|
|
||||||
|
|
||||||
<h1>
|
|
||||||
<span class="base05">[</span><span class="base08">4</span><span class="base09">0</span><span class="base0a">4</span><span class="base05">]</span>
|
|
||||||
<span class="base05"># _</span>
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
<h2>
|
|
||||||
not found
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
<span class="copyright">
|
|
||||||
© 2019 Kevin Mok · <a rel="license"
|
|
||||||
href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a> ·
|
|
||||||
<a href="/credits">Credits</a>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-us">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="generator" content="Hugo 0.53" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
|
|
||||||
<link rel='stylesheet' href='//cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack-subset.css'>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="/home/kevin/coding/mf-site/public/css/style.css" type="text/css">
|
|
||||||
<link rel="alternate" href="/home/kevin/coding/mf-site/public/index.xml" type="application/rss+xml" title="Kevin Mok">
|
|
||||||
<title>Categories - Kevin Mok</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
<main role="main" class="article-list">
|
|
||||||
<h1 class="list-title">Categories</h1>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
<span class="copyright">
|
|
||||||
© 2019 Kevin Mok · <a rel="license"
|
|
||||||
href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a> ·
|
|
||||||
<a href="/credits">Credits</a>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Categories on Kevin Mok</title>
|
|
||||||
<link>file:///home/kevin/coding/mf-site/public/categories/</link>
|
|
||||||
<description>Recent content in Categories on Kevin Mok</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>en-us</language>
|
|
||||||
|
|
||||||
<atom:link href="file:///home/kevin/coding/mf-site/public/categories/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,500 +0,0 @@
|
|||||||
/* Base16 Eighties Colorscheme by Chris Kempson (http://chriskempson.com) */
|
|
||||||
|
|
||||||
.base00 { color: #2d2d2d; }
|
|
||||||
.base01 { color: #393939; }
|
|
||||||
.base02 { color: #515151; }
|
|
||||||
.base03 { color: #747369; }
|
|
||||||
.base04 { color: #a09f93; }
|
|
||||||
.base05 { color: #d3d0c8; }
|
|
||||||
.base06 { color: #e8e6df; }
|
|
||||||
.base07 { color: #f2f0ec; }
|
|
||||||
.base08 { color: #f2777a; }
|
|
||||||
.base09 { color: #f99157; }
|
|
||||||
.base0a { color: #ffcc66; }
|
|
||||||
.base0b { color: #99cc99; }
|
|
||||||
.base0c { color: #66cccc; }
|
|
||||||
.base0d { color: #6699cc; }
|
|
||||||
.base0e { color: #cc99cc; }
|
|
||||||
.base0f { color: #d27b53; }
|
|
||||||
|
|
||||||
/* General Page Layout */
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
background-color: #2d2d2d;
|
|
||||||
color: #f2f0ec;
|
|
||||||
line-height: 1.5;
|
|
||||||
font-size: 100%;
|
|
||||||
/* font-family: 'Source Code Pro', monospace; */
|
|
||||||
font-family: 'Hack', monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
.container {
|
|
||||||
max-width: 52em;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.right {
|
|
||||||
float:right;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.clearfix {
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
|
||||||
.container {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single section,
|
|
||||||
.article-list article {
|
|
||||||
background-color: #f2f0ec;
|
|
||||||
color: #2d2d2d;
|
|
||||||
padding-left: 8rem;
|
|
||||||
padding-right: 8rem;
|
|
||||||
padding-top: 1rem;
|
|
||||||
padding-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
|
||||||
article.single section,
|
|
||||||
.article-list article {
|
|
||||||
padding-left: 2rem;
|
|
||||||
padding-right: 2rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
header, footer {
|
|
||||||
/* background-color: #393939; */
|
|
||||||
padding-top: 1rem;
|
|
||||||
padding-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
|
||||||
margin-top: 1rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
|
||||||
header {
|
|
||||||
margin-top: 0;
|
|
||||||
padding-left: 2rem;
|
|
||||||
padding-right: 2rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
footer {
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: .5rem;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 0.9em;
|
|
||||||
color: #747369;
|
|
||||||
bottom: 0;
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
|
||||||
footer {
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
footer .container {
|
|
||||||
background-color: #393939;
|
|
||||||
max-width: 62em;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
height: 1.8em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Typography */
|
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
|
||||||
font-weight: bold;
|
|
||||||
line-height: 1.25;
|
|
||||||
margin-top: 1em;
|
|
||||||
margin-bottom: .5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 { font-size: 2rem }
|
|
||||||
h2 { font-size: 1.5rem }
|
|
||||||
h3 { font-size: 1.25rem }
|
|
||||||
h4 { font-size: 1rem }
|
|
||||||
h5 { font-size: .875rem }
|
|
||||||
h6 { font-size: .75rem }
|
|
||||||
|
|
||||||
pre, code {
|
|
||||||
font-family: inherit;
|
|
||||||
font-size: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Header Layout */
|
|
||||||
|
|
||||||
header a.path {
|
|
||||||
color: #6699cc;
|
|
||||||
}
|
|
||||||
|
|
||||||
header span.caret {
|
|
||||||
color: #f2f0ec;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Footer Layout */
|
|
||||||
|
|
||||||
footer a {
|
|
||||||
color: #747369;
|
|
||||||
/* text-decoration: none; */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 404 Page Layout */
|
|
||||||
|
|
||||||
.page-not-found h1 {
|
|
||||||
text-align: center;
|
|
||||||
font-size: 5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.page-not-found h2 {
|
|
||||||
text-align: center;
|
|
||||||
font-size: 3em;
|
|
||||||
color: #a09f93;
|
|
||||||
margin-bottom: 4rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
|
||||||
.page-not-found h1 {
|
|
||||||
font-size: 3em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.page-not-found h2 {
|
|
||||||
font-size: 2em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Homepage Layout */
|
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
|
||||||
.homepage {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.homepage h1.site-title {
|
|
||||||
text-align: center;
|
|
||||||
/* font-size: 3.5em; */
|
|
||||||
font-size: 4.8em;
|
|
||||||
color: #66cccc;
|
|
||||||
margin-top: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
|
||||||
.homepage h1.site-title {
|
|
||||||
font-size: 3em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.homepage h1.headline {
|
|
||||||
font-size: 3em;
|
|
||||||
color: #ffcc66;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
|
||||||
.homepage h1.headline {
|
|
||||||
padding-left: 2rem;
|
|
||||||
padding-right: 2rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.homepage .hero-logo img {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.homepage section.categories,
|
|
||||||
.homepage section.tags {
|
|
||||||
padding-left: 2rem;
|
|
||||||
padding-right: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.homepage .category,
|
|
||||||
.homepage .category a,
|
|
||||||
.homepage .tag,
|
|
||||||
.homepage .tag a {
|
|
||||||
color: #cc99cc;
|
|
||||||
}
|
|
||||||
|
|
||||||
.homepage .tag {
|
|
||||||
margin-right: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Post List Layout */
|
|
||||||
|
|
||||||
.article-list h1.list-title {
|
|
||||||
font-size: 3em;
|
|
||||||
color: #ffcc66;
|
|
||||||
}
|
|
||||||
|
|
||||||
.article-list article {
|
|
||||||
padding-top: 4rem;
|
|
||||||
padding-bottom: 4rem;
|
|
||||||
margin-bottom: 4rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.article-list article h2.headline,
|
|
||||||
.article-list article h2.headline a {
|
|
||||||
margin-top: 0;
|
|
||||||
color: #6699cc;
|
|
||||||
}
|
|
||||||
|
|
||||||
.article-list article .meta {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.article-list article .meta .key {
|
|
||||||
color: #747369;
|
|
||||||
}
|
|
||||||
|
|
||||||
.article-list article .meta .val,
|
|
||||||
.article-list article .meta .val a {
|
|
||||||
color: #cc99cc;
|
|
||||||
}
|
|
||||||
|
|
||||||
.article-list article section.summary a { color: #d27b53; }
|
|
||||||
|
|
||||||
|
|
||||||
/* Single Post Layout */
|
|
||||||
|
|
||||||
article.single .meta {
|
|
||||||
font-size: 0.9em;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single .meta .key {
|
|
||||||
color: #747369;
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single .meta .val, article.single .meta .val a {
|
|
||||||
color: #cc99cc;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
|
||||||
article.single .meta {
|
|
||||||
padding-left: 2rem;
|
|
||||||
padding-right: 2rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single h1.headline {
|
|
||||||
margin-top: 0;
|
|
||||||
font-size: 3em;
|
|
||||||
color: #ffcc66;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
|
||||||
article.single h1.headline {
|
|
||||||
padding-left: 2rem;
|
|
||||||
padding-right: 2rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single section.body {
|
|
||||||
padding-top: 4rem;
|
|
||||||
padding-bottom: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
|
||||||
article.single section.body {
|
|
||||||
padding-top: 2rem;
|
|
||||||
padding-bottom: 1rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Highlight Colors */
|
|
||||||
|
|
||||||
article.single section.body h1 { color: #6699cc; }
|
|
||||||
article.single section.body h2 { color: #99cc99; }
|
|
||||||
article.single section.body h3 { color: #f99157; }
|
|
||||||
article.single section.body h4 { color: #f2777a; }
|
|
||||||
article.single section.body h5 { color: #515151; }
|
|
||||||
article.single section.body h6 { color: #747369; }
|
|
||||||
|
|
||||||
article.single section.body a { color: #d27b53; }
|
|
||||||
|
|
||||||
/* Article Elements */
|
|
||||||
|
|
||||||
article.single * {
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single pre {
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
overflow-x: scroll;
|
|
||||||
border-radius: 3px;
|
|
||||||
padding: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single p code {
|
|
||||||
padding: 0.2em 0.5em;
|
|
||||||
border-radius: 3px;
|
|
||||||
background: #747369;
|
|
||||||
color: #f2f0ec;
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single figure, article.single div.highlight {
|
|
||||||
box-sizing: border-box;
|
|
||||||
max-width: 52rem;
|
|
||||||
width: 52rem;
|
|
||||||
margin-left: -8rem;
|
|
||||||
margin-right: -8rem;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
padding: 1em;
|
|
||||||
background-color: #393939;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
|
||||||
article.single figure, article.single div.highlight {
|
|
||||||
width: 100%;
|
|
||||||
margin-left: 0;
|
|
||||||
margin-right: 0;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single figure img {
|
|
||||||
max-width: 100%;
|
|
||||||
width: 100%;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single figure figcaption {
|
|
||||||
margin-top: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single figure figcaption h4 {
|
|
||||||
margin-top: 0;
|
|
||||||
text-align: center;
|
|
||||||
font-style: italic;
|
|
||||||
font-weight: normal;
|
|
||||||
color: #f2f0ec;
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single table {
|
|
||||||
border-collapse: separate;
|
|
||||||
border-spacing: 0;
|
|
||||||
max-width: 100%;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single th,
|
|
||||||
article.single td {
|
|
||||||
padding: .25rem 1rem;
|
|
||||||
line-height: inherit;
|
|
||||||
border-bottom-width: 1px;
|
|
||||||
border-bottom-style: solid;
|
|
||||||
border-bottom-color: #a09f93;
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single tr:last-child td {
|
|
||||||
border-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single th {
|
|
||||||
text-align: left;
|
|
||||||
font-weight: bold;
|
|
||||||
vertical-align: bottom;
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single td { vertical-align: top }
|
|
||||||
|
|
||||||
article.single blockquote {
|
|
||||||
margin-left: 2rem;
|
|
||||||
margin-right: 3rem;
|
|
||||||
padding-left: 1rem;
|
|
||||||
border-left: 5px solid #66cccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
article.single hr {
|
|
||||||
border: 0;
|
|
||||||
border-bottom-style: solid;
|
|
||||||
border-bottom-width: 1px;
|
|
||||||
border-bottom-color: #a09f93;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Pygments template by Jan T. Sott (https://github.com/idleberg) */
|
|
||||||
|
|
||||||
pre { background: #2d2d2d; color: #f2f0ec }
|
|
||||||
|
|
||||||
.highlight .hll { background-color: #515151 }
|
|
||||||
.highlight .c { color: #747369 } /* Comment */
|
|
||||||
.highlight .err { color: #f2777a } /* Error */
|
|
||||||
.highlight .k { color: #cc99cc } /* Keyword */
|
|
||||||
.highlight .l { color: #f99157 } /* Literal */
|
|
||||||
.highlight .n { color: #f2f0ec } /* Name */
|
|
||||||
.highlight .o { color: #66cccc } /* Operator */
|
|
||||||
.highlight .p { color: #f2f0ec } /* Punctuation */
|
|
||||||
.highlight .cm { color: #747369 } /* Comment.Multiline */
|
|
||||||
.highlight .cp { color: #747369 } /* Comment.Preproc */
|
|
||||||
.highlight .c1 { color: #747369 } /* Comment.Single */
|
|
||||||
.highlight .cs { color: #747369 } /* Comment.Special */
|
|
||||||
.highlight .gd { color: #f2777a } /* Generic.Deleted */
|
|
||||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
|
||||||
.highlight .gh { color: #f2f0ec; font-weight: bold } /* Generic.Heading */
|
|
||||||
.highlight .gi { color: #99cc99 } /* Generic.Inserted */
|
|
||||||
.highlight .gp { color: #747369; font-weight: bold } /* Generic.Prompt */
|
|
||||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
|
||||||
.highlight .gu { color: #66cccc; font-weight: bold } /* Generic.Subheading */
|
|
||||||
.highlight .kc { color: #cc99cc } /* Keyword.Constant */
|
|
||||||
.highlight .kd { color: #cc99cc } /* Keyword.Declaration */
|
|
||||||
.highlight .kn { color: #66cccc } /* Keyword.Namespace */
|
|
||||||
.highlight .kp { color: #cc99cc } /* Keyword.Pseudo */
|
|
||||||
.highlight .kr { color: #cc99cc } /* Keyword.Reserved */
|
|
||||||
.highlight .kt { color: #ffcc66 } /* Keyword.Type */
|
|
||||||
.highlight .ld { color: #99cc99 } /* Literal.Date */
|
|
||||||
.highlight .m { color: #f99157 } /* Literal.Number */
|
|
||||||
.highlight .s { color: #99cc99 } /* Literal.String */
|
|
||||||
.highlight .na { color: #6699cc } /* Name.Attribute */
|
|
||||||
.highlight .nb { color: #f2f0ec } /* Name.Builtin */
|
|
||||||
.highlight .nc { color: #ffcc66 } /* Name.Class */
|
|
||||||
.highlight .no { color: #f2777a } /* Name.Constant */
|
|
||||||
.highlight .nd { color: #66cccc } /* Name.Decorator */
|
|
||||||
.highlight .ni { color: #f2f0ec } /* Name.Entity */
|
|
||||||
.highlight .ne { color: #f2777a } /* Name.Exception */
|
|
||||||
.highlight .nf { color: #6699cc } /* Name.Function */
|
|
||||||
.highlight .nl { color: #f2f0ec } /* Name.Label */
|
|
||||||
.highlight .nn { color: #ffcc66 } /* Name.Namespace */
|
|
||||||
.highlight .nx { color: #6699cc } /* Name.Other */
|
|
||||||
.highlight .py { color: #f2f0ec } /* Name.Property */
|
|
||||||
.highlight .nt { color: #66cccc } /* Name.Tag */
|
|
||||||
.highlight .nv { color: #f2777a } /* Name.Variable */
|
|
||||||
.highlight .ow { color: #66cccc } /* Operator.Word */
|
|
||||||
.highlight .w { color: #f2f0ec } /* Text.Whitespace */
|
|
||||||
.highlight .mf { color: #f99157 } /* Literal.Number.Float */
|
|
||||||
.highlight .mh { color: #f99157 } /* Literal.Number.Hex */
|
|
||||||
.highlight .mi { color: #f99157 } /* Literal.Number.Integer */
|
|
||||||
.highlight .mo { color: #f99157 } /* Literal.Number.Oct */
|
|
||||||
.highlight .sb { color: #99cc99 } /* Literal.String.Backtick */
|
|
||||||
.highlight .sc { color: #f2f0ec } /* Literal.String.Char */
|
|
||||||
.highlight .sd { color: #747369 } /* Literal.String.Doc */
|
|
||||||
.highlight .s2 { color: #99cc99 } /* Literal.String.Double */
|
|
||||||
.highlight .se { color: #f99157 } /* Literal.String.Escape */
|
|
||||||
.highlight .sh { color: #99cc99 } /* Literal.String.Heredoc */
|
|
||||||
.highlight .si { color: #f99157 } /* Literal.String.Interpol */
|
|
||||||
.highlight .sx { color: #99cc99 } /* Literal.String.Other */
|
|
||||||
.highlight .sr { color: #99cc99 } /* Literal.String.Regex */
|
|
||||||
.highlight .s1 { color: #99cc99 } /* Literal.String.Single */
|
|
||||||
.highlight .ss { color: #99cc99 } /* Literal.String.Symbol */
|
|
||||||
.highlight .bp { color: #f2f0ec } /* Name.Builtin.Pseudo */
|
|
||||||
.highlight .vc { color: #f2777a } /* Name.Variable.Class */
|
|
||||||
.highlight .vg { color: #f2777a } /* Name.Variable.Global */
|
|
||||||
.highlight .vi { color: #f2777a } /* Name.Variable.Instance */
|
|
||||||
.highlight .il { color: #f99157 } /* Literal.Number.Integer.Long */
|
|
||||||
|
|
||||||
/*# sourceMappingURL=style.css.map */
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<svg width="800" height="50" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g>
|
|
||||||
<title>Base16 Eighties</title>
|
|
||||||
<line id="base00" x1="025" y1="0" x2="025" y2="720" stroke-width="50" stroke="#2d2d2d" />
|
|
||||||
<line id="base01" x1="075" y1="0" x2="075" y2="720" stroke-width="50" stroke="#393939" />
|
|
||||||
<line id="base02" x1="125" y1="0" x2="125" y2="720" stroke-width="50" stroke="#515151" />
|
|
||||||
<line id="base03" x1="175" y1="0" x2="175" y2="720" stroke-width="50" stroke="#747369" />
|
|
||||||
<line id="base04" x1="225" y1="0" x2="225" y2="720" stroke-width="50" stroke="#a09f93" />
|
|
||||||
<line id="base05" x1="275" y1="0" x2="275" y2="720" stroke-width="50" stroke="#d3d0c8" />
|
|
||||||
<line id="base06" x1="325" y1="0" x2="325" y2="720" stroke-width="50" stroke="#e8e6df" />
|
|
||||||
<line id="base07" x1="375" y1="0" x2="375" y2="720" stroke-width="50" stroke="#f2f0ec" />
|
|
||||||
<line id="base08" x1="425" y1="0" x2="425" y2="720" stroke-width="50" stroke="#f2777a" />
|
|
||||||
<line id="base09" x1="475" y1="0" x2="475" y2="720" stroke-width="50" stroke="#f99157" />
|
|
||||||
<line id="base0A" x1="525" y1="0" x2="525" y2="720" stroke-width="50" stroke="#ffcc66" />
|
|
||||||
<line id="base0B" x1="575" y1="0" x2="575" y2="720" stroke-width="50" stroke="#99cc99" />
|
|
||||||
<line id="base0C" x1="625" y1="0" x2="625" y2="720" stroke-width="50" stroke="#66cccc" />
|
|
||||||
<line id="base0D" x1="675" y1="0" x2="675" y2="720" stroke-width="50" stroke="#6699cc" />
|
|
||||||
<line id="base0E" x1="725" y1="0" x2="725" y2="720" stroke-width="50" stroke="#cc99cc" />
|
|
||||||
<line id="base0F" x1="775" y1="0" x2="775" y2="720" stroke-width="50" stroke="#d27b53" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,75 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-us">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="generator" content="Hugo 0.53" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
|
|
||||||
<link rel='stylesheet' href='//cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack-subset.css'>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="/home/kevin/coding/mf-site/public/css/style.css" type="text/css">
|
|
||||||
<link rel="alternate" href="/home/kevin/coding/mf-site/public/index.xml" type="application/rss+xml" title="Kevin Mok">
|
|
||||||
<title>Kevin Mok</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<main role="main" class="homepage">
|
|
||||||
|
|
||||||
|
|
||||||
<h1 class="site-title">
|
|
||||||
|
|
||||||
<span class="base05">[</span><span class="base08">K</span><span
|
|
||||||
class="base0f">e</span><span class="base09">v</span><span
|
|
||||||
class="base0a">i</span><span class="base0b">n </span><span
|
|
||||||
class="base0c">M</span><span class="base0d">o</span><span
|
|
||||||
class="base0e">k</span><span
|
|
||||||
class="base05">]</span> <span class="base05"># _</span>
|
|
||||||
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
<div class="hero-logo">
|
|
||||||
<img src="/home/kevin/coding/mf-site/public/img/base16-eighties.svg">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div style="text-align: center;">
|
|
||||||
|
|
||||||
Live, love and Linux.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
<span class="copyright">
|
|
||||||
© 2019 Kevin Mok · <a rel="license"
|
|
||||||
href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a> ·
|
|
||||||
<a href="/credits">Credits</a>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kevin Mok</title>
|
|
||||||
<link>file:///home/kevin/coding/mf-site/public/</link>
|
|
||||||
<description>Recent content on Kevin Mok</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>en-us</language>
|
|
||||||
|
|
||||||
<atom:link href="file:///home/kevin/coding/mf-site/public/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
|
||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
||||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
|
||||||
|
|
||||||
<url>
|
|
||||||
<loc>file:///home/kevin/coding/mf-site/public/categories/</loc>
|
|
||||||
<priority>0</priority>
|
|
||||||
</url>
|
|
||||||
|
|
||||||
<url>
|
|
||||||
<loc>file:///home/kevin/coding/mf-site/public/</loc>
|
|
||||||
<priority>0</priority>
|
|
||||||
</url>
|
|
||||||
|
|
||||||
<url>
|
|
||||||
<loc>file:///home/kevin/coding/mf-site/public/tags/</loc>
|
|
||||||
<priority>0</priority>
|
|
||||||
</url>
|
|
||||||
|
|
||||||
</urlset>
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-us">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="generator" content="Hugo 0.53" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
|
|
||||||
<link rel='stylesheet' href='//cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack-subset.css'>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="/home/kevin/coding/mf-site/public/css/style.css" type="text/css">
|
|
||||||
<link rel="alternate" href="/home/kevin/coding/mf-site/public/index.xml" type="application/rss+xml" title="Kevin Mok">
|
|
||||||
<title>Tags - Kevin Mok</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
<main role="main" class="article-list">
|
|
||||||
<h1 class="list-title">Tags</h1>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
<span class="copyright">
|
|
||||||
© 2019 Kevin Mok · <a rel="license"
|
|
||||||
href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a> ·
|
|
||||||
<a href="/credits">Credits</a>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Tags on Kevin Mok</title>
|
|
||||||
<link>file:///home/kevin/coding/mf-site/public/tags/</link>
|
|
||||||
<description>Recent content in Tags on Kevin Mok</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>en-us</language>
|
|
||||||
|
|
||||||
<atom:link href="file:///home/kevin/coding/mf-site/public/tags/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -49,14 +49,20 @@ div.clearfix {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.article {
|
||||||
|
}
|
||||||
|
|
||||||
article.single section,
|
article.single section,
|
||||||
.article-list article {
|
.article-list article {
|
||||||
background-color: #f2f0ec;
|
/* background-color: #e6e6fa; */
|
||||||
|
background-color: #cbbeb5;
|
||||||
color: #2d2d2d;
|
color: #2d2d2d;
|
||||||
padding-left: 8rem;
|
padding-left: 8rem;
|
||||||
padding-right: 8rem;
|
padding-right: 8rem;
|
||||||
padding-top: 1rem;
|
padding-top: 1rem;
|
||||||
padding-bottom: 1rem;
|
padding-bottom: 1rem;
|
||||||
|
/* min-height: 50%; */
|
||||||
|
/* min-height: 30em; */
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
@media (max-width: 52em) {
|
||||||
@@ -67,15 +73,9 @@ article.single section,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
header, footer {
|
|
||||||
/* background-color: #393939; */
|
|
||||||
padding-top: 1rem;
|
|
||||||
padding-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
header {
|
||||||
margin-top: 1rem;
|
margin-top: 1.5rem;
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
@media (max-width: 52em) {
|
||||||
@@ -88,7 +88,7 @@ header {
|
|||||||
|
|
||||||
footer {
|
footer {
|
||||||
margin-top: 2rem;
|
margin-top: 2rem;
|
||||||
margin-bottom: .5rem;
|
margin-bottom: 1rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
color: #747369;
|
color: #747369;
|
||||||
@@ -140,7 +140,7 @@ pre, code {
|
|||||||
|
|
||||||
/* Header Layout */
|
/* Header Layout */
|
||||||
|
|
||||||
header a.path {
|
header a.path,a.path:visited {
|
||||||
color: #6699cc;
|
color: #6699cc;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -150,7 +150,12 @@ header span.caret {
|
|||||||
|
|
||||||
/* Footer Layout */
|
/* Footer Layout */
|
||||||
|
|
||||||
footer a {
|
footer a,a:visited {
|
||||||
|
color: #747369;
|
||||||
|
/* text-decoration: none; */
|
||||||
|
}
|
||||||
|
|
||||||
|
.container.copyright a,a:visited {
|
||||||
color: #747369;
|
color: #747369;
|
||||||
/* text-decoration: none; */
|
/* text-decoration: none; */
|
||||||
}
|
}
|
||||||
@@ -187,16 +192,17 @@ footer a {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.homepage h1.site-title {
|
h1.site-title {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
/* font-size: 3.5em; */
|
/* font-size: 3.5em; */
|
||||||
font-size: 4.8em;
|
font-size: 4.8em;
|
||||||
color: #66cccc;
|
color: #66cccc;
|
||||||
margin-top: 0.5em;
|
margin-top: 0.5em;
|
||||||
|
margin-bottom: 0.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 52em) {
|
@media (max-width: 52em) {
|
||||||
.homepage h1.site-title {
|
h1.site-title {
|
||||||
font-size: 3em;
|
font-size: 3em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -234,6 +240,16 @@ footer a {
|
|||||||
margin-right: 2em;
|
margin-right: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav-bar {
|
||||||
|
margin-left: .5em;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-tagline{
|
||||||
|
margin-top: .3em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
/* Post List Layout */
|
/* Post List Layout */
|
||||||
|
|
||||||
.article-list h1.list-title {
|
.article-list h1.list-title {
|
||||||
@@ -325,7 +341,7 @@ article.single section.body h4 { color: #f2777a; }
|
|||||||
article.single section.body h5 { color: #515151; }
|
article.single section.body h5 { color: #515151; }
|
||||||
article.single section.body h6 { color: #747369; }
|
article.single section.body h6 { color: #747369; }
|
||||||
|
|
||||||
article.single section.body a { color: #d27b53; }
|
article.single section.body a,a:visited { color: #a06700; }
|
||||||
|
|
||||||
/* Article Elements */
|
/* Article Elements */
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user