-
Notifications
You must be signed in to change notification settings - Fork 4
/
utilities.css
48 lines (47 loc) · 934 Bytes
/
utilities.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
.flex{
display: flex;
}
.item-center{
align-items: center;
}
.justify-between{
justify-content: space-between;
}
.btn{
padding: 0.8rem 3rem;
font-size: 1rem;
font-weight: 600;
border: 2px solid transparent;
outline: none;
cursor: pointer;
text-transform: uppercase;
transition: all .3s ease;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
}
.btn-primary{
background: var(--primary);
color: var(--dark);
}
.btn-primary:hover{
background-color: transparent;
border-color: var(--primary);
color: var(--primary);
}
.btn-secondary{
background-color: transparent;
border-color: var(--primary);
color: var(--primary);
}
.btn-secondary:hover{
background: var(--primary);
color: var(--dark);
}
.flex-1{
flex: 1;
}
.justify-center{
justify-content: center;
}