Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions .vitepress/theme/styles/global.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
html,
body {
margin: 0;
font-family: "Helvetica Neue", Arial, "ヒラギノ角ゴ Pro W3",
"Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック", "Yu Gothic",
"游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "MS Pゴシック",
"MS P Gothic", sans-serif;
font-family:
"Helvetica Neue", Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN",
"Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
"メイリオ", "Meiryo", "MS Pゴシック", "MS P Gothic", sans-serif;
color: #111;
font-size: 15px;
line-height: 2em;
Expand All @@ -16,13 +16,9 @@ body {
margin: auto;

a {
color: #0074e4;
text-decoration: none;

&:hover {
color: #0074e4;
text-decoration: underline;
}
color: #05a;
text-decoration: underline;
text-underline-offset: 0.2em;
Copy link

Copilot AI Dec 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The removal of the :hover state means links no longer provide visual feedback when users hover over them. For better accessibility and user experience, consider adding a hover state that changes the color or styling. For example:

a {
  color: #05a;
  text-decoration: underline;
  text-underline-offset: 0.2em;

  &:hover {
    color: #039;
  }
}

This maintains the accessibility improvements while providing visual feedback for mouse users.

Suggested change
text-underline-offset: 0.2em;
text-underline-offset: 0.2em;
&:hover {
color: #039;
}

Copilot uses AI. Check for mistakes.
}

h1 {
Expand Down Expand Up @@ -74,6 +70,7 @@ body {

a {
color: #333;
text-decoration: none;
font-weight: bold;
}
}
Expand Down