-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbutton.module.css
49 lines (43 loc) · 949 Bytes
/
button.module.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
/**
* Styles For the Button Component
*/
.button {
display: inline-block;
font-family: "Open Sans", sans-serif;
font-weight: 700;
text-align: center;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 12px;
line-height: 1.5;
border-radius: 5px;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.button--primary {
color: #737373;
background-color: #f7e018;
border-color: #f7e018;
}
.button--primary:hover {
color: #000000;
background-color: transparent;
}
.button--secondary {
color: #000000;
background-color: transparent;
border-color: #000000;
}
.button--secondary:hover {
color: #000000;
background-color: #f7e018;
border-color: #f7e018;
}
.button--tertiary {
color: #fff;
background-color: #27ae60;
border-radius: 10px;
}
.button--tertiary:hover {
background-color: #2dca6f;
}