diff options
Diffstat (limited to 'themes/plaintext/static')
-rw-r--r-- | themes/plaintext/static/android-chrome-192x192.png | bin | 0 -> 7565 bytes | |||
-rw-r--r-- | themes/plaintext/static/android-chrome-512x512.png | bin | 0 -> 22440 bytes | |||
-rw-r--r-- | themes/plaintext/static/apple-touch-icon.png | bin | 0 -> 6696 bytes | |||
-rw-r--r-- | themes/plaintext/static/favicon-16x16.png | bin | 0 -> 439 bytes | |||
-rw-r--r-- | themes/plaintext/static/favicon-32x32.png | bin | 0 -> 874 bytes | |||
-rw-r--r-- | themes/plaintext/static/favicon.ico | bin | 0 -> 15406 bytes | |||
-rw-r--r-- | themes/plaintext/static/style.css | 88 |
7 files changed, 88 insertions, 0 deletions
diff --git a/themes/plaintext/static/android-chrome-192x192.png b/themes/plaintext/static/android-chrome-192x192.png Binary files differnew file mode 100644 index 0000000..f3b10f4 --- /dev/null +++ b/themes/plaintext/static/android-chrome-192x192.png diff --git a/themes/plaintext/static/android-chrome-512x512.png b/themes/plaintext/static/android-chrome-512x512.png Binary files differnew file mode 100644 index 0000000..2225036 --- /dev/null +++ b/themes/plaintext/static/android-chrome-512x512.png diff --git a/themes/plaintext/static/apple-touch-icon.png b/themes/plaintext/static/apple-touch-icon.png Binary files differnew file mode 100644 index 0000000..6d403d3 --- /dev/null +++ b/themes/plaintext/static/apple-touch-icon.png diff --git a/themes/plaintext/static/favicon-16x16.png b/themes/plaintext/static/favicon-16x16.png Binary files differnew file mode 100644 index 0000000..25de952 --- /dev/null +++ b/themes/plaintext/static/favicon-16x16.png diff --git a/themes/plaintext/static/favicon-32x32.png b/themes/plaintext/static/favicon-32x32.png Binary files differnew file mode 100644 index 0000000..933a4f2 --- /dev/null +++ b/themes/plaintext/static/favicon-32x32.png diff --git a/themes/plaintext/static/favicon.ico b/themes/plaintext/static/favicon.ico Binary files differnew file mode 100644 index 0000000..dfe2de7 --- /dev/null +++ b/themes/plaintext/static/favicon.ico diff --git a/themes/plaintext/static/style.css b/themes/plaintext/static/style.css new file mode 100644 index 0000000..e4bdb08 --- /dev/null +++ b/themes/plaintext/static/style.css @@ -0,0 +1,88 @@ +* { + box-sizing: border-box; +} + +body { + /* font-family: Verdana, Geneva, Tahoma, sans-serif; */ + font-family: courier, monospace; +} + +header { + max-width: 600px; + margin: 0 auto; +} + +hr { + border-style: dashed; + margin: 40px 0; +} + +pre { + background: #f5f5f5; + overflow-x: auto; + padding: 10px; + font-size: 14px; +} + +p>code, +li>code { + font-size: 14px; + font-weight: bold; +} + +table, +table tr th, +table tr td { + border-collapse: collapse; +} + +table tr th { + padding: .2rem .5rem; + background-color: #f5f5f5; + border: 1px solid black; +} + +table tr td { + padding: .2rem .5rem; + border: 1px solid black; +} + +.content { + max-width: 600px; + margin: 0 auto 40px auto; +} + +.post-title a { + color: inherit; + text-decoration: none; +} + + +.article--body { + line-height: 1.5; +} + +.pagination { + display: flex; + justify-content: center; + gap: 1rem; +} + +.pagination .page-item { + display: inline-block; +} + +@media (prefers-color-scheme: dark) { + body { + background: #212121; + color: white; + } + + a { + color: #69f; + } + + a:visited { + color: #96f; + } +} |