-
Notifications
You must be signed in to change notification settings - Fork 0
/
text2button.html
61 lines (56 loc) · 1.3 KB
/
text2button.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
58
59
60
61
.btn-blue {
display: inline-block;
font-size: 80%;
background-color: #216CBE;
border-color: gray !important;
color: #fff !important;
padding: 5px 5px;
border-radius: 5px;
box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.3);
}
.btn-blue:hover {
background-color: #E04C1F;
border-color: gray !important;
}
.icon {
box-shadow: 0px 15px 30px 0px rgba(0,0,0,0.2);
}
.btn-green {
display: inline-block;
font-size: 120%;
background-color: #00262626;
border-color: #000000 !important;
color: #fff !important;
padding: 5px 5px;
border-radius: 5px;
}
.btn-green:hover {
background-color: #ff6347;
border-color: #ff6347 !important;
}
.btn-greenround {
display: inline-block;
font-size: 120%;
background-color: #00FFFAF0;
border-color: #000000 !important;
color: #fff !important;
padding: 5px 5px;
border-radius: 50px;
}
.btn-greenround:hover {
background-color: #ff6347;
border-color: #ff6347 !important;
}
.btn-greenround2 {
display: inline-block;
font-size: 120%;
background-color: #0047b3;
border-color: #0047b3 !important;
color: #fff !important;
padding: 5px 5px;
border-radius: 20px;
}
.btn-greenround2:hover {
background-color: #ff6347;
border-color: #ff6347 !important;
}