diff --git a/dist/options/options.html b/dist/options/options.html index be7d0a1..543214e 100644 --- a/dist/options/options.html +++ b/dist/options/options.html @@ -160,9 +160,17 @@ } .note-section { - font-size: 0.9em; - color: #555; - margin-bottom: 10px; + max-width: 500px; /* 横幅を制限 */ + margin-top: 10px; + padding: 10px; + border: 1px solid #ccc; /* 枠線を追加 */ + border-radius: 5px; /* 角を丸く */ + background-color: #f9f9f9; /* 背景色を指定 */ + } + .note-section textarea { + width: 100%; /* 横幅いっぱい */ + resize: none; /* サイズ変更禁止 */ + font-size: 1em; /* 適切な文字サイズ */ } /* ページネーション */ diff --git a/src/options/options.html b/src/options/options.html index be7d0a1..543214e 100644 --- a/src/options/options.html +++ b/src/options/options.html @@ -160,9 +160,17 @@ } .note-section { - font-size: 0.9em; - color: #555; - margin-bottom: 10px; + max-width: 500px; /* 横幅を制限 */ + margin-top: 10px; + padding: 10px; + border: 1px solid #ccc; /* 枠線を追加 */ + border-radius: 5px; /* 角を丸く */ + background-color: #f9f9f9; /* 背景色を指定 */ + } + .note-section textarea { + width: 100%; /* 横幅いっぱい */ + resize: none; /* サイズ変更禁止 */ + font-size: 1em; /* 適切な文字サイズ */ } /* ページネーション */