diff options
| author | Akshay Nair <phenax5@gmail.com> | 2026-07-07 13:04:42 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2026-07-07 13:04:42 +0530 |
| commit | 4c142d2a977a2c377ea3bef30fa986010056ba3e (patch) | |
| tree | e1244ef962f2c60dc4cf5b62d3a7e8005e0e1463 /cgit/static | |
| parent | 17d0f321faeecf5ea46faccb4157347673690def (diff) | |
| download | bacchus-remote-4c142d2a977a2c377ea3bef30fa986010056ba3e.tar.gz bacchus-remote-4c142d2a977a2c377ea3bef30fa986010056ba3e.zip | |
Add comment modal + color changes
Diffstat (limited to 'cgit/static')
| -rw-r--r-- | cgit/static/README.md | 9 | ||||
| -rw-r--r-- | cgit/static/cgit.css | 24 |
2 files changed, 28 insertions, 5 deletions
diff --git a/cgit/static/README.md b/cgit/static/README.md index 895f456..ab53933 100644 --- a/cgit/static/README.md +++ b/cgit/static/README.md @@ -1,5 +1,10 @@ # Hey! -I keep my projects here. +You can find my projects here. -Also have these mirrored on github with some more things: <a href="https://github.com/phenax" target="_blank _parent" rel="noopener">https://github.com/phenax</a> +I have these mirrored on <a href="https://github.com/phenax" target="_blank _parent" rel="noopener">my github</a>. I also write about things I find interesting [here](https://ediblemonad.dev). + + +### Contributing + +If you'd like to contribute to any of the repositories hosted here, you can email a patch to <akshay.n0@protonmail.com> with the subject line `PATCH <repo name>: <patch description>`. diff --git a/cgit/static/cgit.css b/cgit/static/cgit.css index 2fa54e2..6a3040a 100644 --- a/cgit/static/cgit.css +++ b/cgit/static/cgit.css @@ -2,9 +2,9 @@ html, body { background-color: black; line-height: 1.6; font-size: 18px; - --color-accent: #00a0a0; - --color-accent-1: #009090; - --color-accent-2: #007070; + --color-accent: #61f9b0; + --color-accent-1: #51e9a0; + --color-accent-2: #31c980; } input[type=search], input[type=text], select { @@ -1108,3 +1108,21 @@ div#cgit table.ssdiff td.space div { background-color: transparent; } +.discussions { + text-align: right; +} +.discussions-modal { + text-align: left; + background-color: black; + border: 2px solid #222; + box-shadow: 0 0 20px 10px rgb(255, 255, 255, 0.1); + max-width: 800px; + width: 100%; +} +.discussions-modal::backdrop { + background-color: rgb(0,0,0,0.6); +} +.discussions-close { + float: right; +} + |
