2019-04-17 18:56:09 +02:00
|
|
|
.ui__.banner {
|
2018-04-26 14:40:22 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2019-04-17 11:13:35 +02:00
|
|
|
margin: 1rem auto;
|
2018-05-25 11:47:43 +02:00
|
|
|
max-width: 100%;
|
2019-04-17 18:56:09 +02:00
|
|
|
color: var(--lighterInverseTextColour);
|
|
|
|
width: 45rem;
|
2018-04-26 14:40:22 +02:00
|
|
|
justify-content: center;
|
2018-05-23 18:03:26 +02:00
|
|
|
animation: fade-in 1s;
|
2018-04-26 14:40:22 +02:00
|
|
|
}
|
|
|
|
|
2019-04-17 18:56:09 +02:00
|
|
|
.ui__.banner img {
|
|
|
|
margin-right: 1rem !important;
|
|
|
|
font-size: 2rem;
|
|
|
|
margin-bottom: 0.6rem !important;
|
2018-04-26 14:40:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fade-in {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|