-
Notifications
You must be signed in to change notification settings - Fork 0
/
button.css
82 lines (69 loc) · 1.54 KB
/
button.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
*,
*:before,
*:after {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
/*
html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-size: 62.5%;
} */
.btn,
a.btn,
button.btn {
font-size: 1.6rem;
font-weight: 700;
line-height: 1.5;
position: relative;
display: inline-block;
padding: 1rem 4rem;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: all 0.3s;
transition: all 0.3s;
text-align: center;
vertical-align: middle;
text-decoration: none;
letter-spacing: 0.1em;
color: #212529;
border-radius: 0.5rem;
}
a.btn-malformation {
font-size: 2rem;
padding: 3rem 4rem;
color: #fff;
border-radius: 100% 80px / 80px 100%;
background-color: #eb6100;
}
a.btn-malformation:hover {
color: #fff;
border-radius: 60% 80% / 100% 80%;
}
a.btn-malformation {
font-size: 2rem;
padding: 3rem 4rem;
color: #fff;
border-radius: 100% 80px / 80px 100%;
}
a.btn-malformation:hover {
color: #fff;
border-radius: 60% 80% / 100% 80%;
}
.btn-malformation--pastel {
background: #fca1a1;
background: -webkit-linear-gradient(-45deg, #fca1a1 40%, #fcfc5d 100%);
background: -webkit-linear-gradient(315deg, #fca1a1 40%, #fcfc5d 100%);
background: linear-gradient(135deg, #fca1a1 40%, #fcfc5d 100%);
-webkit-box-shadow: 30px 10px 0 #fefeb3;
box-shadow: 30px 10px 0 #fefeb3;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fca1a1', endColorstr='#fcfc5d', GradientType=1);
}
#button-container {
text-align: center;
margin-bottom: 100px;
}