-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path01-basics.html
More file actions
99 lines (92 loc) · 1.8 KB
/
Copy path01-basics.html
File metadata and controls
99 lines (92 loc) · 1.8 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<style>
.b1 {
background-color: black;
color: white;
border: none;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 14px;
padding-right: 14px;
cursor: pointer;
vertical-align: top;
transition: opacity 0.25s;
}
.b1:hover {
opacity: 0.8;
}
.b1:active {
opacity: 0.4;
}
.b2 {
background-color: rgb(234, 223, 16);
border: none;
margin-left: 20px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 40px;
padding-right: 40px;
font-size: 14px;
border-radius: 20px;
vertical-align: top;
cursor: pointer;
transition: background-color 0.2s, color 0.2s;
}
.b2:hover {
background-color: black;
color: rgb(234, 223, 16);
}
.b2:active {
opacity: 0.7;
}
.b3 {
background-color: rgb(45, 154, 15);
color: white;
border: none;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 25px;
padding-right: 25px;
margin-left: 20px;
border-radius: 14px;
vertical-align: top;
font-weight: bold;
font-size: medium;
transition: box-shadow 0.15s;
}
.b3:hover {
box-shadow: 5px 4px 10px rgba(0, 0, 0, 0.2) ;
}
.b4 {
background-color: white;
color: rgb(0, 102, 255);
border: solid;
border-width: 1px;
border-radius: 10px;
border-color: rgb(0, 102, 255);
padding-top: 10px;
padding-bottom: 10px;
padding-left: 25px;
padding-right: 25px;
margin-left: 20px;
transition: background-color 0.2s, color 0.2s;
}
.b4:hover {
background-color: rgb(0, 102, 255);
color: white;
}
.b4:active {
opacity: 0.7;
}
</style>
<button class="b1">
Request Now
</button>
<button class="b2">
Add to Cart
</button>
<button class="b3">
Sign up
</button>
<button class="b4">
JOIN
</button>