-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
32 lines (28 loc) · 933 Bytes
/
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
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("./src/styles/base.css");
@import url("./src/styles/form.css");
@import url("./src/styles/header.css");
@import url("./src/styles/home-section.css");
@import url("./src/styles/icons-animation.css");
@import url("./src/styles/sections.css");
@import url("./src/styles/slider.css");
@import url("./src/styles/users-table.css");
:root {
--primary-color: yellowgreen;
--primary-success: yellowgreen;
--primary-error: #e00202;
--white: #fafafa;
--secondary-white: #d8d6d6;
--black: rgb(2, 2, 2);
--primary-gray: #565656;
--secondary-gray: #acacac;
--primary-dark-gray: #252525;
--secondary-dark-gray: #333;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: "JetBrains Mono", monospace;
}