-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
52 lines (45 loc) · 1.15 KB
/
index.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
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");
* {
/* border: 1px solid red; */
padding: 0;
margin: 0;
box-sizing: border-box;
}
:root {
--primarybackground: #ffe9e0;
--primaryitemcolor: #ff4d00;
--textcolor: rgba(0, 0, 0, 0.81);
--primarytextcolor: #000000;
--secondarytextcolor: #959190;
--tertiarytextcolor: #443d3d;
--bordercolor: rgba(255, 77, 0, 0.6);
--secondarybordercolor: #e1e1e1;
--tertiarybordercolor: #d9d9d9;
--heartcolor: #e81224;
--light: #ffffff;
--dark: #000000;
}
html,
body {
overflow-x: hidden;
}
body {
font-family: "Space Grotesk", sans-serif !important;
color: var(--primarytextcolor);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: relative;
}
::-webkit-scrollbar {
background-color: #f1f1f1;
width: 10px;
}
::-webkit-scrollbar-thumb {
background-color: var(--primaryitemcolor) !important;
border-radius: 10px !important;
}
::selection {
background-color: var(--primaryitemcolor);
color: var(--light);
}