Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
WedoneOfficiel authored May 8, 2024
1 parent dd2c036 commit 555625f
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,22 @@ body {
background: #333333;
font-family: Arial, sans-serif;
color: #ffffff;
padding: 20px;
}

h2 {
color: #ccc;
text-align: center;
}

.category {
margin-bottom: 20px;
}

/* Center the buttons */
button {
display: block;
margin: 20px auto;
margin: 10px auto;
width: 300px;
height: 80px;
font-size: 20px;
Expand All @@ -23,12 +33,11 @@ button:hover {
background-color: #777; /* Lighter gray on hover for all buttons */
}

/* Specific hover styles for "Wedone To Do List" */
button:nth-child(3):hover {
background-image: linear-gradient(to right, #00c6ff, #0072ff);
/* Specific hover styles for "Wedone Web Apps" */
.web-app:hover {
background-image: linear-gradient(to right, #00c6ff, #0072ff); /* Example gradient */
}

/* Specific hover styles for "Wedone QR Code" */
button:nth-child(5):hover {
button:nth-child(3).web-app:hover {
background-image: linear-gradient(to right, #00ff88, #1ebd0f);
}

0 comments on commit 555625f

Please sign in to comment.