-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (60 loc) 路 1.43 KB
/
Copy pathstyles.css
File metadata and controls
72 lines (60 loc) 路 1.43 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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-gray-50 text-gray-900 antialiased;
}
}
@layer components {
.prose {
@apply max-w-none;
}
.prose h1 {
@apply text-4xl font-bold mb-4;
}
.prose h2 {
@apply text-2xl font-bold mb-3 mt-8;
}
.prose h3 {
@apply text-xl font-semibold mb-2 mt-6;
}
.prose p {
@apply mb-4 leading-relaxed;
}
.prose ul {
@apply list-disc pl-5 mb-4 space-y-2;
}
.prose blockquote {
@apply border-l-4 border-primary-500 pl-4 italic my-6;
}
}
/* ==========================================================================
Ultra Battery Saver Mode (Survival Mode)
True #000000 OLED pure black background, no shadows, no animations
========================================================================== */
html.survival-mode {
color-scheme: dark;
}
html.survival-mode body,
html.survival-mode div,
html.survival-mode main,
html.survival-mode header,
html.survival-mode footer,
html.survival-mode nav {
background-color: #000000 !important;
}
html.survival-mode * {
animation: none !important;
transition: none !important;
box-shadow: none !important;
text-shadow: none !important;
backdrop-filter: none !important;
}
html.survival-mode input,
html.survival-mode textarea,
html.survival-mode select {
background-color: #0d0d0d !important;
border-color: #333333 !important;
color: #ffffff !important;
}