diff --git a/sakata.html b/sakata.html index 5cd32ea..f75b438 100644 --- a/sakata.html +++ b/sakata.html @@ -25,11 +25,25 @@ z-index: 1000; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* 軽い影を付ける */ } + #calculateButton { + margin-top: 10px; /* ボタンの上部マージン */ + padding: 5px 10px; /* ボタンのパディング */ + background-color: #007bff; /* ボタンの背景色 */ + color: white; /* ボタンの文字色 */ + border: none; /* ボタンのボーダーなし */ + border-radius: 5px; /* ボタンの角を丸くする */ + cursor: pointer; /* カーソルをポインタに変更 */ + } + #calculateButton:hover { + background-color: #0056b3; /* ホバー時の背景色 */ + }