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/Banner.css

32 lines
367 B
CSS
Raw Normal View History

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