forked from TinkerHubKMCTCE/Fi-Pro-Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutilities.css
47 lines (43 loc) · 829 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
.flex{
display: flex;
}
.items-center{
align-items: center;
}
.justify-between{
justify-content: space-between;
}
.btn{
padding: 0.8rem 2rem;
font-size: 1rem;
font-weight: 600;
border: 2px solid transparent;
outline:none;
cursor:pointer;
text-transform: uppercase;
transition: all .3s ease;
}
.btn-primary{
background:var(--primary);
color:var(--secondary)
}
.btn-primary:hover{
background:transparent;
border-color:var(--primary);
color:var(--primary)
}
.btn-secondary{
background:transparent;
color:var(--primary);
border-color:var(--primary);
}
.btn-secondary:hover{
background:var(--primary);
color:var(--secondary);
}
.flex-1{
flex:1;
}
.justify-center{
justify-content: center;
}