-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuttons.html
More file actions
59 lines (59 loc) · 1.23 KB
/
Copy pathbuttons.html
File metadata and controls
59 lines (59 loc) · 1.23 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
<style>
.subs{
background-color: rgb(200, 0, 0);
color: white;
border:none;
border-radius: 2px;
cursor:pointer;
margin-right:10px;
transition: opacity 0.15s;
padding-left: 8px;
padding-top: 10px;
padding-right: 8px;
padding-bottom: 10px;
}
.subs:hover{
opacity: 0.8;
}
.subs:active{
opacity: 0.6;
}
.join:hover{
background-color:rgb(29, 114, 251);
color: white;
border-width: 1px;
border-color: white;
}
.join:active{
opacity: 0.6;
}
.join{
height : 36px;
width:60px;
border-radius: 2px;
border-color: rgb(29, 114, 251);
background-color: white;
color: rgb(29, 114, 251);
cursor:pointer;
margin-right:10px;
}
.tweet{
height : 36px;
width:70px;
border-radius: 30px;
border:none;
color: white;
background-color: rgb(29, 114, 251);
cursor:pointer;
font-weight: bold;
}
.tweet:hover{
box-shadow: 2px 2px 10px grey;
/*box-shadow : 5px 5px 10px rgba(0,0,0,0.15);
r-red,g-green,b-blue,a-opacity
box-shadow : horizontal vertical blur colour*/
}
</style>
<button class="subs">SUBSCRIBE</button>
<button class="join">JOIN</button>
<button class="tweet">Tweet</button>