-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
43 lines (37 loc) · 1007 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* Set the background color to a gradient */
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: 10px auto;
width: 300px;
height: 80px;
font-size: 20px;
border: none;
border-radius: 10px;
background-color: #555; /* Default background color */
color: #fff; /* Default text color */
transition: background-color 0.3s, background-image 0.3s; /* Smooth transition for background properties */
}
button:hover {
background-color: #777; /* Lighter gray on hover for all buttons */
}
/* Specific hover styles for "Wedone Web Apps" */
.web-app:hover {
background-image: linear-gradient(to right, #00c6ff, #0072ff); /* Example gradient */
}
button:nth-child(3).web-app:hover {
background-image: linear-gradient(to right, #00ff88, #1ebd0f);
}