1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-08 23:25:02 +00:00
mon-entreprise/source/components/Banner.css
Johan Girod 0e028cc843 wip
2018-08-04 12:11:34 +02:00

30 lines
350 B
CSS

.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;
}
.banner i {
margin-right: 1em;
}
@keyframes fade-in {
from {
opacity: 0;
}
50% {
opacity: 0;
}
to {
opacity: 1;
}
}