Graphite/website/sass/page/about.scss
Keavon Chambers e57637aab1
Make builds of the editor and the website serve their own local fonts (#2186)
* WIP

* Done?

* Install fonts in CI

* Use absolute path so minified inlined CSS works

* Fix Bezier-rs demo fonts?

* Use opsz

* Revert removal of text balancer

* Pull in the text balancer from our static host
2025-05-19 02:38:29 -07:00

47 lines
667 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);
}
.flag {
width: 1em;
height: 1em;
vertical-align: middle;
}
}
}
}