From c1f6a4b1100c241f1934bd845ce1493778e94f1e Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Sun, 14 May 2023 16:53:03 +0200 Subject: [PATCH] chore: add two static files The webfinger is my general Mastodon alias. I use sometimes the CSS files in my emails to stylize them a bit. --- .../public/.well-known/webfinger.json | 1 + content/.vuepress/public/css/email.css | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 content/.vuepress/public/.well-known/webfinger.json create mode 100644 content/.vuepress/public/css/email.css diff --git a/content/.vuepress/public/.well-known/webfinger.json b/content/.vuepress/public/.well-known/webfinger.json new file mode 100644 index 0000000..4626619 --- /dev/null +++ b/content/.vuepress/public/.well-known/webfinger.json @@ -0,0 +1 @@ +{"subject":"acct:phundrak@emacs.ch","aliases":["https://emacs.ch/@phundrak","https://emacs.ch/users/phundrak"],"links":[{"rel":"http://webfinger.net/rel/profile-page","type":"text/html","href":"https://emacs.ch/@phundrak"},{"rel":"self","type":"application/activity+json","href":"https://emacs.ch/users/phundrak"},{"rel":"http://ostatus.org/schema/1.0/subscribe","template":"https://emacs.ch/authorize_interaction?uri={uri}"}]} \ No newline at end of file diff --git a/content/.vuepress/public/css/email.css b/content/.vuepress/public/css/email.css new file mode 100644 index 0000000..53e1a0f --- /dev/null +++ b/content/.vuepress/public/css/email.css @@ -0,0 +1,18 @@ +body { + margin: 3em; +} + +body, code,p { + background: #e5e9f0 !important; + line-height: 1.4 !important; + color: #2E3440; + font-size: 16px !important; +} + +blockquote, blockquote p { + border-left-color: #3b4252; +} + +pre { + padding: 10px; +}