-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2e.html
46 lines (39 loc) · 869 Bytes
/
2e.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
<!-- LinkedIn Button -->
<style>
.website{
background-color:rgb(10,102,194);
border:none;
font-weight:bold;
color:white;
height:40px;
width:225px;
border-radius:20px;
cursor:pointer;
transition:background-color 0.15s;
}
.save{
background-color:white;
color:rgb(10, 102, 194);
border-color:rgb(10, 102, 194);
border-width:1px;
border-style:solid;
height:40px;
width:80px;
border-radius:20px;
font-weight:bold;
font-size:15px;
margin-left:8px;
cursor: pointer;
transition: background-color 0.15s,
border-width 0.05s;
}
.website:hover{
background-color:rgb(9, 84, 159);
}
.save:hover{
background-color:rgb(226, 240, 254);
border-width:2px;
}
</style>
<button class="website">Apply on company website</button>
<button class="Save">Save</button>