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 9ae0256 commit 5aaf649
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@

body {
font-family: Arial, sans-serif;
background-color: #001f3f;
color: #fff;
margin: 0;
padding: 20px;
display: flex;
justify-content: flex-start;
align-items: flex-start;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
flex-direction: column;
}

form {
Expand All @@ -24,20 +25,25 @@ input, textarea {
margin-top: 5px;
padding: 8px;
font-size: 16px;
color: #001f3f !important;
color: #001f3f;
background-color: #fff;
border-radius: 5px;
}


button {
cursor: pointer;
background-color: #4CAF50;
color: white;
border: none;
padding: 10px;
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);
}

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

0 comments on commit 5aaf649

Please sign in to comment.