Skip to content

Commit

Permalink
TinaCMS content update
Browse files Browse the repository at this point in the history
  • Loading branch information
tina-cloud-app[bot] authored Jun 19, 2024
1 parent 285a6ee commit 666aa11
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions content/posts/Trying-out-this-cool-thing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
---
title: Trying out this cool thing
---

```html
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animated ASCII Text</title>
<style>
body {
background-color: #000;
color: #0f0;
font-family: monospace;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.ascii-art {
white-space: pre;
text-align: center;
animation: color-change 5s infinite;
}
@keyframes color-change {
0% {
color: #0f0;
}
25% {
color: #f00;
}
50% {
color: #00f;
}
75% {
color: #ff0;
}
100% {
color: #0f0;
}
}
</style>
</head>

<body>
<div class="ascii-art">
<pre>

_____ ______ ___ ___ ___ ___ _________ ________ ________ ___ _____ ______
|\ _ \ _ \|\ \|\ \|\ \|\ \|\___ ___\\ __ \|\ ____\|\ \|\ _ \ _ \
\ \ \\\__\ \ \ \ \\\ \ \ \\\ \|___ \ \_\ \ \|\ \ \ \___|\ \ \ \ \\\__\ \ \
\ \ \\|__| \ \ \ \\\ \ \ __ \ \ \ \ \ \ __ \ \_____ \ \ \ \ \\|__| \ \
\ \ \ \ \ \ \ \\\ \ \ \ \ \ \ \ \ \ \ \ \ \|____|\ \ \ \ \ \ \ \ \
\ \__\ \ \__\ \_______\ \__\ \__\ \ \__\ \ \__\ \__\____\_\ \ \__\ \__\ \ \__\
\|__| \|__|\|_______|\|__|\|__| \|__| \|__|\|__|\_________\|__|\|__| \|__|
\|_________|
</pre>
</div>
</body>

</html>
```

0 comments on commit 666aa11

Please sign in to comment.