-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.css
More file actions
50 lines (43 loc) · 926 Bytes
/
globals.css
File metadata and controls
50 lines (43 loc) · 926 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
45
46
47
48
49
50
@import "tailwindcss";
:root {
--color-surface-950: #081c2e;
--color-surface-900: #0b2031;
--color-surface-700: #184566;
--color-accent: #63e8c7;
--color-accent-strong: #7ff2d6;
--color-text-primary: #f4fbff;
--color-text-muted: rgba(244, 251, 255, 0.82);
--color-border-soft: rgba(186, 232, 255, 0.2);
--navbar-height: 72px;
}
@theme inline {
--color-background: var(--color-surface-950);
--color-foreground: var(--color-text-primary);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
* {
box-sizing: border-box;
}
html,
body {
min-height: 100%;
}
body {
margin: 0;
background: var(--color-surface-950);
color: var(--color-text-primary);
font-family:
var(--font-geist-sans),
ui-sans-serif,
system-ui,
-apple-system,
sans-serif;
line-height: 1.5;
}
a {
color: inherit;
}
main {
min-height: calc(100vh - var(--navbar-height));
}