diff --git a/index.html b/index.html index ac3e947..17c74ed 100644 --- a/index.html +++ b/index.html @@ -64,6 +64,22 @@ .tab-border { border: 2px solid; } + .news-ticker { + background-color: black; + color: gold; + padding: 10px; + overflow: hidden; + white-space: nowrap; + } + .news-ticker span { + display: inline-block; + padding-right: 100%; + animation: ticker 20s linear infinite; + } + @keyframes ticker { + 0% { transform: translateX(100%); } + 100% { transform: translateX(-100%); } + }
+