mirror of
https://github.com/tmdinosaurcenter/kiosk-guestbook.git
synced 2025-04-10 14:11:28 -06:00
40 lines
613 B
CSS
40 lines
613 B
CSS
/* 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%);
|
|
}
|
|
} |