diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-01-24 21:53:27 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-01-24 21:53:27 +0100 |
commit | 7a513031822010612ef1fd0104cb339854d741d3 (patch) | |
tree | d5ee5351d355cc06b4702a2a8813f9506aa2dfb8 /src/style.css | |
parent | 754154a71af3f753db758744fe52e8409ec5011f (diff) |
Add new blog post
Diffstat (limited to 'src/style.css')
-rw-r--r-- | src/style.css | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/style.css b/src/style.css index 19a32ab..3941394 100644 --- a/src/style.css +++ b/src/style.css @@ -50,8 +50,15 @@ pre, code, kbd, samp { pre > code { color: var(--fg); } :not(pre) > code { white-space: nowrap; } -pre.js, pre.sh { tab-size: 4; } -pre.pug, pre.gsp { tab-size: 2; } +pre.js, +pre.sh { + tab-size: 4; +} +pre.gsp, +pre.pug, +pre.vue { + tab-size: 2; +} h1 { font-size: 1.8rem; @@ -200,6 +207,11 @@ dl { .gsp-val { color: var(--aqua); } .gsp-op { color: var(--lesser); } +.grab-file { color: #ECABF7; } +.grab-hl { color: #FF4D51; font-weight: bold; } +.grab-pos { color: #47B413; } +.grab-sep { color: #24DFC4; } + .article { display: flex; justify-content: space-between; @@ -264,6 +276,7 @@ dl { abbr.led::before { content: 'Light-Emitting Diode'; } abbr.nas::before { content: 'Network Attached Storage'; } abbr.os::before { content: 'Operating System'; } + abbr.pcre::before { content: 'Perl Compatible Regular Expression'; } abbr.pdf::before { content: 'Portable Document Format'; } abbr.posix::before { content: 'Portable Operating System Interface'; } abbr.qr::before { content: 'Quick Response'; } |