-
Notifications
You must be signed in to change notification settings - Fork 0
/
buttons.html
70 lines (69 loc) · 1.43 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
67
68
69
70
<style>
.Subscribe-button {
background-color: rgb(204, 0, 0);
transition: opacity 0.2s;
border: none;
height:36px;
width:105px;
border-radius: 2px;
font-family: Arial;
font-size: 18px;
cursor: pointer;
color: white;
margin-right: 9px;
}
.Subscribe-button:hover{
opacity: 0.7;
}
.Subscribe-button:active{
opacity: 0.5;
}
.Join-button {
border-width: 1px;
transition: background-color 0.5s,
color 0.5s;
font-family: Arial;
font-size: 15px;
font-weight: 400;
height: 36px;
width: 50px;
background-color:rgb(255, 255, 255);
color: rgb(6,95, 212);
border-radius: 2px;
border-color: rgb(41, 118, 211);
border-style: solid;
cursor: pointer;
}
.Join-button:hover{
background-color:rgb(41,118, 211);
color:white;
}
.Join-button:active{
opacity:0.7;
}
.Tweet-button {
background-color: rgb(29, 155, 255);
border-radius: 34px;
margin-left: 9px;
cursor: pointer;
font-weight: bold;
font-size: 15px;
height: 36px;
width: 74px;
border:none;
color: white;
transition: box-shadow 0.2s;
}
.Tweet-button:hover{
box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
}
</style>
<button class="Subscribe-button">
Subscribe
</button>
<button class="Join-button">
JOIN
</button>
<button class="Tweet-button">
Tweet
</button>