-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlecture2.html
More file actions
61 lines (53 loc) · 1.07 KB
/
lecture2.html
File metadata and controls
61 lines (53 loc) · 1.07 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
<button class="subscribe-button"> SUBSCRIBE</button>
<button class="join-button">JOIN</button>
<button class="tweet-button">TWEET</button>
<style>
.subscribe-button{
background-color: rgb(213, 30, 30);
color: white;
height:38px;
width:108px;
border-radius:0.15cm;
border:none;
cursor: pointer;
margin-right:8px;
transition: opacity 0.5;
}
.subscribe-button:hover{
opacity:0.7;
}
.subscribe-button:active{
opacity:0.3;
}
.join-button{
background-color:white;
color:rgb(13, 129, 246);
height:38px;
width:68px;
border:solid;
border-radius:0.15cm;
margin-right:8px;
cursor:pointer;
transition:background-color 0.5;
transition:color 0.5;
}
.join-button:hover{
background-color:rgb(13, 129, 246);
color:white;
}
.join-button:active{
opacity:0.5;
}
.tweet-button{
background-color:rgb(11, 143, 231);
color:white;
height:39px;
width:69px;
border:solid;
border-radius:19px;
cursor:pointer;
}
.tweet-button:hover{
box-shadow:5px 5px 10px rgba(0,0,0,0.15) ;
}
</style>