From 28dd784a088a35739cdfdc4ce79f8ee6d50bf816 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Tue, 22 Oct 2019 03:40:14 +0200 Subject: Cleanup of repo and move to gostatic --- src/static/avatar-512x512.png | Bin 0 -> 244569 bytes src/static/avatar-64x64.png | Bin 0 -> 16769 bytes src/static/style.css | 116 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 116 insertions(+) create mode 100644 src/static/avatar-512x512.png create mode 100644 src/static/avatar-64x64.png create mode 100644 src/static/style.css (limited to 'src/static') diff --git a/src/static/avatar-512x512.png b/src/static/avatar-512x512.png new file mode 100644 index 0000000..fc34eee Binary files /dev/null and b/src/static/avatar-512x512.png differ diff --git a/src/static/avatar-64x64.png b/src/static/avatar-64x64.png new file mode 100644 index 0000000..1406f46 Binary files /dev/null and b/src/static/avatar-64x64.png differ diff --git a/src/static/style.css b/src/static/style.css new file mode 100644 index 0000000..efb65c0 --- /dev/null +++ b/src/static/style.css @@ -0,0 +1,116 @@ +body { + line-height: 150%; + margin-bottom: 100px; +} + +main { + max-width: 680px; + padding: 20px 30px; +} + +nav { + margin-bottom: 50px; +} + +nav a { + display: inline-block; + margin-right: 20px; +} + +h1 { + font-size: 280%; + line-height: initial; +} + +h2 { + font-size: 200%; + line-height: initial; +} + +h3 { + font-size: 160%; + line-height: initial; +} + +img { + max-width: 100%; + margin: 30px auto; + display: block; +} + +ul.article-list li { + margin-bottom: 10px; +} + +ul.article-list time { + display: inline-block; + min-width: 120px; +} + +article .info { + font-style: oblique; +} + +pre { + overflow: auto; +} + +table { + width: 100%; +} + +table, th, td { + border: 1px solid black; + text-align: left; +} + +th, td { + padding: 5px 10px; +} + +::selection { + background: #ff0; + color: #000; +} + +::-moz-selection { + background: #ff0; + color: #000; +} + +@media only screen and (max-width:480px) { + nav { + text-align: center; + margin-bottom: initial; + } + + nav a { + margin-bottom: 10px; + } + + ul.article-list { + padding-left: 20px; + + } + + ul.article-list li { + margin-bottom: 20px; + + } + + ul.article-list a { + display: block; + } + + h1 { + font-size: 220%; + } + + h2 { + font-size: 180%; + } + + h3 { + font-size: 160%; + } +} -- cgit v1.2.3