File size: 667 Bytes
2409829 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
.loading-data:empty::after {
content: "(loading...)";
font-style: italic;
opacity: 0;
animation: fadeInAfterWait 2s ease-in 2s forwards;
@keyframes fadeInAfterWait {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
}
#core-team {
background-color: var(--color-parchment);
.block {
align-items: center;
img {
max-width: Min(100%, 320px);
}
h2 {
font-weight: 700;
text-align: center;
width: 100%;
.handle {
margin: 0 0.4em;
font-size: 0.5em;
font-style: italic;
vertical-align: middle;
color: var(--color-slate);
}
.flag {
width: 1em;
height: 1em;
vertical-align: middle;
}
}
}
}
|