Compare commits
No commits in common. "ddbc45e875ce7e7742f81339ac217ed5de4e16d7" and "89287f7561fa16a8fb527011431e9c124b1f29c4" have entirely different histories.
ddbc45e875
...
89287f7561
4 changed files with 39 additions and 70 deletions
2
Rakefile
2
Rakefile
|
@ -46,7 +46,7 @@ end
|
|||
|
||||
desc "deploy site"
|
||||
task :deploy => [:build] do
|
||||
sh "rsync -az --delete ./_site/ srv.muhh.lol:/var/www/htdocs/muhh.lol/"
|
||||
sh "rsync -az --delete ./_site srv.muhh.lol:/var/www/htdocs/muhh.lol/"
|
||||
end
|
||||
|
||||
task :default => [:clean, :build, :serve]
|
||||
|
|
35
_config.yml
35
_config.yml
|
@ -39,35 +39,14 @@ collections:
|
|||
|
||||
rss_post_limit: 10000
|
||||
|
||||
feed:
|
||||
collections:
|
||||
posts:
|
||||
path: /feed.xml
|
||||
notes:
|
||||
path: /notes.xml
|
||||
|
||||
plugins:
|
||||
- jekyll-deploy
|
||||
- jekyll-feed
|
||||
- jekyll-redirect-from
|
||||
- jemoji
|
||||
|
||||
# Exclude from processing.
|
||||
# The following items will not be processed, by default.
|
||||
# Any item listed under the `exclude:` key here will be automatically added to
|
||||
# the internal "default list".
|
||||
#
|
||||
# Excluded items can be processed by explicitly listing the directories or
|
||||
# their entries' file path in the `include:` list.
|
||||
#
|
||||
# exclude:
|
||||
# - .sass-cache/
|
||||
# - .jekyll-cache/
|
||||
# - gemfiles/
|
||||
# - Gemfile
|
||||
# - Gemfile.lock
|
||||
# - node_modules/
|
||||
# - vendor/bundle/
|
||||
# - vendor/cache/
|
||||
# - vendor/gems/
|
||||
# - vendor/ruby/
|
||||
exclude:
|
||||
- Rakefile
|
||||
- README.md
|
||||
- Gemfile
|
||||
- Gemfile.lock
|
||||
- .jekyll-cache
|
||||
- .gitignore
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
---
|
||||
layout: default
|
||||
title: Note
|
||||
date: "2024-03-05 17:16"
|
||||
---
|
||||
|
||||
I used this place for some fun work to take my mind of the bad things in there and fiddled around a lot. Broke things. Created helpers. I'll drop the jekyll-feed plugin since it's having the wrong opinions, but creating my own rssplugin is a lot of fun actually.
|
||||
I've put [the site's code out](https://code.muhh.lol/muhh/muhh.lol) there as well.
|
|
@ -2,42 +2,40 @@
|
|||
---
|
||||
|
||||
:root {
|
||||
/* Light Mode */
|
||||
--backgroundColor: #EFF1F5; /* froth */
|
||||
--textColor: #4C4F69; /* text */
|
||||
--secondaryTextColor: #565A6E; /* overlay2 */
|
||||
--mutedTextColor: #727585; /* overlay1 */
|
||||
--subtleBackgroundColor: #E6E9EF; /* surface2 */
|
||||
--heartedBackgroundColor: #F5E0DC; /* peach */
|
||||
--selectionBackgroundColor: #A6E3A1; /* green */
|
||||
--linkColor: #89B4FA; /* blue */
|
||||
--borderColor: #D9E0EE; /* crust */
|
||||
--hrColor: #ABAEC6; /* mantle */
|
||||
--activeColor: #F28FAD; /* pink */
|
||||
--langBackgroundColor: #DCE0EA; /* surface1 */
|
||||
--backgroundColor: #fdfdfd;
|
||||
--textColor: #303030;
|
||||
--secondaryTextColor: #404040;
|
||||
--mutedTextColor: #707070;
|
||||
--subtleBackgroundColor: #f5f5f5;
|
||||
--heartedBackgroundColor: #ffe2e2;
|
||||
--selectionBackgroundColor: #ffc;
|
||||
--linkColor: #2357cd;
|
||||
--borderColor: #ccc;
|
||||
--hrColor: #888;
|
||||
--activeColor: #74d274;
|
||||
--langBackgroundColor: #eeeeee;
|
||||
--langShadowColor: transparent;
|
||||
--logoColor: #B8C0E0; /* lavender */
|
||||
--photoBackground: #E9ECF2; /* surface0 */
|
||||
--logoColor: #cccccc;
|
||||
--photoBackground: #f4f4f4;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
/* Dark Mode */
|
||||
--backgroundColor: #1E1E2E; /* base */
|
||||
--textColor: #CDD6F4; /* text */
|
||||
--secondaryTextColor: #A6ADC8; /* overlay2 */
|
||||
--mutedTextColor: #88909F; /* overlay1 */
|
||||
--subtleBackgroundColor: #313244; /* surface2 */
|
||||
--heartedBackgroundColor: #913C3C; /* red */
|
||||
--selectionBackgroundColor: #223249; /* blue darker */
|
||||
--linkColor: #89B4FA; /* blue */
|
||||
--borderColor: #414559; /* crust */
|
||||
--hrColor: #4C4F69; /* mantle */
|
||||
--activeColor: #ABE9B3; /* green */
|
||||
--langBackgroundColor: #2A2A3C; /* surface1 */
|
||||
--langShadowColor: #00000033;
|
||||
--logoColor: #6E6C7E; /* lavender darker */
|
||||
--photoBackground: #24273A; /* surface0 */
|
||||
--backgroundColor: #151615;
|
||||
--textColor: #dbdfdf;
|
||||
--secondaryTextColor: #cfd5d5;
|
||||
--mutedTextColor: #b4b6b8;
|
||||
--subtleBackgroundColor: #3a3b3b;
|
||||
--heartedBackgroundColor: #652222;
|
||||
--selectionBackgroundColor: #19446b;
|
||||
--linkColor: #6eb8ff;
|
||||
--borderColor: #414141;
|
||||
--hrColor: #888;
|
||||
--activeColor: #74d274;
|
||||
--langBackgroundColor: #2c2c2c;
|
||||
--langShadowColor: #0b0c0b33;
|
||||
--logoColor: #555555;
|
||||
--photoBackground: #1a1a1a;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -47,7 +45,7 @@ body {
|
|||
line-height: 1.7em;
|
||||
padding: 0 2.5em;
|
||||
margin: 0;
|
||||
font-size: 1.1em;
|
||||
font-size: 18px;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
|
@ -257,7 +255,7 @@ hr {
|
|||
|
||||
article {
|
||||
font-family: system-ui, sans-serif;
|
||||
font-size: 1em;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.smol {
|
||||
|
|
Loading…
Reference in a new issue