-
Notifications
You must be signed in to change notification settings - Fork 0
/
buttons.html
44 lines (38 loc) · 911 Bytes
/
buttons.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Styled Buttons</title>
<style>
.button-ACCEPT {
background-color: #4CAF50; /* Green */
color:gray;
border: none;
padding: 14px 26px;
cursor: pointer;
border-radius: 7px;
font-size: 19px;
}
.button-DECLINE {
background-color: #f44336; /* Red */
color: gray;
border: none;
padding: 14px 26px;
cursor: pointer;
border-radius: 7px;
font-size: 19px;
}
.button-ACCEPT:hover {
background-color: #45a049; /* Darker green */
}
.button-DECLINE:hover {
background-color: #e53935; /* Darker red */
}
</style>
</head>
<body>
<button class="button-ACCEPT">Accept</button>
<button class="button-DECLINE">Decline</button>
</body>
</html>