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 20, 2024
1 parent 6ec122f commit f6f046d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,18 @@ form {

label {
margin-top: 10px;
color: #fff; /* 文字の色を白に変更 */
}

input, textarea {
margin-top: 5px;
padding: 8px;
font-size: 16px;
color: #001f3f;
background-color: #fff;
color: #fff; /* 文字の色を白に変更 */
background-color: rgba(255, 255, 255, 0.5); /* 半透明に変更 */
border-radius: 5px;
border: none;
outline: none;
}

button {
Expand All @@ -36,13 +39,13 @@ button {
border: none;
padding: 10px 20px;
border-radius: 0px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 10); /
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

button:hover {
background-color: #45a049;
box-shadow: 0 6px 12px rgba(0, 0, 0, 15);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

0 comments on commit f6f046d

Please sign in to comment.