-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.css
More file actions
108 lines (89 loc) · 1.76 KB
/
app.css
File metadata and controls
108 lines (89 loc) · 1.76 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
@import 'tailwindcss';
/* Import Design System */
@import './lib/styles/tokens.css';
@import './lib/styles/theme.css';
@import './lib/styles/animations.css';
/* Global styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
background-color: var(--color-background);
color: var(--color-text-primary);
height: 100%;
overflow: hidden;
}
body {
font-family:
ui-monospace, 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Courier New', monospace;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: var(--color-background);
color: var(--color-text-primary);
font-size: var(--font-size-base);
line-height: var(--line-height-normal);
height: 100%;
overflow: hidden;
}
/* Typography utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: var(--font-weight-semibold);
line-height: var(--line-height-tight);
color: var(--color-text-primary);
}
h1 {
font-size: var(--font-size-4xl);
}
h2 {
font-size: var(--font-size-3xl);
}
h3 {
font-size: var(--font-size-2xl);
}
h4 {
font-size: var(--font-size-xl);
}
h5 {
font-size: var(--font-size-lg);
}
h6 {
font-size: var(--font-size-base);
}
p {
color: var(--color-text-secondary);
}
a {
color: var(--color-accent);
text-decoration: none;
transition: color var(--duration-fast) var(--easing-standard);
}
a:hover {
color: var(--color-accent-hover);
}
/* Focus styles */
:focus-visible {
outline: 2px solid var(--color-accent);
outline-offset: 2px;
}
/* Scrollbar styling */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: var(--color-surface-1);
}
::-webkit-scrollbar-thumb {
background: var(--color-surface-3);
border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
background: var(--color-surface-4);
}