Add details in licenses with license text, moved all license files to /licenses/ folder, updated README.md with new license locations #10

Merged
qhri merged 5 commits from licenses_details into main 2025-08-23 01:44:02 +02:00
Showing only changes of commit 6016376206 - Show all commits

View file

@ -29,24 +29,24 @@
} }
:root { :root {
--bg-color: #ecdfec; --bg-color: hsl(300 25% 90%);
--font-color: #333333; --font-color: hsl( 0 0% 20%);
--code-border-color: #1a1a1a; --code-border-color: hsl( 0 0% 10%);
--link-color: #2b58de; --link-color: hsl(225 73% 52%);
--link-color-visited: #6047eb; --link-color-visited: hsl(249 80% 60%);
--header-bg-color: #E1CFE1; --header-bg-color: hsl(300 23% 85%);
--header-border-color: #CDB0CD; --header-border-color: hsl(300 22% 75%);
--details-bg-color: #F5EFF5; --details-bg-color: hsl(300 25% 95%);
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
--bg-color: #1f131f; --bg-color: hsl(300 25% 10%);
--font-color: #cccccc; --font-color: hsl( 0 0% 80%);
--code-border-color: #333333; --code-border-color: hsl( 0 0% 20%);
--link-color: #577AE4; --link-color: hsl(225 73% 62%);
--link-color-visited: #8775EF; --link-color-visited: hsl(249 80% 70%);
--header-bg-color: #2F1D2F; --header-bg-color: hsl(300 23% 15%);
--header-border-color: #4D314D; --header-border-color: hsl(300 22% 25%);
--details-bg-color: #0F090F; --details-bg-color: hsl(300 25% 5%);
} }
} }
@ -65,8 +65,8 @@ p, ul, nav, code {
} }
code { code {
background-color: #1a1a1a; background-color: hsl(0 0% 10%);
color: #e6e6e6; color: hsl(0 0% 90%);
border: 5px solid var(--code-border-color); border: 5px solid var(--code-border-color);
overflow: scroll; overflow: scroll;
text-wrap: nowrap; text-wrap: nowrap;