-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton.html
More file actions
85 lines (50 loc) · 1.13 KB
/
button.html
File metadata and controls
85 lines (50 loc) · 1.13 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<style>
.SUBSCRIBE-button {
background-color: rgba(205, 36, 36, 0.87);
color: rgba(250, 248, 248, 0.947); /* please delete later */
border: none;
height: 38px;
width: 110px;
border-radius: 6px;
cursor: pointer;
margin-right: 7px;
}
.subscribe-button:hover {
background-color: aquamarine;
}
.subscribe-button:active {
background-color: rgba(0, 255, 106, 0.523);
}
.join-button {
background-color:rgb(248, 249, 249);
border-color:rgba(25, 111, 216, 0.947);
border-style: solid;
border-width: 1.5px;
color:rgba(26, 104, 199, 0.947);
height: 37px;
width: 60px;
border-radius: 2px;
margin-right: 7px;
cursor: pointer;
transition: background-color 0.5s;
}
.tweet-button {
background-color:rgb(86, 162, 212);
color: rgba(255, 255, 255, 0.947);
height: 38px;
width: 77px;
border: none;
border-radius: 50px;
font-weight: bolder;
margin-left: 7.5px;
}
</style>
<button class="SUBSCRIBE-button" >
SUBSCRIBE
</button>
<button class="join-button">
JOIN
</button>
<button class="tweet-button">
Tweet
</button>