テキストエリアを monospace にする
◆Zenn by syon
Details
Authorsyon
LicenseNo License
Categoryzenn
Created
Updated
Size511 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name ◆Zenn
@version 20230922.02.37
@namespace userstyles.world/user/syon
@description テキストエリアを monospace にする
@author syon
@license No License
==/UserStyle== */
@-moz-document domain("zenn.dev") {
html body {
font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif, "Segoe UI Emoji"
}
textarea {
font-family: monospace;
}
.znc .code-block-container {
width: 1000px;
z-index: 9;
}
}