Compare commits

..

No commits in common. "f89475193dc8d28bd73a93a40fb077dcdf2aa030" and "f6e21cbc1f074905160f4ec5ed83c78158e195f5" have entirely different histories.

2 changed files with 5 additions and 30 deletions

View File

@ -9,7 +9,7 @@ html { box-sizing: border-box; }
--fg-color: #000000; --fg-color: #000000;
--selection-bg-color: #bbffbb; --selection-bg-color: #bbffbb;
--selection-fg-color: #000000; --selection-fg-color: #000000;
--accent: #10dd10; --accent: #96ff96;
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
:root { :root {
@ -17,7 +17,6 @@ html { box-sizing: border-box; }
--fg-color: #ffffff; --fg-color: #ffffff;
--selection-bg-color: var(--accent); --selection-bg-color: var(--accent);
--selection-fg-color: #000000; --selection-fg-color: #000000;
--accent: #96ff96;
} }
} }
body { body {
@ -36,7 +35,6 @@ body {
h1 { h1 {
text-align: center; text-align: center;
margin: 1.5em 0;
} }
/* Blinking cursor */ /* Blinking cursor */
@ -55,7 +53,7 @@ h1::after {
content: ""; content: "";
width: 5px; width: 5px;
height: 0.9em; height: 0.9em;
background: var(--accent); background: #00ff00;
margin-left: 3px; margin-left: 3px;
display: inline-block; display: inline-block;
animation: cursor-blink 900ms ease-in-out infinite; animation: cursor-blink 900ms ease-in-out infinite;
@ -97,7 +95,7 @@ code {
color: var(--bg-color); color: var(--bg-color);
} }
code a { code a {
text-decoration-color: var(--fg-color) !important; text-decoration-color: var(--fg-color); !important
} }
.row { .row {

View File

@ -47,33 +47,10 @@
</div> </div>
<hr> <hr>
<div class="footer"> <div class="footer">
Made with ❤️ by human | <a href="https://privacynerd.de/impressum?referrer=http://127.0.0.1:8000/griddy.html">Imprint</a> Made with ❤️ in Germany | <a href="https://privacynerd.de/impressum?referrer=http://127.0.0.1:8000/griddy.html">Imprint</a>
</div> </div>
<script> <script>
const greetings = [ const greetings = ["What's up?", "Hey dear stranger!", "Hello you!", "G'day m'ae", "Greetings!", "Nice to hear from you!"];
"What's up?",
"How's it goin'?",
"Hey dear stranger!",
"Howdy, stranger!",
"Hello you!",
"G'day mate!",
"Greetings!",
"Nice to hear from you!",
"Oi!",
"Welcome to my website!",
"Hey there!",
"Hey!",
"Hej!",
"Welcome aboard!",
"Welcome to my little corner of the internet!",
"Welcome to my space on the web!",
"Hello, take a look around!",
"Glad you're here, enjoy your stay!",
"Hey, nice to see you here!",
"Im happy you stopped by!",
"Hey there! Lets have some fun!",
];
headline = document.getElementById("headline"); headline = document.getElementById("headline");
headline.innerText = greetings[Math.floor(Math.random() * greetings.length)]; headline.innerText = greetings[Math.floor(Math.random() * greetings.length)];
</script> </script>