juxscript 1.0.115 → 1.0.116
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/create/themes/base.css +125 -0
- package/package.json +1 -1
package/create/themes/base.css
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
--font-size-lg: 1.125rem;
|
|
11
11
|
--font-size-xl: 1.5rem;
|
|
12
12
|
--font-size-2xl: 2rem;
|
|
13
|
+
--font-size-3xl: 2.25rem; /* Added for H1 default */
|
|
13
14
|
--font-size-4xl: 4rem;
|
|
14
15
|
--line-height-normal: 1.6;
|
|
15
16
|
--line-height-tight: 1.2;
|
|
@@ -70,3 +71,127 @@
|
|
|
70
71
|
--color-surface-hover: #243447;
|
|
71
72
|
--color-border: #384456;
|
|
72
73
|
}
|
|
74
|
+
|
|
75
|
+
/* --- Primitives & Reset --- */
|
|
76
|
+
|
|
77
|
+
*, *::before, *::after {
|
|
78
|
+
box-sizing: border-box;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
html, body {
|
|
82
|
+
height: 100%;
|
|
83
|
+
margin: 0;
|
|
84
|
+
padding: 0;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
body {
|
|
88
|
+
font-family: var(--font-family-base);
|
|
89
|
+
font-size: var(--font-size-base);
|
|
90
|
+
line-height: var(--line-height-normal);
|
|
91
|
+
color: var(--color-text-primary);
|
|
92
|
+
background-color: var(--color-background);
|
|
93
|
+
-webkit-font-smoothing: antialiased;
|
|
94
|
+
-moz-osx-font-smoothing: grayscale;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
h1, h2, h3, h4, h5, h6 {
|
|
98
|
+
margin-top: 0;
|
|
99
|
+
margin-bottom: var(--space-md);
|
|
100
|
+
font-weight: 700;
|
|
101
|
+
line-height: var(--line-height-tight);
|
|
102
|
+
color: var(--color-text-primary);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
h1 { font-size: var(--font-size-3xl); letter-spacing: -0.02em; }
|
|
106
|
+
h2 { font-size: var(--font-size-2xl); letter-spacing: -0.01em; }
|
|
107
|
+
h3 { font-size: var(--font-size-xl); }
|
|
108
|
+
h4 { font-size: var(--font-size-lg); }
|
|
109
|
+
h5 { font-size: var(--font-size-base); }
|
|
110
|
+
h6 { font-size: var(--font-size-sm); text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-secondary); }
|
|
111
|
+
|
|
112
|
+
p {
|
|
113
|
+
margin-top: 0;
|
|
114
|
+
margin-bottom: var(--space-md);
|
|
115
|
+
max-width: 70ch; /* Optimal reading width */
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
a {
|
|
119
|
+
color: var(--color-brand);
|
|
120
|
+
text-decoration: none;
|
|
121
|
+
font-weight: 500;
|
|
122
|
+
transition: color var(--transition-fast);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
a:hover {
|
|
126
|
+
color: var(--color-brand-hover);
|
|
127
|
+
text-decoration: underline;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
strong, b {
|
|
131
|
+
font-weight: 700;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
em, i {
|
|
135
|
+
font-style: italic;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
ul, ol {
|
|
139
|
+
margin-top: 0;
|
|
140
|
+
margin-bottom: var(--space-md);
|
|
141
|
+
padding-left: var(--space-xl);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
li {
|
|
145
|
+
margin-bottom: var(--space-xs);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
code, kbd, samp {
|
|
149
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
150
|
+
font-size: 0.9em;
|
|
151
|
+
padding: 0.2em 0.4em;
|
|
152
|
+
border-radius: var(--radius-sm);
|
|
153
|
+
background-color: var(--color-surface-hover);
|
|
154
|
+
color: var(--color-text-primary);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
pre {
|
|
158
|
+
display: block;
|
|
159
|
+
overflow-x: auto;
|
|
160
|
+
padding: var(--space-md);
|
|
161
|
+
background-color: var(--color-surface-hover);
|
|
162
|
+
border: 1px solid var(--color-border);
|
|
163
|
+
border-radius: var(--radius-md);
|
|
164
|
+
margin-bottom: var(--space-lg);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
pre code {
|
|
168
|
+
background-color: transparent;
|
|
169
|
+
padding: 0;
|
|
170
|
+
color: inherit;
|
|
171
|
+
font-size: var(--font-size-sm);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
blockquote {
|
|
175
|
+
margin: var(--space-lg) 0;
|
|
176
|
+
padding-left: var(--space-lg);
|
|
177
|
+
border-left: 4px solid var(--color-brand-subtle);
|
|
178
|
+
color: var(--color-text-secondary);
|
|
179
|
+
font-style: italic;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
img, video {
|
|
183
|
+
max-width: 100%;
|
|
184
|
+
height: auto;
|
|
185
|
+
display: block;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
hr {
|
|
189
|
+
border: 0;
|
|
190
|
+
border-top: var(--border-width) solid var(--color-border);
|
|
191
|
+
margin: var(--space-xl) 0;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
button, input, select, textarea {
|
|
195
|
+
font-family: inherit;
|
|
196
|
+
font-size: inherit;
|
|
197
|
+
}
|