-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.css
More file actions
76 lines (65 loc) · 1.22 KB
/
Copy pathutils.css
File metadata and controls
76 lines (65 loc) · 1.22 KB
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
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2:wght@500&display=swap");
:root {
--main-bg-color: rgb(13, 241, 13);
--font1: "Baloo Bhaina 2", cursive;
--font2: "Roboto", sans-serif;
}
.center{
text-align: center
}
.font1 {
font-family: var(--font1);
}
.font2 {
font-family: var(--font2);
}
.max-width-1 {
max-width: 80vw;
}
.max-width-2 {
max-width: 60vw;
}
.m-auto {
margin: auto;
}
.mx-1{
margin-left: 23px;
margin-right: 23px;
}
.my-2{
margin-top: 32px;
margin-bottom: 32px;
}
.btn {
padding: 0px 20px;
padding-top: 3px;
border: 2px solid black;
border-radius: 6px;
font-family: var(--font1);
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
.btn:hover {
color: white;
background: var(--main-bg-color);
}
.form-input {
padding: 0px 5px;
padding-top: 3px;
font-size: 16px;
border: 2px solid black;
border-radius: 4px;
margin: 0 13px;
font-family: var(--font1);
}
.form-box input, textarea{
width: 52vw;
padding: 0px 6px;
margin: 7px 0;
font-size: 18px;
font-family: var(--font1);
border: 2px solid var(--main-bg-color);
border-radius: 5px;
}