teraminato on Nostr: ...
Google検索結果に連番を追加するstylus用カスタムcss(改ページ非対応)
-----
/* Google 検索結果に番号を付けるstylus用カスタムcss */
body {
counter-reset: result-counter;
}
.g {
counter-increment: result-counter;
position: relative;
}
.g::before {
content: counter(result-counter) ". ";
font-size: 18px;
font-weight: bold;
color: #1a73e8;
position: absolute;
left: -30px;
top: 0;
}
.g {
padding-left: 40px;
}
-----
/* Google 検索結果に番号を付けるstylus用カスタムcss */
body {
counter-reset: result-counter;
}
.g {
counter-increment: result-counter;
position: relative;
}
.g::before {
content: counter(result-counter) ". ";
font-size: 18px;
font-weight: bold;
color: #1a73e8;
position: absolute;
left: -30px;
top: 0;
}
.g {
padding-left: 40px;
}