1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-08 22:15:02 +00:00
mon-entreprise/source/components/News.css

28 lines
329 B
CSS

.news-header {
display: flex;
align-items: center;
max-width: 30em;
margin: 0 auto;
justify-content: center;
animation: fade-in 2s;
}
.news-header p {
color: #4b4b66;
font-size: 85%;
}
.news-header i {
margin-right: 1em;
}
@keyframes fade-in {
from {
opacity: 0;
}
50% {
opacity: 0;
}
to {
opacity: 1;
}
}