Compare commits

..

No commits in common. "84b609503e0963205defbbffc0d26f4717afd1c3" and "dfa79c0f47ad7c3e6e4bc78a5b223bcbabdb1b55" have entirely different histories.

2 changed files with 30 additions and 4 deletions

View file

@ -2,6 +2,10 @@ pipeline:
build-image: build-image:
image: docker.io/woodpeckerci/plugin-docker-buildx image: docker.io/woodpeckerci/plugin-docker-buildx
secrets: [docker_username, docker_password] secrets: [docker_username, docker_password]
# commands:
# - echo $REGISTRY_SECRET | img login --username Nulo --password-stdin gitea.nulo.in
# - img build -t gitea.nulo.in/nulo/sitio-build:latest tooling/Containerfile
# - img push gitea.nulo.in/nulo/sitio-build:latest
settings: settings:
registry: https://gitea.nulo.in registry: https://gitea.nulo.in
username: Nulo username: Nulo

View file

@ -1,8 +1,14 @@
:root { :root {
color-scheme: dark light; --background: white;
--backgroundish: #f0f0f0;
--foreground: #111;
} }
body { body {
background: white;
background: var(--background);
color: #111;
color: var(--foreground);
font-family: sans-serif; font-family: sans-serif;
max-width: 75rem; max-width: 75rem;
margin: 0 auto; margin: 0 auto;
@ -24,7 +30,7 @@ section#conexiones {
} }
h2 { h2 {
border-bottom: CanvasText solid 1px; border-bottom: var(--foreground) solid 1px;
} }
img, img,
@ -44,7 +50,8 @@ pre {
blockquote { blockquote {
border-left: solid 3px; border-left: solid 3px;
border-color: CanvasText; border-color: #111;
border-color: var(--foreground);
margin: auto 0.5em; margin: auto 0.5em;
padding-left: 1em; padding-left: 1em;
} }
@ -61,13 +68,27 @@ li {
} }
a { a {
background: ButtonFace; background: #e7e7e7;
padding: 0em 0.35em; padding: 0em 0.35em;
border-radius: 0.4rem; border-radius: 0.4rem;
color: inherit; color: inherit;
text-decoration: inherit; text-decoration: inherit;
} }
@media (prefers-color-scheme: dark) {
body {
--background: black;
--backgroundish: #111;
--foreground: #eee;
}
abbr {
color: lightgray;
}
a {
background: #221f2d;
}
}
#conexiones ul { #conexiones ul {
list-style: none; list-style: none;
padding: 0; padding: 0;
@ -94,6 +115,7 @@ a {
flex-direction: column; flex-direction: column;
margin: 0.5rem; margin: 0.5rem;
padding: 0.5rem; padding: 0.5rem;
background: var(--backgroundish);
min-width: 10rem; min-width: 10rem;
} }
.webring .summary { .webring .summary {