twitch-chat/static/main.css

53 lines
675 B
CSS
Raw Normal View History

2020-03-20 12:23:27 +01:00
body {
background-color: #18181b;
padding: 0px;
margin: 0px;
overflow: hidden;
2020-03-20 16:01:29 +01:00
font-family: 'Asap', sans-serif;
2020-03-20 12:23:27 +01:00
}
#messages {
color: white;
list-style-type: none;
position: absolute;
bottom: 0px;
margin: 0px;
padding: 0px;
}
.slide {
animation: slide 0.5s forwards;
}
.item {
2020-03-20 16:01:29 +01:00
width: 400px;
2020-03-20 12:23:27 +01:00
margin: 0.5rem;
}
.destroy {
animation: disappear 1s;
opacity: 0;
}
.text {
padding-right: 0.5rem;
}
.name {
font-weight: bold;
}
2020-03-20 16:01:29 +01:00
.badge {
margin-right: 0.3rem;
}
2020-03-20 12:23:27 +01:00
@keyframes slide {
from { }
to { bottom: 0rem; }
}
@keyframes disappear {
from { opacity: 1; }
to { opacity: 0; }
}