Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
NEKODESUDX authored Nov 11, 2024
1 parent 38e2188 commit 94356e3
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

body {
font-family: Arial, sans-serif;
background-color: #001f3f;
Expand All @@ -25,23 +24,25 @@ input, textarea {
margin-top: 5px;
padding: 8px;
font-size: 16px;
color: #001f3f;
background-color: #fff;
border-radius: 5px;
color: #001f3f; /* 入力欄の文字色を設定 */
background-color: #fff; /* 背景色を白に設定 */
border-radius: 5px; /* 角を丸くする */
}

button {
cursor: pointer;
background-color: #4CAF50;
color: white;
border: 2px solid white;
padding: 10px 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
border: none;
padding: 10px 20px; /* 横幅に余裕を持たせる */
border-radius: 12px; /* 丸い角を作る */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 影を追加 */
transition: all 0.3s ease; /* スムーズなホバートランジション */
}

button:hover {
background-color: #45a049;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* ホバー時に強くなる影 */
}

body, h1, p, label, a, button {
Expand Down

0 comments on commit 94356e3

Please sign in to comment.