-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3a.html
57 lines (51 loc) · 1.1 KB
/
3a.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
<button class="requestnow">
Request now
</button>
<button class="addtocart">
Add to Cart
</button>
<button class="signup">
Sign up
</button>
<style>
.requestnow{background-color:black;
color:white;
margin-right:10px;
padding-left:10px;
padding-right:10px;
padding-top:15px;
padding-bottom:15px;
cursor:pointer;}
.requestnow:hover{opacity:0.7;
background-color:rgb(38, 26, 26);
transition:opacity 0.15s;}
.requestnow:active{opacity:0.7;}
</style>
<style>
.addtocart{background-color:rgb(255, 216, 20);
padding-top:15px;
padding-bottom:15px;
padding-left:28px;
padding-right:28px;
border-radius:30px;
font-weight:bold;
border:none;
cursor:pointer;}
.addtocart:hover{opacity:0.7;
background-color:rgb(226, 193, 24);
transition:opacity 0.2s;}
</style>
<style>
.signup{background-color:rgb(35, 163, 35);
color:white;
font-weight:bold;
border-radius:5px;
border:none;
height:35px;
width:108px;
font-size:15px;
cursor:pointer;
transition:0.15s;}
.signup:hover{opacity:0.9;
box-shadow:5px 5px 10px rgba(0,0,0,0.15);}
</style>