-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.css
60 lines (47 loc) · 1.03 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;1,300&family=Ubuntu:ital,wght@1,300&display=swap');
:root {
--main-bg-color: rgb(77, 23, 241);
--font1: 'Roboto', sans-serif;
--font2: 'Ubuntu', sans-serif;
--font3: 'Barlow', sans-serif;
}
.font1 {
font-family: var(--font1);
}
.font2 {
font-family: var(--font2);
}
.font3 {
font-family: var(--font3);
}
.max-width-1 {
width: 80vw;
}
.max-width-2 {
width: 70vw;
}
.m-auto {
margin: auto;
}
.btn {
padding: 6px 20px;
border: 2px solid black;
border-radius: 6px;
font-family: var(--font1);
font-size: 21px;
cursor: pointer;
transition: all 0.3s ease-in-out;
margin-right: 30px;
}
.btn:hover {
color: white;
background-color: var(--main-bg-color);
}
.form-input {
padding: 6px 27px;
font-size: 20px;
border: 2px solid black;
border-radius: 5px;
margin: 0px 26px;
font-family: var(--font3);
}