oops - thought I got that one.

This commit is contained in:
2024-12-19 15:07:08 +02:00
parent db7357942a
commit 790d38fea8
4 changed files with 178 additions and 212 deletions

View File

@@ -1,4 +1,5 @@
@import url("colors.css");
@font-face {
font-family: 'Comic Mono';
src: url('/fonts/ComicMono.ttf') format('truetype'),
@@ -6,125 +7,157 @@ url("/fonts/ComicMono.ttf") format("truetype");
font-weight: 400;
font-style: normal;
}
body {
font-family: "Comic Mono", monospace;
font-size: 1.1em;
background-color: var(--background);
color: var(--foreground);
word-wrap: break-word; /* maybe only to p since the donate page was the culprit */
font-family: "Comic Mono", monospace;
font-size: 1.1em;
background-color: var(--background);
color: var(--foreground);
word-wrap: break-word; /* maybe only to p since the donate page was the culprit */
}
p {
text-align: start; /* text-align: justify; */
overflow: auto;
/* text-justify: inter-word; */
line-height: 1.4em;
text-align: start; /* text-align: justify; */
overflow: auto;
/* text-justify: inter-word; */
line-height: 1.4em;
}
em {
font-family: "Comic Mono", monospace;
font-family: "Comic Mono", monospace;
}
h1,h2,h3 {
font-size: 1.1em;
font-size: 1.1em;
}
h1 {
color: var(--color4);
text-align: center;
color: var(--color4);
text-align: center;
}
h2 {
color: var(--color6);
color: var(--color6);
}
h3 {
color: var(--color5);
color: var(--color5);
}
h1:before {
content: "# ";
content: "# ";
}
h2:before {
content: "## ";
content: "## ";
}
h3:before {
content: "### ";
content: "### ";
}
section {
width: 50%;
margin: 5em auto 0% auto;
width: 50%;
margin: 5em auto 0% auto;
}
blockquote {
text-align: center;
margin:0 auto;
width:auto;
display:table
text-align: center;
margin:0 auto;
width:auto;
display:table
}
pre {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
code, pre {
font-family: "Comic Mono", monospace;
font-size: 1.0em;
color: var(--color1);
text-align: center
font-family: "Comic Mono", monospace;
font-size: 1.0em;
color: var(--color1);
text-align: center
}
a {
font-size: .8em
display: inline-block;
text-align: left;
text-justify: none;
color: var(--color10);
text-decoration: none;
font-size: .8em
display: inline-block;
text-align: left;
text-justify: none;
color: var(--color10);
text-decoration: none;
}
section a:before {
content: "=> 🌍 ";
content: "=> 🌍 ";
}
section a.gem:before {
content: "=> 💎 ";
content: "=> 💎 ";
}
footer a:before {
content: "";
content: "";
}
a:hover {
transition: background-color 0.1s, color 1.1s;
background-color: var(--color9);
color: var(--background);
transition: background-color 0.1s, color 1.1s;
background-color: var(--color9);
color: var(--background);
}
span#url {
display: inline-block;
width: 27em;
display: inline-block;
width: 27em;
}
span#name {
color: var(--color9);
font-style: italic;
color: var(--color9);
font-style: italic;
}
button#mybtn {
color: var(--color15);
background-color: var(--color0);
font-family: "Comic Mono", monospace;
font-size: 1em;
border: 2px solid var(--color3);
color: var(--color15);
background-color: var(--color0);
font-family: "Comic Mono", monospace;
font-size: 1em;
border: 2px solid var(--color3);
}
button#mybtn:hover {
transition: background-color 0.1s, color 1.1s;
background-color: var(--color9);
color: var(--background);
font-family: "Comic Mono", monospace;
font-size: 1em;
transition: background-color 0.1s, color 1.1s;
background-color: var(--color9);
color: var(--background);
font-family: "Comic Mono", monospace;
font-size: 1em;
}
footer a#gemyo img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
width: 170px;
display: block;
margin: 3em auto 0em auto;
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
width: 170px;
display: block;
margin: 3em auto 0em auto;
}
@media screen and (max-width: 1600px) {
section {
width: 80%;
}
section {
width: 80%;
}
}
/* Adjust font size for small screens */
@media (max-width: 1300px) {
pre code {
display: none;
}
}