-
Notifications
You must be signed in to change notification settings - Fork 0
/
buttons.html
67 lines (62 loc) · 1.18 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<style>
.Subscribe_button{
background-color: #cc0000;
color: white;
border: none;
padding: 10px 16px;
transition: opacity 0.15s;
}
.Subscribe_button:hover{
background-color: white;
color: black;
border: solid black;
border-width: 0.5px;
}
.Subscribe_button:active{
background-color: gray;
}
.join{
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
border-color: rgb(0, 0, 0);
border-radius: 20px;
border-style: solid;
border-width: 2px;
cursor: pointer;
margin-right: 8px;
transition: color 0.3s, background-color 0.3s, opacity 0.1s;
padding: 10px;
}
.join:hover{
background-color: gray;
}
.join:active{
opacity: 0.8;
}
.tweet{
color: white;
background-color: #1d9bf0;
border: none;
height: 40px;
width: 74px;
border-radius: 20px;
font-weight: bold;
font-size: 15px;
cursor: pointer;
transition: box-shadow;
}
.tweet:hover{
box-shadow: 5px 5px 10px gray;
}
</style>
<p>
<button class="Subscribe_button">
SUBSCRIBE
</button>
<button class="join">
JOIN
</button>
<button class="tweet">
Tweet
</button>
</p>