Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
femiolamijulo authored Jan 17, 2024
1 parent 92599e4 commit 90bbe79
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.header {
text-align: left;
padding: 10px;
background-color: #4caf50; /* Green header */
color: white;
text-align: center;
padding: 10px 0;
}

.header img {
Expand All @@ -12,16 +14,22 @@
}

.button {
display: block;
margin-top: 10px;
padding: 10px;
background-color: #4caf50; /* Example background color */
display: inline-block;
padding: 10px 20px;
margin: 20px;
background-color: #66bb6a; /* Medium green button */
color: white;
text-decoration: none;
border-radius: 5px;
transition: box-shadow 0.3s ease-in-out;
text-align: left;
}

.button:hover {
box-shadow: 0 0 8px 2px #66bb6a; /* Green glow */
background-color: #81c784; /* Lighter green on hover */
}

body {
font-family: Arial, sans-serif;
background-color: #e8f5e9; /* Light green background */
color: #1b5e20; /* Dark green text */
}

0 comments on commit 90bbe79

Please sign in to comment.