chore: add public static folder

This commit is contained in:
2025-01-27 13:47:35 -07:00
parent d7a45a2452
commit 19dfb7cdfb
2 changed files with 66 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
/* Basic layout */
body {
margin: 0;
font-family: sans-serif;
background: #f0f0f0;
}
h1 {
text-align: center;
padding: 1rem;
}
/* Ticker styles */
#ticker-container {
position: fixed;
bottom: 0;
width: 100%;
background-color: #333;
color: #fff;
height: 40px;
display: flex;
align-items: center;
overflow: hidden;
}
#ticker-content {
white-space: nowrap;
animation: ticker 20s linear infinite;
padding-left: 100%;
}
@keyframes ticker {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-100%);
}
}