diff options
| -rw-r--r-- | content/_index.md | 22 | ||||
| -rw-r--r-- | static/style.css | 8 |
2 files changed, 22 insertions, 8 deletions
diff --git a/content/_index.md b/content/_index.md index 523d3d0..68c152e 100644 --- a/content/_index.md +++ b/content/_index.md @@ -3,12 +3,22 @@ title = "Home" template = "index.html" +++ -Hi, I'm lemon. Welcome to my page. It's kind of barren at the moment. +Hi! I'm lemon / Sofia. I'm a programmer, mainly interested in compiler & +programming language development, and low-level programming in general. +Currently studying for a bachelor's degree in Computer Engineering. -## Links -- I have a [blog](/w). -- My programming stuff is in [codeberg](https://codeberg.org/lsof), [sourcehut](https://git.sr.ht/~lsof/), older stuff is in [github](https://github.com/lemon32767/). - - [antcc](https://codeberg.org/lsof/antcc): a C compiler -- I have a [youtube channel](https://www.youtube.com/@lemon9bug). +I also like linguistics, retrocomputing, cooking and tool-assisted speedruns (TAS). + +## Projects + + - [antcc](https://codeberg.org/lsof/antcc), a small independent C compiler + - [ccleste](https://github.com/lemon32767/ccleste), a C source port of the + PICO-8 game Celeste + - [cff](https://git.sr.ht/~lsof/cff/), also [pez](https://git.sr.ht/~lsof/pez); toy programming language experiments + +## Other Links + +- I have a somewhat neglected [blog](/w). +- I (used to) make Super Mario 64 TASes, which can be found on my [youtube channel](https://www.youtube.com/@lemon9bug). -  - [contact](/contact) diff --git a/static/style.css b/static/style.css index 1e9d803..355ca71 100644 --- a/static/style.css +++ b/static/style.css @@ -7,6 +7,7 @@ --border1: #ccc; --code-bg: #e8e8e8; --border2: #999; + --a-fg: #B34A00; } @media (prefers-color-scheme: dark) { @@ -19,6 +20,7 @@ --border1: #444; --code-bg: #222; --border2: #555; + --a-fg: #FF9447; } } @@ -26,7 +28,7 @@ body { margin: auto; max-width: 820px; line-height: 1.6; - font-family: Serif; + font-family: "Trebutchet MS", Sans-Serif; padding: 0 10px; font-size: 18px; color: var(--fg); @@ -45,6 +47,7 @@ nav.navbar > a { padding: 1px 20px; background: var(--pre-bg); border: 1px solid var(--border1); + border-radius: 6px; } h1.title { @@ -72,6 +75,7 @@ pre { border-radius: 3px; border: 1px solid var(--border1); font-size: 14px; + font-family: Courier, Monospace; overflow-x: auto; background: var(--pre-bg); color: var(--pre-fg); @@ -93,7 +97,7 @@ code { } a { - color: #cc833b;/*#e77850;*/ + color: var(--a-fg); text-decoration: none; } |