-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.css
79 lines (75 loc) · 1.2 KB
/
utils.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
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
:root{
--main-bg-color:#d65106;
--font1: 'Rubik', sans-serif;
}
.container{
width: 80vw;
margin: 0 auto;
/* overflow: hidden; */
}
.btn1{
font-size: 23px;
color: white;
background-color: var(--main-bg-color);
border: none;
border-radius: .5rem;
transition: 0.5s;
margin: 18px 0px;
padding: 1.8rem 3.1rem;
}
.btn1:hover{
background-color: black;
}
.bold{
font-weight: bold;
}
.center{
display: flex;
justify-content: center;
align-items: center;
}
.f-1{
font-size: 3.8rem;
line-height: 5rem;
}
.t-center{
text-align: center;
}
.m-2{
margin: 2rem;
}
.black{
color: black;
}
.head{
margin: 6.3rem 0;
}
.head p{
font-size: 2rem;
color: gray;
}
.my-12{
margin: 12rem 0;
}
.lh-5{
line-height: 5rem;
}
.font-2{
font-size: 2.5rem;
}
.main-bg-color{
color: var(--main-bg-color);
}
.lh-3{
line-height: 3rem;
}
.row{
display: flex;
flex-wrap: wrap;
}
.display-center{
display: flex;
justify-content: center;
align-items: center;
}