-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbotoes.css
68 lines (58 loc) · 1.18 KB
/
botoes.css
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
.btn {
border: none;
font-family: 'Lato';
cursor: pointer;
display: inline-block;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
outline: none;
position: relative;
}
.btn:after {
content: '';
position: absolute;
z-index: -1;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
/* Pseudo elements for icons */
.btn:before {
font-family: 'FontAwesome';
line-height: 1;
position: relative;
}
/* Icon separator */
.btn-sep {
padding: 10px 40px 10px 80px;
border-radius: 20px;
}
.btn-sep:before {
background: rgb(196, 0, 104);
}
/* Button 1 */
.btn-1 {
background: deeppink;
color: #fff;
}
.btn-1:hover {
background: rgb(185, 4, 101);
}
.btn-1:active {
background: deeppink;
top: 2px;
}
.btn-1:before {
position: absolute;
left: 0;
top: 0;
width: 50px;
height: 50px;
margin-top: -8px;
border-radius: 50%;
content: "\f1d8";
display: flex;
align-items: center;
justify-content: center;
}