@charset "UTF-8";

:root {
  --header-bg-color-to: #2569de;
  --low-light-text: rgba(0, 0, 0, 0.5);
  --high-light-text: black;

  --link: #000;
  --link-hover: #00c;
  --link-active: #33f;
  --link-text-shadow1: rgba(255, 255, 255, 0.8);
  --link-text-shadow2: #f8f8f8;
  --link-text-shadow-link: #00f;
  --link-text-shadow-interactive: #009;

  --break-shadow: #fff;
  --break: rgba(0, 0, 0, 0.2);

  --list-item-text-shadow: #fff;
  --list-item-bg: #fff;

  --timeline-bg: #fff;

  --footnote: rgba(0, 0, 0, 0.6);

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --header-bg-color-to: #002058;
    --low-light-text: rgba(160, 160, 160, 0.5);
    --high-light-text: white;

    --link: #fff;
    --link-hover: #9797cb;
    --link-active: #d5d5ff;
    --link-text-shadow1: rgba(0, 0, 0, 0.8);
    --link-text-shadow2: #121212;
    --link-text-shadow-link: #00f;
    --link-text-shadow-interactive: #009;

    --break-shadow: #000;
    --break: rgba(255, 255, 255, 0.5);

    --list-item-text-shadow: #000;
    --list-item-bg: #282828;

    --timeline-bg: #111;

    --footnote: rgba(255, 255, 255, 0.6);
  }
}

/*
Amaranth
https://fonts.googleapis.com/css2?family=Amaranth:wght@400;700&display=swap
*/

/* latin */
@font-face {
  font-family: 'Amaranth';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/amaranth-400-latin.woff2?_=60ba59') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Amaranth';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/amaranth-700-latin.woff2?_=8152ff') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*
Lexend Deca
https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@400;700&display=swap
*/
/* latin-ext */
@font-face {
  font-family: 'Lexend Deca';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/lexenddeca-v17-400-latin-ext.woff2?_=f8c972') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lexend Deca';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/lexenddeca-v17-400-latin.woff2?_=3f6661') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lexend Deca';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/lexenddeca-v17-700-latin-ext.woff2?_=f8c972') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lexend Deca';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/lexenddeca-v17-700-latin.woff2?_=3f6661') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html:not(.font-loading) header.main h1 {
  opacity: 1;
}

@media not all and (prefers-reduced-motion) {
  html:not(.font-loading) header.main h1 {
    animation: .2s ease-in fade-in;
  }
}

@keyframes fade-in {
  from { opacity: 0.3 }
  to { opacity: 1 }
}

html.updating header.main::after {
  visibility: visible;
  opacity: 0.5;
}

header.main::after {
  --working-color1: #fff;
  --working-color2: #ffcc80;

  display: block;
  position: absolute;
  content: "Downloading updates…";
  left: 0;
  width: 100%;
  background-repeat: repeat-x;
  background-size: 40px 40px;
  background-image: linear-gradient(
    -45deg, var(--working-color1) 25%,
    var(--working-color2) 25%,
    var(--working-color2) 50%,
    var(--working-color1) 50%,
    var(--working-color1) 75%,
    var(--working-color2) 75%,
    var(--working-color2));

  visibility: hidden;
  opacity: 0;

  font-size: 12px;
  line-height: 14px;
  text-align: center;
  text-shadow: none;
  text-transform: uppercase;
  font-family: "Lexend Deca", system-ui, sans-serif;
  font-weight: bold;
  color: #333;
}

@media not all and (prefers-reduced-motion) {
  header.main::after {
    transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
    animation: progress-bar-stripes 1s linear infinite;
  }
}

@media (prefers-color-scheme: dark) {
  header.main::after {
    --working-color1: #111111;
    --working-color2: #a2722a;

    color: #fff;
  }
}

html.index header.main::after {
  transform: translateY(30px);
}

html.page header.main::after {
  transform: translateY(15px);
}

@keyframes progress-bar-stripes {
    from { background-position: 0 0 }
    to { background-position: 40px 0 }
}

html:not(.font-loading) body > section,
html:not(.font-loading) body > hr,
html:not(.font-loading) body > footer {
  overflow: visible;
  opacity: 1;
}

@media not all and (prefers-reduced-motion) {
  html:not(.font-loading) body > section,
  html:not(.font-loading) body > hr,
  html:not(.font-loading) body > footer {
    animation: .2s ease-in dancing-fade-in;
  }

  body.pagehide > section,
  body.pagehide > footer {
    transform: translateY(-5px);
    opacity: 0;
    animation: 0.2s ease-in dancing-fade-out;
  }
}

@keyframes dancing-fade-in {
  from { transform: translateY(-5px); opacity: 0.3 }
  to { opacity: 1 }
}

@keyframes dancing-fade-out {
  from { opacity: 1 }
  to { transform: translateY(-5px); opacity: 0.3 }
}

.no-js .js {
  display: none;
}

strong:not(.soft) {
  color: var(--bold-text);
}

strong.soft {
  font-weight: normal;
}

p, ul {
  margin: 24px auto;
}

section:active {
  color: var(--low-light-text);
}

section:active strong.soft {
  color: var(--high-light-text);
}

section:active p,
section:active h2 {
  --scale: 0.98;
  transform: scale(var(--scale));
}

section:active p strong {
  transform: scale(calc(1 / var(--scale)));
}

@media not all and (prefers-reduced-motion) {
  section,
  strong.soft {
    transition: color 0.2s ease-in-out;
  }
  section:active,
  section:active strong.soft {
    transition: color 0.5s ease-in-out;
  }
  section p,
  section h2,
  section p strong {
    transition: transform 0.2s ease-in-out;
  }

  section:active p,
  section:active h2,
  section:active p strong {
    transition: transform 0.5s ease-in-out;
  }
}

a {
  text-shadow: 0 .5px 0 var(--link-text-shadow1),
    0 0 0.5px var(--link-text-shadow-link),
    -1.5px 0 0 var(--link-text-shadow2),
    1.5px 0 0 var(--link-text-shadow2);
}
a:link, a:visited {
  color: var(--link);
}
a:hover {
  color: var(--link-hover);
  text-shadow: 0 .5px 0 var(--link-text-shadow1),
    0 0 0.5px var(--link-text-shadow-interactive),
    -1.5px 0 0 var(--link-text-shadow2),
    1.5px 0 0 var(--link-text-shadow2);
}
a:active {
  color: var(--link-active);
  text-shadow: 0 .5px 0 var(--link-text-shadow1),
    0 0 0.5px var(--link-text-shadow-interactive),
    -1.5px 0 0 var(--link-text-shadow2),
    1.5px 0 0 var(--link-text-shadow2);
}
@media not all and (prefers-reduced-motion) {
  a {
    transition: color .3s;
  }
}

header a,
header a:link,
header a:hover,
header a:active {
  color: unset;
  text-shadow: unset;
  text-decoration: none;
}

section + hr.section-break {
  margin-top: -24px;
}

hr.section-break + section,
hr.section-break + footer {
  padding-top: 0;
}

section p,
section h2 {
  max-width: 500px;
}

.sr {
  visibility: hidden;
}

header {
  color: rgba(7, 23, 55, 0.6);
  background-color: var(--header-bg-color-to);

  text-decoration: none;
  text-shadow: 0 1px 0.5px rgba(129, 166, 239, 0.6), 0 -1px 0.5px rgba(0, 0, 0, 0.6);
}

@media not all and (prefers-reduced-motion) {
  header {
    animation: 0.2s ease-in header-bg-color;
  }
}

@media (prefers-color-scheme: dark) {
  header {
    color: rgba(172, 180, 196, 0.6);
    text-shadow: 0 1px .5px rgba(132, 166, 233, 1),0 -1px .5px rgba(0, 0, 0, 1);
  }
}

@keyframes header-bg-color {
  from { background-color: var(--header-bg-from); }
  to { background-color: var(--header-bg-color-to); }
}

footer {
  text-align: center;
}

html.page section h1 {
  display: flex;
}

html.page section h1 strong {
  flex: 1 0 0;
}
html.page section h1 strong:only-child {
  text-align: center;
}

html.page section h1 small {
  font-size: 18px;
  line-height: 24px;
}

h2 {
  color: var(--bold-text);
  font-size: 28px;
  font-weight: bold;
  line-height: 32px;
  margin: 18px auto;
  font-family: Amaranth, sans-serif;
}

html.page h2 {
  font-size: 24px;
}

#handle {
  display: inline-block;
  white-space: nowrap;
}

#handle::before {
  content: "— ";
}

hr.section-break {
  border: none;
  margin: 0;
  height: 40px;
  opacity: 1;
}

.section-break::after {
  content: '§';
  text-shadow: 0 0 1px var(--break-shadow),
    0 0 3px var(--break-shadow),
    0 0 5px var(--break-shadow);
  display: block;
  line-height: 40px;
  font-family: 'Amaranth', sans-serif;
  font-size: 30px;
  color: var(--break);
  text-align: center;
}

html.index #handle {
  font-size: 18px;
  line-height: 24px;
  vertical-align: -1px;
}

html.index ul {
  padding: 0;
}

html.index li {
  list-style: none;
}

.pic {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 300px;
  height: 300px;
}

.pic > img {
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  height: 280px;
  width: 280px;
  transition: transform 0.3s ease-in-out,
    visibility 0.8s ease-in-out;
}

.pic-original,
.pic-scene {
  transform: translateZ(30px);
  background: url("data:image/png;base64,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");
  background-size: cover;
}

.pic-foreground {
  transform: translateZ(30px);
}

.pic-scene,
.pic-foreground {
  visibility: hidden;
}

.pic.motion.active {
  cursor: none;
}

/* .active === :hover for mouse interactions */
.pic.motion.active .pic-original,
.pic.motion.active .pic-scene,
.pic.motion.active .pic-foreground {
  visibility: visible;
  transition: none;
}

.pic.motion .pic-original {
  transition: transform 0.3s ease-in-out,
    visibility 0.5s ease 0.3s,
    opacity 0.5s ease 0.3s;
}

.pic.motion.active .pic-original {
  transition: none;
  visibility: hidden;
  opacity: 0;
}

.list-item {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  min-height: 48px;
}

.list-item,
.list-item:hover,
.list-item:active {
  color: inherit;
  text-shadow: 0 0 5px var(--list-item-text-shadow);
  text-decoration: none;
}

.list-item > .icon {
  z-index: 2;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px 24px;

  width: 48px;
  height: 48px;
}

.list-item > .background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  background-color: var(--list-item-bg);

  opacity: .7;
  will-change: opacity;
}
@media (prefers-color-scheme: dark) {
  .list-item > .background {
    mix-blend-mode: multiply;
  }
}

.list-item:hover > .background {
  opacity: .3;
}

@media not all and (prefers-reduced-motion) {
  .list-item > .background {
    transition: opacity .3s ease-in-out;
  }
  .list-item:hover > .background {
    transition: opacity .05s ease-in-out;
  }
}

.list-item > strong,
.list-item > small {
  z-index: 2;
  box-sizing: border-box;
}

.list-item > strong {
  flex: 1 0 0;
  padding: 6px;
}

.list-item > small {
  width: 90px;
  padding: 0 0.5em;
  font-size: 15px;
}

.list-item.apple > .icon {
  background-image: url("/assets/apple.svg?_=8685eb");
}
.list-item.apple {
  background: linear-gradient(90deg, rgb(250, 250, 250) 0, rgb(250, 250, 250) 30%, #b3b3b3 100%);
}

.list-item.firefox > .icon {
  background-image: url("/assets/firefox.icon.png?_=0a3859");
}
.list-item.firefox {
  background: linear-gradient(101deg, rgb(218, 88, 48) 0%, rgb(206, 77, 47) 22%, rgb(14, 78, 137) 48%, rgb(15, 71, 128) 83%, rgb(249, 211, 50) 94%);
}

.list-item.firefox-os > .icon {
  background-image: url("/assets/firefox-os.icon.png?_=acf4a7");
}
.list-item.firefox-os {
  background: linear-gradient(137deg, rgb(0, 82, 159) 0%, rgb(0, 143, 214) 56%, rgb(3, 91, 165) 97%);
}

.list-item.owl-publishing > .icon {
  background-image: url("/assets/owl-publishing.svg?_=379728");
}
.list-item.owl-publishing {
  background: linear-gradient(160deg, rgb(193, 231, 212) 0, rgb(232,255,240) 20%, rgb(232,255,240) 60%, rgb(1, 157,79) 100%);
}

.list-item.academia-sinica > .icon {
  background-image: url("/assets/academia-sinica.icon.svg?_=1e8c57");
}
.list-item.academia-sinica {
  background: linear-gradient(310deg, rgb(19, 131, 188) 1%, rgb(13, 100, 158) 17%, rgb(38, 137, 190) 27%, rgb(169, 194, 218) 35%, rgb(227, 227, 204) 44%, rgb(255, 255, 255) 57%, rgb(232, 233, 212) 72%, rgb(169, 194, 218) 81%, rgb(19, 131, 188) 88%);
}

.list-item.moztw > .icon {
  background-image: url("/assets/moztw.icon.png?_=831968");
}
.list-item.moztw {
  background: linear-gradient(100deg, rgb(215, 88, 50) 0%, rgb(220, 112, 64) 22%, rgb(231, 164, 99) 62%, rgb(244, 208, 169) 63%, rgb(244, 208, 169) 72%, rgb(0, 0, 0) 73%, rgb(27, 99, 159) 76%, rgb(28, 106, 165) 100%);
}

.list-item.demolab > .icon {
  background-image: url("/assets/demolab.icon.svg?_=ff4890");
}
.list-item.demolab {
  background: radial-gradient(circle at -25% -100%, rgb(11, 69, 151) 0%, rgb(23, 64, 143) 24%, rgb(252, 227, 51) 28%, rgb(252, 227, 51) 93%, rgb(217, 10, 43) 96%);
}

.list-item.wordcloud > .icon {
  background-image: url("/assets/wordcloud.svg?_=958049");
}
.list-item.wordcloud {
  background: linear-gradient(90deg, #e8ebec 0, #f0f0f0 10%, #b4bcbf 100%);
}

.list-item.jszhuyin > .icon {
  background-image: url("/assets/jszhuyin.svg?_=7eb9dc");
}
.list-item.jszhuyin {
  background: #f7df1e;
}

.timeline {
  background: var(--timeline-bg);

  padding: .5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.timeline li {
  display: block;
}

.timeline a {
  text-decoration: none;
}

.timeline .prev {
  margin-right: 1em;
}

.timeline .prev a::before {
  content: "⇠";
  padding-right: 4px;
}

.timeline .next {
  text-align: right;
  margin-left: auto;
}

.timeline .next a::after {
  content: "⇢";
  padding-left: 4px;
}

figure {
  margin: 0;
  text-align: center;
}

figure img,
figure canvas,
figure video {
  width: 100%;
}

img.logo {
  display: block;
  margin: 0 auto;
  width: 150px;
  height: 150px;
}

.end-mark {
  text-decoration: none;
}

.end-mark::after {
  content: "➤";
  padding-left: 4px;
}

figure, .footnote {
  color: var(--footnote);
  font-size: 16px;
}

p.footnote {
  margin: 16px auto;
}

figure strong,
.footnote strong {
  color: unset;
}

figure a,
.footnote a {
  opacity: 0.8;
}

a.home:not(:hover):not(:active) {
  text-decoration: none;
}

.home::before {
  content: "";
  display: inline-block;
  vertical-align: -3px;
  width: 18px;
  height: 18px;
  background: url("/assets/tiramisu-icon-64-shadow.png?_=3d869c") center center no-repeat;
  background-size: contain;
}

#footer-handle {
  white-space: nowrap;
}
