forked from escapingnetwork/pages
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (41 loc) · 1.1 KB
/
style.css
File metadata and controls
48 lines (41 loc) · 1.1 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
@config "./tailwind.config.js";
@import "tailwindcss";
@source "./app/**/*.{elm,ts,js}";
@source "./src/**/*.{elm,ts,js}";
@source "./index.html";
/* Define dark mode variant */
@variant dark (&:where(.dark, .dark *));
/* Extend the theme */
@theme {
--color-primary-50: var(--color-yellow-50);
--color-primary-100: var(--color-yellow-100);
--color-primary-200: var(--color-yellow-200);
--color-primary-300: var(--color-yellow-300);
--color-primary-400: var(--color-yellow-400);
--color-primary-500: var(--color-yellow-500);
--color-primary-600: var(--color-yellow-600);
--color-primary-700: var(--color-yellow-700);
--color-primary-800: var(--color-yellow-800);
--color-primary-900: var(--color-yellow-900);
}
body {
@apply antialiased text-slate-500 dark:text-slate-400 bg-white dark:bg-slate-900
}
/* Elm Syntax Highlight CSS */
pre.elmsh {
padding: 10px;
margin: 0;
text-align: left;
overflow: auto;
}
code.elmsh {
padding: 0;
}
.elmsh-line:before {
content: attr(data-elmsh-lc);
display: inline-block;
text-align: right;
width: 40px;
padding: 0 20px 0 0;
opacity: 0.3;
}