-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuttons.html
More file actions
71 lines (64 loc) · 1.28 KB
/
Copy pathbuttons.html
File metadata and controls
71 lines (64 loc) · 1.28 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
<style>
.subscribe-button{
background-color: rgb(200, 0, 0);
color:white;
border: none;
height: 36px;
width: 105px;
border-radius: 2px;
cursor: pointer;
margin-right: 8px;
transition: opacity 0.15s;
}
.subscribe-button:hover {
opacity: 0.6;
}
.subscribe-button:active {
opacity: 0.5;
}
.join-button{
background-color: white;
border-color: rgb(41, 118, 211);
border-style: solid;
border-width: 1px;
color:rgb(41, 118, 211);
height: 36px;
width: 62px;
border-radius: 2px;
cursor: pointer;
transition: background-color 0.15s,
color 0.15s;
}
.join-button:hover {
background-color:rgb(41, 118, 211) ;
color: white;
}
.join-button:active{
opacity: 0.7;
}
.Tweet-button {
background-color: rgb(2, 137, 255);
color: white;
border: none;
height: 36px;
width: 70px;
border-radius: 18px;
font-weight: bold;
font-size: 15px;
cursor: pointer;
margin-left: 8px;
transition: box-shadow 0.15s
}
.Tweet-button:hover {
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}
</style>
<button class="subscribe-button">
SUBSCRIBE
</button>
<button class="Join-button">
JOIN
</button>
<button class="Tweet-button">
Tweet
</button>