forked from shyamtawli/devFind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
47 lines (40 loc) · 1009 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700;900&family=Poppins:wght@400;600;700&display=swap');
html {
font-size: 16px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-color: rgba(20, 29, 47, 1);
--secondary-color: #1e2a47;
--border-color: rgba(194, 183, 183, 0.1);
--text-color: #fff;
}
/* light theme */
html.light {
--primary-color: rgb(243, 244, 246);
--secondary-color: white;
--border-color: rgba(20, 29, 47, 0.1);
--text-color: rgba(20, 29, 47, 1);
}
body {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: var(--primary-color);
color: var(--text-color);
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}
@media (max-width: 480px) {
html {
font-size: 12px;
}
}