Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion app/static/styles/countdown.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@ body {
background: rgb(40, 40, 40);
color: white;
text-align: center;
overflow-x: hidden;
}

.countdown-container {
margin-top: 8vh;
}

h1 {
.name {
font-size: 12em;
font-weight: 800;
color: rgb(163, 0, 46);
text-shadow: 2px 2px 5px red;
animation: 10s linear infinite lmao;
white-space: nowrap;
}

#countdown {
Expand All @@ -33,3 +37,12 @@ h1 {
box-sizing: border-box; /* Include padding in width calculation */
overflow: hidden; /* Prevent any text overflow */
}

@keyframes lmao {
0% {
translate: 100% 0;
}
100% {
translate: -100% 0;
}
}
Loading