Compare commits

...

1 commit

Author SHA1 Message Date
ebba251502 update
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-09-14 23:33:32 -05:00
2 changed files with 22 additions and 8 deletions

View file

@ -43,7 +43,7 @@
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
$backgroundColor: #202030; $backgroundColor: #202030;
$textColor: #cdcdcd; $textColor: #cdcdcd;
$linkColor: lightskyblue; $linkColor: #A8BFD6;
$linkHoverColor: #202749; $linkHoverColor: #202749;
:root { :root {

View file

@ -8,8 +8,14 @@
"Consolas", monospace; "Consolas", monospace;
} }
html {}
body { body {
background-color: var(--background-color); background: radial-gradient(circle at center top, var(--background-color), black),
radial-gradient(circle at center bottom, #200d0d, black),
radial-gradient(circle at center left, #0d2020, black),
radial-gradient(circle at center right, #0d200d, black);
background-blend-mode: difference;
color: var(--text-color); color: var(--text-color);
margin: auto; margin: auto;
@ -31,7 +37,13 @@ code::selection {
a { a {
color: var(--link-color); color: var(--link-color);
text-decoration: none; font-weight: bold;
text-decoration: underline;
text-decoration-style: dotted;
text-decoration-thickness: 1px;
text-underline-offset: 2px;
// text-decoration: none;
padding: 2px 0; padding: 2px 0;
border-radius: 2px; border-radius: 2px;
@ -50,7 +62,7 @@ code {
// color: $code-color; // color: $code-color;
} }
pre > code, pre>code,
pre.Agda { pre.Agda {
color: var(--text-color); color: var(--text-color);
display: block; display: block;
@ -84,7 +96,7 @@ body {
} }
code, code,
pre > code { pre>code {
font-size: 0.95rem; font-size: 0.95rem;
letter-spacing: -0.035rem; letter-spacing: -0.035rem;
} }
@ -98,7 +110,7 @@ pre > code {
justify-content: center; justify-content: center;
} }
.flex-wrapper > main { .flex-wrapper>main {
min-width: 0; min-width: 0;
max-width: variables.$breakpoint; max-width: variables.$breakpoint;
flex-grow: 1; flex-grow: 1;
@ -116,6 +128,7 @@ pre > code {
@media screen and (max-width: variables.$breakpoint) { @media screen and (max-width: variables.$breakpoint) {
.flex-wrapper { .flex-wrapper {
flex-direction: column; flex-direction: column;
.container { .container {
padding: 5px 20px; padding: 5px 20px;
} }
@ -125,13 +138,14 @@ pre > code {
@media screen and (min-width: variables.$breakpoint) { @media screen and (min-width: variables.$breakpoint) {
.flex-wrapper { .flex-wrapper {
flex-direction: row; flex-direction: row;
.container { .container {
padding: 32px 40px 5px 40px; padding: 32px 40px 5px 40px;
} }
} }
.flex-wrapper > main.pad { .flex-wrapper>main.pad {
padding-left: 30px; padding-left: 30px;
padding-right: 30px; padding-right: 30px;
} }
} }