-
Notifications
You must be signed in to change notification settings - Fork 0
/
otherButtons.html
51 lines (51 loc) · 1.22 KB
/
otherButtons.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
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale = 1.0">
<title>Other Buttons.</title>
<style>
.button-LIKE{
background-color: rgb(255, 0, 191);
color: rgb(36, 33, 33);
border: black;
padding:12px 20px;
cursor: pointer;
border-radius: 7px;
font-size: 24px;
}
.button-COMMENT{
background-color: rgb(220, 230, 176);
color: rgb(36, 33, 33);
border: black;
padding: 12px 20px;
cursor: pointer;
border-radius: 7px;
font-size: 24px;
}
.button-FOLLOW{
background-color: rgb(0, 255, 60);
color:rgb(36, 33, 33) ;
border: black;
padding: 12px 20px;
cursor: pointer;
border-radius: 7px;
font-size: 24px;
}
.button-LIKE:hover{
background-color: rgb(255, 0, 191);
}
.button-COMMENT:hover{
background-color: rgb(220, 230, 176) ;
}
.button-FOLLOW:hover{
background-color: rgb(0, 255, 60);
}
</style>
</head>
<body>
<button class ="button-LIKE">LIKE</button>
<button class = "button-COMMENT">COMMENT</button>
<button class = "button-FOLLOW">FOLLOW</button>
</body>
</html>