<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
a {
  text-decoration: none; /* ê¸°ë³¸ ìƒíƒœì—ì„œëŠ” ë°‘ì¤„ ì&nbsp;œê±° */
  position: relative; /* ê°€ìƒ ìš”ì†Œë¥¼ ìœ„í•´ í•„ìš” */
}
a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px; /* ë¼ì¸ ë‘ê»˜ */
  background-color: currentColor; /* ê¸€ìž ìƒ‰ê³¼ ê°™ê²Œ */
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%; /* ë§ˆìš°ìŠ¤ ì˜¤ë²„ ì‹œ ë¼ì¸ í‘œì‹œ */
}

a.one, a.whitelink {
  text-decoration: none;
}

a.one {
  color: yellowgreen;
}

a.one:visited {
  color: yellowgreen;
}

a.whitelink {
  color: white;
}

a.whitelink:visited {
  color: white;
}
/* ë°©ë¬¸í•œ ë§í¬ë„ ë™ì¼í•œ ìŠ¤íƒ€ì¼ ìœ&nbsp;ì§€ */
a.one:visited, a.whitelink:visited {
  color: inherit;
  text-decoration: none;
}</pre></body></html>