-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton
More file actions
70 lines (66 loc) · 1.4 KB
/
Copy pathbutton
File metadata and controls
70 lines (66 loc) · 1.4 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
<style>
.subscribe-button{
background-color: rgb(228, 24, 24);
color: White;
border: none;
border-radius: 2px;
cursor: pointer;
margin-right: 8px;
margin-left: 20px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 16px;
padding-right: 16px;
transition: opacity 0.15s;
}
.subscribe-button:hover{
opacity: 0.2;
}
.subscribe-button:active{
opacity: 0.6;
}
.join-button{
background-color: white;
border-color: rgb(49, 138, 221);
border-style: solid;
border-width: 1px;
color: rgb(243, 235, 226);
border-radius: 2px;
cursor: pointer;
transition: background-color 1s,
color 0.15s;
padding: 15px;
padding-left: 30px;
padding-top: 20px;
}
.join-button:hover{
background-color: rgb(49, 138, 221);
color: rgb(152, 165, 233);
}
.join-button:active{
opacity:0.7;
}
.tweet-button{
background-color: rgb(73, 168, 223);
color: white;
border: none;
height: 36px;
width: 80px;
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 Channel
</button>
<button class="join-button">JOIN my Channel</button>
<button class="Tweet-button">
Tweet
</button>