-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (35 loc) · 742 Bytes
/
style.css
File metadata and controls
45 lines (35 loc) · 742 Bytes
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
/* Import Google font - Comfortaa */
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@200;300;400;500;600;700&display=swap");
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Comfortaa", sans-serif;
/* Chrome and Opera */
user-select: none;
/* Safari */
-webkit-user-select: none;
/* Konqueror HTML */
-khtml-user-select: none;
/* Firefox */
-moz-user-select: none;
/* Internet Explorer/Edge */
-ms-user-select: none;
}
:link {
color: #6f6;
}
:visited {
color: #66f;
}
:root {
--brand: #99ff99;
--bg: #f7faf8;
--card: #ffffff;
--ink: #0f1721;
--muted: #667085;
--ring: rgba(153, 255, 153, 0.5);
--ok: #16a34a;
--warn: #ea580c;
--busy: #b91c1c;
}