mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 21:37:59 +00:00
43 lines
668 B
SCSS
43 lines
668 B
SCSS
.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);
|
|
}
|
|
|
|
.emoji {
|
|
font-size: 0.8em;
|
|
vertical-align: middle;
|
|
cursor: default;
|
|
}
|
|
}
|
|
}
|
|
}
|