status-wall-theme 1.2.0 → 1.2.2
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.
- checksums.yaml +4 -4
- data/HOW TO USE/ADDING IMAGES TO POSTS.md +29 -0
- data/HOW TO USE/BATCH DATE ADDITION.md +38 -0
- data/HOW TO USE/CONFIG YAML.md +37 -0
- data/HOW TO USE/CREATING A POST.md +29 -0
- data/HOW TO USE/FEATURED IMAGES LEFT SIDEBAR.md +46 -0
- data/HOW TO USE/FEATURES.md +11 -0
- data/HOW TO USE/HOW TO USE CALLOUTS.md +29 -0
- data/HOW TO USE/HOW TO USE MOODS.md +26 -0
- data/HOW TO USE/PINNED POSTS RIGHT SIDEBAR.md +71 -0
- data/HOW TO USE/SOCIAL MEDIA SHARE IMAGES.md +42 -0
- data/HOW TO USE/THEME CREATION.md +27 -0
- data/README.md +104 -0
- data/_data/featured-images.yaml +4 -0
- data/_data/site.yaml +16 -0
- data/_includes/css-links.html +3 -0
- data/_includes/favicon.html +10 -0
- data/_includes/footer.html +3 -0
- data/_includes/header.html +13 -0
- data/_includes/meta.html +25 -0
- data/_includes/sidebar-left.html +20 -0
- data/_includes/sidebar-right.html +27 -0
- data/_includes/theme-styles.html +67 -0
- data/_includes/theme-switcher.html +37 -0
- data/_layouts/default.html +41 -0
- data/_layouts/pin.html +44 -0
- data/_layouts/post.html +55 -0
- data/_posts/2026-03-20-Markdown-Showcase.md +75 -0
- data/_posts/2026-03-20-mood-check.md +7 -0
- data/_posts/2026-03-23-Batch-Date-Addition.md +38 -0
- data/_posts/2026-03-23-test-draft-2.md +0 -0
- data/_posts/2026-03-23-test-draft.md +0 -0
- data/_posts/featured/2026-03-2-SOCIAL-MEDIA-SHARE-IMAGES.md +49 -0
- data/_posts/featured/2026-03-22-ADDING-IMAGES-TO-POSTS.md +36 -0
- data/_posts/featured/2026-03-22-CONFIG-YAML.md +44 -0
- data/_posts/featured/2026-03-22-CREATING-A-POST.md +36 -0
- data/_posts/featured/2026-03-22-FEATURED-IMAGES-LEFT-SIDEBAR.md +53 -0
- data/_posts/featured/2026-03-22-HOW-TO-USE-CALLOUTS.md +36 -0
- data/_posts/featured/2026-03-22-HOW-TO-USE-MOODS.md +33 -0
- data/_posts/featured/2026-03-22-PINNED-POSTS-RIGHT-SIDEBAR.md +78 -0
- data/_posts/featured/2026-03-22-THEME-CREATION.md +34 -0
- data/_sass/animations/_fade.scss +23 -0
- data/_sass/base/_general.scss +17 -0
- data/_sass/base/_variables.scss +10 -0
- data/_sass/components/_buttons.scss +26 -0
- data/_sass/components/_cards.scss +238 -0
- data/_sass/components/_footer.scss +7 -0
- data/_sass/components/_header.scss +34 -0
- data/_sass/components/_markdown.scss +153 -0
- data/_sass/components/_sidebar.scss +140 -0
- data/_sass/main.scss +17 -0
- data/_sass/pages/_home.scss +6 -0
- data/_templates/moods.md +7 -0
- data/_templates/status-update.md +5 -0
- data/_templates/status-with-image.md +7 -0
- data/assets/avatar.jpg +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/favicon_io/about.txt +6 -0
- data/assets/images/favicon_io/android-chrome-192x192.png +0 -0
- data/assets/images/favicon_io/android-chrome-512x512.png +0 -0
- data/assets/images/favicon_io/apple-touch-icon.png +0 -0
- data/assets/images/favicon_io/favicon-16x16.png +0 -0
- data/assets/images/favicon_io/favicon-32x32.png +0 -0
- data/assets/images/favicon_io/site.webmanifest +1 -0
- data/assets/images/featured/image.jpg +0 -0
- data/assets/images/share-default.jpg +0 -0
- data/assets/images/sunset.jpg +0 -0
- data/assets/main.scss +3 -0
- data/assets/themes/README-TEMPLATE.md +460 -0
- data/assets/themes/TEMPLATE.css +377 -0
- data/assets/themes/bold.css +32 -0
- data/assets/themes/cozy.css +87 -0
- data/assets/themes/dark.css +144 -0
- data/assets/themes/default.css +29 -0
- data/assets/themes/gamer.css +416 -0
- data/assets/themes/minimal.css +89 -0
- data/assets/themes/ocean.css +30 -0
- data/assets/themes/slate.css +88 -0
- data/lib/status-wall-theme.rb +5 -0
- metadata +80 -2
|
@@ -0,0 +1,416 @@
|
|
|
1
|
+
/* ============================================
|
|
2
|
+
GAMER THEME - RGB Neon Style
|
|
3
|
+
For Status Wall
|
|
4
|
+
============================================ */
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
/* ============================================
|
|
8
|
+
BASE COLORS (Dark + Neon)
|
|
9
|
+
============================================ */
|
|
10
|
+
--bg-color: #0a0a0f; /* Deep dark background */
|
|
11
|
+
--card-bg: #12121a; /* Card background */
|
|
12
|
+
--text-color: #ffffff; /* Bright white text */
|
|
13
|
+
--meta-color: #8888aa; /* Muted purple-gray */
|
|
14
|
+
--accent-color: #00ff88; /* Neon green (primary RGB) */
|
|
15
|
+
--border-color: #1a1a2e; /* Dark border */
|
|
16
|
+
|
|
17
|
+
/* Secondary RGB colors for variety */
|
|
18
|
+
--rgb-pink: #ff0055;
|
|
19
|
+
--rgb-blue: #00d4ff;
|
|
20
|
+
--rgb-purple: #bd00ff;
|
|
21
|
+
--rgb-green: #00ff88;
|
|
22
|
+
|
|
23
|
+
/* ============================================
|
|
24
|
+
SHADOWS & GLOW (Neon Effects)
|
|
25
|
+
============================================ */
|
|
26
|
+
--shadow: 0 0 10px rgba(0, 255, 136, 0.1);
|
|
27
|
+
--shadow-hover: 0 0 25px rgba(0, 255, 136, 0.3);
|
|
28
|
+
--header-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
|
|
29
|
+
--mood-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
|
|
30
|
+
|
|
31
|
+
/* ============================================
|
|
32
|
+
BORDERS & CORNERS (Sharp, Tech Look)
|
|
33
|
+
============================================ */
|
|
34
|
+
--card-border-radius: 4px; /* Sharp corners */
|
|
35
|
+
--sidebar-card-radius: 4px;
|
|
36
|
+
--card-border: 1px solid #1a1a2e;
|
|
37
|
+
--card-border-hover: 1px solid #00ff88;
|
|
38
|
+
--sidebar-card-border: 1px solid #1a1a2e;
|
|
39
|
+
--header-border: 2px solid #00d4ff;
|
|
40
|
+
--avatar-border: 3px solid #00ff88;
|
|
41
|
+
|
|
42
|
+
/* ============================================
|
|
43
|
+
ACCENT BORDERS (RGB Stripes)
|
|
44
|
+
============================================ */
|
|
45
|
+
--post-top-border: 3px solid #00ff88;
|
|
46
|
+
--post-left-border: none;
|
|
47
|
+
--post-accent-width: 3px;
|
|
48
|
+
--header-accent: 2px solid #00d4ff;
|
|
49
|
+
|
|
50
|
+
/* ============================================
|
|
51
|
+
SPACING
|
|
52
|
+
============================================ */
|
|
53
|
+
--card-padding: 25px;
|
|
54
|
+
--card-margin: 25px;
|
|
55
|
+
--sidebar-gap: 30px;
|
|
56
|
+
|
|
57
|
+
/* ============================================
|
|
58
|
+
TYPOGRAPHY (Tech/Gaming Fonts)
|
|
59
|
+
============================================ */
|
|
60
|
+
--font-main: 'Segoe UI', 'Roboto', -apple-system, sans-serif;
|
|
61
|
+
--font-mono: 'Consolas', 'Courier New', monospace;
|
|
62
|
+
--font-size-base: 16px;
|
|
63
|
+
--line-height: 1.7;
|
|
64
|
+
|
|
65
|
+
/* ============================================
|
|
66
|
+
LINKS & BUTTONS (Neon Hover)
|
|
67
|
+
============================================ */
|
|
68
|
+
--link-color: #00d4ff;
|
|
69
|
+
--link-hover-color: #00ff88;
|
|
70
|
+
--link-decoration: none;
|
|
71
|
+
--link-hover-decoration: none;
|
|
72
|
+
|
|
73
|
+
--btn-bg: transparent;
|
|
74
|
+
--btn-border: 1px solid #1a1a2e;
|
|
75
|
+
--btn-hover-bg: #00ff88;
|
|
76
|
+
--btn-hover-text: #0a0a0f;
|
|
77
|
+
|
|
78
|
+
/* ============================================
|
|
79
|
+
ANIMATIONS (Smooth RGB Transitions)
|
|
80
|
+
============================================ */
|
|
81
|
+
--transition-speed: 0.3s;
|
|
82
|
+
--hover-transform: translateY(-4px);
|
|
83
|
+
|
|
84
|
+
/* ============================================
|
|
85
|
+
MOOD INDICATORS (Glowing Dots)
|
|
86
|
+
============================================ */
|
|
87
|
+
--mood-size: 12px;
|
|
88
|
+
|
|
89
|
+
/* ============================================
|
|
90
|
+
CALLOUT COLORS (RGB Variants)
|
|
91
|
+
============================================ */
|
|
92
|
+
--callout-note: #00d4ff; /* Cyan */
|
|
93
|
+
--callout-tip: #00ff88; /* Green */
|
|
94
|
+
--callout-warning: #ffaa00; /* Orange */
|
|
95
|
+
--callout-danger: #ff0055; /* Pink/Red */
|
|
96
|
+
|
|
97
|
+
/* ============================================
|
|
98
|
+
SIDEBAR CARDS
|
|
99
|
+
============================================ */
|
|
100
|
+
--sidebar-card-bg: #12121a;
|
|
101
|
+
|
|
102
|
+
/* ============================================
|
|
103
|
+
SCROLLBAR (RGB Styled)
|
|
104
|
+
============================================ */
|
|
105
|
+
--scrollbar-width: 10px;
|
|
106
|
+
--scrollbar-track: #0a0a0f;
|
|
107
|
+
--scrollbar-thumb: #00ff88;
|
|
108
|
+
--scrollbar-thumb-hover: #00d4ff;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/* ============================================
|
|
112
|
+
BASE STYLES
|
|
113
|
+
============================================ */
|
|
114
|
+
body {
|
|
115
|
+
background-color: var(--bg-color);
|
|
116
|
+
color: var(--text-color);
|
|
117
|
+
font-family: var(--font-main);
|
|
118
|
+
font-size: var(--font-size-base);
|
|
119
|
+
line-height: var(--line-height);
|
|
120
|
+
background-image:
|
|
121
|
+
radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
|
|
122
|
+
radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/* ============================================
|
|
126
|
+
GAMER-SPECIFIC EFFECTS
|
|
127
|
+
============================================ */
|
|
128
|
+
|
|
129
|
+
/* --- RGB Border Animation on Cards --- */
|
|
130
|
+
.status-card {
|
|
131
|
+
position: relative;
|
|
132
|
+
background: var(--card-bg);
|
|
133
|
+
border: var(--card-border);
|
|
134
|
+
border-radius: var(--card-border-radius);
|
|
135
|
+
border-top: var(--post-top-border);
|
|
136
|
+
box-shadow: var(--shadow);
|
|
137
|
+
padding: var(--card-padding);
|
|
138
|
+
margin-bottom: var(--card-margin);
|
|
139
|
+
transition: transform var(--transition-speed) ease,
|
|
140
|
+
box-shadow var(--transition-speed) ease,
|
|
141
|
+
border-color var(--transition-speed) ease;
|
|
142
|
+
overflow: hidden;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.status-card::before {
|
|
146
|
+
content: '';
|
|
147
|
+
position: absolute;
|
|
148
|
+
top: 0;
|
|
149
|
+
left: -100%;
|
|
150
|
+
width: 100%;
|
|
151
|
+
height: 2px;
|
|
152
|
+
background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
|
|
153
|
+
transition: left 0.5s ease;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.status-card:hover::before {
|
|
157
|
+
left: 100%;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.status-card:hover {
|
|
161
|
+
transform: var(--hover-transform);
|
|
162
|
+
box-shadow: var(--shadow-hover);
|
|
163
|
+
border: var(--card-border-hover);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/* --- Profile Header with Glow --- */
|
|
167
|
+
.profile-header {
|
|
168
|
+
background: linear-gradient(135deg, #12121a 0%, #1a1a2e 100%);
|
|
169
|
+
border: var(--header-border);
|
|
170
|
+
border-radius: var(--card-border-radius);
|
|
171
|
+
box-shadow: var(--header-shadow);
|
|
172
|
+
position: relative;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.profile-header::after {
|
|
176
|
+
content: '';
|
|
177
|
+
position: absolute;
|
|
178
|
+
top: -2px;
|
|
179
|
+
left: -2px;
|
|
180
|
+
right: -2px;
|
|
181
|
+
bottom: -2px;
|
|
182
|
+
background: linear-gradient(45deg, #00ff88, #00d4ff, #bd00ff, #ff0055);
|
|
183
|
+
border-radius: var(--card-border-radius);
|
|
184
|
+
z-index: -1;
|
|
185
|
+
opacity: 0.3;
|
|
186
|
+
filter: blur(10px);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.profile-header .avatar img {
|
|
190
|
+
border: var(--avatar-border);
|
|
191
|
+
box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/* --- Sidebar Cards with RGB Accent --- */
|
|
195
|
+
.featured-image-card,
|
|
196
|
+
.pinned-post-card {
|
|
197
|
+
background: var(--sidebar-card-bg);
|
|
198
|
+
border: var(--sidebar-card-border);
|
|
199
|
+
border-radius: var(--sidebar-card-radius);
|
|
200
|
+
position: relative;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.featured-image-card:hover,
|
|
204
|
+
.pinned-post-card:hover {
|
|
205
|
+
border-color: var(--rgb-blue);
|
|
206
|
+
box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
/* --- Neon Buttons --- */
|
|
210
|
+
.share-btn {
|
|
211
|
+
background: var(--btn-bg);
|
|
212
|
+
border: var(--btn-border);
|
|
213
|
+
color: var(--meta-color);
|
|
214
|
+
font-family: var(--font-mono);
|
|
215
|
+
text-transform: uppercase;
|
|
216
|
+
letter-spacing: 1px;
|
|
217
|
+
font-size: 0.75rem;
|
|
218
|
+
transition: all var(--transition-speed) ease;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.share-btn:hover {
|
|
222
|
+
background: var(--btn-hover-bg);
|
|
223
|
+
color: var(--btn-hover-text);
|
|
224
|
+
border-color: var(--accent-color);
|
|
225
|
+
box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/* --- Glowing Links --- */
|
|
229
|
+
a {
|
|
230
|
+
color: var(--link-color);
|
|
231
|
+
text-decoration: var(--link-decoration);
|
|
232
|
+
transition: color var(--transition-speed) ease;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
a:hover {
|
|
236
|
+
color: var(--link-hover-color);
|
|
237
|
+
text-decoration: var(--link-hover-decoration);
|
|
238
|
+
text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/* --- Pulsing Mood Indicators --- */
|
|
242
|
+
.mood-indicator {
|
|
243
|
+
width: var(--mood-size);
|
|
244
|
+
height: var(--mood-size);
|
|
245
|
+
box-shadow: var(--mood-shadow);
|
|
246
|
+
animation: gamerPulse 2s infinite;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
@keyframes gamerPulse {
|
|
250
|
+
0%, 100% {
|
|
251
|
+
transform: scale(1);
|
|
252
|
+
opacity: 1;
|
|
253
|
+
}
|
|
254
|
+
50% {
|
|
255
|
+
transform: scale(1.3);
|
|
256
|
+
opacity: 0.8;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/* --- RGB Callouts --- */
|
|
261
|
+
.status-content blockquote.callout-note {
|
|
262
|
+
border-left: 4px solid var(--callout-note) !important;
|
|
263
|
+
background: rgba(0, 212, 255, 0.1) !important;
|
|
264
|
+
box-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.status-content blockquote.callout-tip {
|
|
268
|
+
border-left: 4px solid var(--callout-tip) !important;
|
|
269
|
+
background: rgba(0, 255, 136, 0.1) !important;
|
|
270
|
+
box-shadow: 0 0 10px rgba(0, 255, 136, 0.1);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.status-content blockquote.callout-warning {
|
|
274
|
+
border-left: 4px solid var(--callout-warning) !important;
|
|
275
|
+
background: rgba(255, 170, 0, 0.1) !important;
|
|
276
|
+
box-shadow: 0 0 10px rgba(255, 170, 0, 0.1);
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.status-content blockquote.callout-danger {
|
|
280
|
+
border-left: 4px solid var(--callout-danger) !important;
|
|
281
|
+
background: rgba(255, 0, 85, 0.1) !important;
|
|
282
|
+
box-shadow: 0 0 10px rgba(255, 0, 85, 0.1);
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
/* --- Custom RGB Scrollbar --- */
|
|
286
|
+
::-webkit-scrollbar {
|
|
287
|
+
width: var(--scrollbar-width);
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
::-webkit-scrollbar-track {
|
|
291
|
+
background: var(--scrollbar-track);
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
::-webkit-scrollbar-thumb {
|
|
295
|
+
background: linear-gradient(180deg, #00ff88, #00d4ff, #bd00ff);
|
|
296
|
+
border-radius: 5px;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
::-webkit-scrollbar-thumb:hover {
|
|
300
|
+
background: linear-gradient(180deg, #00d4ff, #bd00ff, #ff0055);
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
/* --- Code Blocks (Terminal Style) --- */
|
|
304
|
+
.status-content pre {
|
|
305
|
+
background: #0d0d12 !important;
|
|
306
|
+
border: 1px solid #1a1a2e;
|
|
307
|
+
border-left: 3px solid #00ff88;
|
|
308
|
+
box-shadow: 0 0 10px rgba(0, 255, 136, 0.1);
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.status-content code {
|
|
312
|
+
font-family: var(--font-mono);
|
|
313
|
+
color: #00ff88;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.status-content p code,
|
|
317
|
+
.status-content li code {
|
|
318
|
+
background: #12121a;
|
|
319
|
+
color: #00d4ff;
|
|
320
|
+
border: 1px solid #1a1a2e;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
/* --- Pinned Posts with Glow Effect --- */
|
|
324
|
+
.pinned-post-card {
|
|
325
|
+
position: relative;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.pinned-post-card::before {
|
|
329
|
+
content: '';
|
|
330
|
+
position: absolute;
|
|
331
|
+
top: 0;
|
|
332
|
+
left: 0;
|
|
333
|
+
right: 0;
|
|
334
|
+
bottom: 0;
|
|
335
|
+
border-radius: var(--sidebar-card-radius);
|
|
336
|
+
box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
|
|
337
|
+
opacity: 0;
|
|
338
|
+
transition: opacity var(--transition-speed) ease;
|
|
339
|
+
pointer-events: none;
|
|
340
|
+
z-index: -1;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.pinned-post-card:hover::before {
|
|
344
|
+
opacity: 1;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.pinned-post-card .pinned-label {
|
|
348
|
+
background: linear-gradient(90deg, #00ff88, #00d4ff);
|
|
349
|
+
-webkit-background-clip: text;
|
|
350
|
+
-webkit-text-fill-color: transparent;
|
|
351
|
+
background-clip: text;
|
|
352
|
+
font-weight: 700;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
/* --- Footer with RGB Line --- */
|
|
356
|
+
footer {
|
|
357
|
+
border-top: 1px solid #1a1a2e;
|
|
358
|
+
padding-top: 20px;
|
|
359
|
+
position: relative;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
footer::before {
|
|
363
|
+
content: '';
|
|
364
|
+
position: absolute;
|
|
365
|
+
top: 0;
|
|
366
|
+
left: 50%;
|
|
367
|
+
transform: translateX(-50%);
|
|
368
|
+
width: 100px;
|
|
369
|
+
height: 2px;
|
|
370
|
+
background: linear-gradient(90deg, transparent, #00ff88, transparent);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
/* ============================================
|
|
374
|
+
OPTIONAL: EXTRA GAMER EFFECTS
|
|
375
|
+
Uncomment for more intense RGB!
|
|
376
|
+
============================================ */
|
|
377
|
+
|
|
378
|
+
/* --- Scanline Effect (Retro Gaming) --- */
|
|
379
|
+
/*
|
|
380
|
+
body::after {
|
|
381
|
+
content: '';
|
|
382
|
+
position: fixed;
|
|
383
|
+
top: 0;
|
|
384
|
+
left: 0;
|
|
385
|
+
width: 100vw;
|
|
386
|
+
height: 100vh;
|
|
387
|
+
background: repeating-linear-gradient(
|
|
388
|
+
0deg,
|
|
389
|
+
rgba(0, 0, 0, 0.1) 0px,
|
|
390
|
+
rgba(0, 0, 0, 0.1) 1px,
|
|
391
|
+
transparent 1px,
|
|
392
|
+
transparent 2px
|
|
393
|
+
);
|
|
394
|
+
pointer-events: none;
|
|
395
|
+
z-index: 9999;
|
|
396
|
+
}
|
|
397
|
+
*/
|
|
398
|
+
|
|
399
|
+
/* --- Floating Particles (Advanced) --- */
|
|
400
|
+
/*
|
|
401
|
+
@keyframes float {
|
|
402
|
+
0%, 100% { transform: translateY(0); }
|
|
403
|
+
50% { transform: translateY(-10px); }
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.status-card {
|
|
407
|
+
animation: float 3s ease-in-out infinite;
|
|
408
|
+
}
|
|
409
|
+
*/
|
|
410
|
+
|
|
411
|
+
/* --- RGB Text Glow on Hover --- */
|
|
412
|
+
/*
|
|
413
|
+
.status-card:hover .status-title {
|
|
414
|
+
text-shadow: 0 0 10px var(--accent-color);
|
|
415
|
+
}
|
|
416
|
+
*/
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
/* === Base Colors === */
|
|
3
|
+
--bg-color: #ffffff;
|
|
4
|
+
--card-bg: #ffffff;
|
|
5
|
+
--text-color: #242424;
|
|
6
|
+
--meta-color: #666666;
|
|
7
|
+
--accent-color: #000000;
|
|
8
|
+
--border-color: #eaeaea;
|
|
9
|
+
|
|
10
|
+
/* === Shadows & Depth === */
|
|
11
|
+
--shadow: none;
|
|
12
|
+
--shadow-hover: 0 4px 12px rgba(0,0,0,0.08);
|
|
13
|
+
--header-shadow: none;
|
|
14
|
+
--mood-shadow: none;
|
|
15
|
+
|
|
16
|
+
/* === Borders & Corners === */
|
|
17
|
+
--card-border-radius: 0px;
|
|
18
|
+
--sidebar-card-radius: 0px;
|
|
19
|
+
--card-border: 1px solid #eaeaea;
|
|
20
|
+
--card-border-hover: 1px solid #000000;
|
|
21
|
+
--sidebar-card-border: 1px solid #eaeaea;
|
|
22
|
+
--header-border: 1px solid #eaeaea;
|
|
23
|
+
--avatar-border: 2px solid #000000;
|
|
24
|
+
|
|
25
|
+
/* === Accent Borders === */
|
|
26
|
+
--post-top-border: none;
|
|
27
|
+
--post-left-border: 4px solid #000000;
|
|
28
|
+
--header-accent: none;
|
|
29
|
+
|
|
30
|
+
/* === Spacing === */
|
|
31
|
+
--card-padding: 30px;
|
|
32
|
+
--card-margin: 30px;
|
|
33
|
+
--sidebar-gap: 40px;
|
|
34
|
+
|
|
35
|
+
/* === Typography === */
|
|
36
|
+
--font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
37
|
+
--line-height: 1.8;
|
|
38
|
+
|
|
39
|
+
/* === Links & Buttons === */
|
|
40
|
+
--link-color: #000000;
|
|
41
|
+
--link-hover-color: #666666;
|
|
42
|
+
--link-decoration: underline;
|
|
43
|
+
--link-hover-decoration: none;
|
|
44
|
+
|
|
45
|
+
--btn-bg: transparent;
|
|
46
|
+
--btn-border: 1px solid #eaeaea;
|
|
47
|
+
--btn-hover-bg: #000000;
|
|
48
|
+
--btn-hover-text: #ffffff;
|
|
49
|
+
|
|
50
|
+
/* === Animations === */
|
|
51
|
+
--transition-speed: 0.2s;
|
|
52
|
+
--hover-transform: translateY(-2px);
|
|
53
|
+
|
|
54
|
+
/* === Mood === */
|
|
55
|
+
--mood-size: 8px;
|
|
56
|
+
|
|
57
|
+
/* === Callouts (Monochrome) === */
|
|
58
|
+
--callout-note: #242424;
|
|
59
|
+
--callout-tip: #242424;
|
|
60
|
+
--callout-warning: #242424;
|
|
61
|
+
--callout-danger: #242424;
|
|
62
|
+
|
|
63
|
+
/* === Sidebar === */
|
|
64
|
+
--sidebar-card-bg: #ffffff;
|
|
65
|
+
|
|
66
|
+
/* === Scrollbar === */
|
|
67
|
+
--scrollbar-width: 6px;
|
|
68
|
+
--scrollbar-track: #ffffff;
|
|
69
|
+
--scrollbar-thumb: #000000;
|
|
70
|
+
--scrollbar-thumb-hover: #666666;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/* Minimal Specific Overrides */
|
|
74
|
+
body {
|
|
75
|
+
background-color: var(--bg-color);
|
|
76
|
+
background-image: none;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/* Remove gradients/shadows for pure flat look */
|
|
80
|
+
.profile-header {
|
|
81
|
+
background: var(--card-bg);
|
|
82
|
+
box-shadow: none;
|
|
83
|
+
border-bottom: 2px solid #000;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/* Stronger hover state for minimal feedback */
|
|
87
|
+
.status-card:hover {
|
|
88
|
+
border-color: #000;
|
|
89
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--bg-color: #e0f7fa;
|
|
3
|
+
--card-bg: #ffffff;
|
|
4
|
+
--text-color: #006064;
|
|
5
|
+
--meta-color: #00838f;
|
|
6
|
+
--accent-color: #00acc1;
|
|
7
|
+
--border-color: #b2ebf2;
|
|
8
|
+
--shadow: 0 1px 2px rgba(0,172,193,0.1);
|
|
9
|
+
--shadow-hover: 0 6px 12px rgba(0,172,193,0.2);
|
|
10
|
+
|
|
11
|
+
/* Add callout colors */
|
|
12
|
+
--callout-note: #2d88ff;
|
|
13
|
+
--callout-tip: #00c853;
|
|
14
|
+
--callout-warning: #ff9800;
|
|
15
|
+
--callout-danger: #f44336;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
body {
|
|
19
|
+
background-color: var(--bg-color);
|
|
20
|
+
color: var(--text-color);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/* Ocean-specific accents */
|
|
24
|
+
.profile-header {
|
|
25
|
+
border-top: 3px solid var(--accent-color);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.status-card {
|
|
29
|
+
border-left: 3px solid var(--accent-color);
|
|
30
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
/* === Base Colors (Cool Blues/Grays) === */
|
|
3
|
+
--bg-color: #f8f9fa;
|
|
4
|
+
--card-bg: #ffffff;
|
|
5
|
+
--text-color: #1a1a1a;
|
|
6
|
+
--meta-color: #6c757d;
|
|
7
|
+
--accent-color: #0d6efd;
|
|
8
|
+
--border-color: #dee2e6;
|
|
9
|
+
|
|
10
|
+
/* === Shadows & Depth (Structured) === */
|
|
11
|
+
--shadow: 0 2px 4px rgba(0,0,0,0.05);
|
|
12
|
+
--shadow-hover: 0 8px 16px rgba(13, 110, 253, 0.15);
|
|
13
|
+
--header-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
|
14
|
+
--mood-shadow: 0 0 0 2px #e9ecef;
|
|
15
|
+
|
|
16
|
+
/* === Borders & Corners (Clean) === */
|
|
17
|
+
--card-border-radius: 8px;
|
|
18
|
+
--sidebar-card-radius: 8px;
|
|
19
|
+
--card-border: 1px solid #e9ecef;
|
|
20
|
+
--card-border-hover: 1px solid #0d6efd;
|
|
21
|
+
--sidebar-card-border: 1px solid #e9ecef;
|
|
22
|
+
--header-border: 1px solid #e9ecef;
|
|
23
|
+
--avatar-border: 3px solid #ffffff;
|
|
24
|
+
|
|
25
|
+
/* === Accent Borders === */
|
|
26
|
+
--post-top-border: 3px solid #0d6efd;
|
|
27
|
+
--post-left-border: none;
|
|
28
|
+
--header-accent: 3px solid #0d6efd;
|
|
29
|
+
|
|
30
|
+
/* === Spacing === */
|
|
31
|
+
--card-padding: 24px;
|
|
32
|
+
--card-margin: 24px;
|
|
33
|
+
--sidebar-gap: 30px;
|
|
34
|
+
|
|
35
|
+
/* === Typography === */
|
|
36
|
+
--font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
37
|
+
--line-height: 1.6;
|
|
38
|
+
|
|
39
|
+
/* === Links & Buttons === */
|
|
40
|
+
--link-color: #0d6efd;
|
|
41
|
+
--link-hover-color: #0a58ca;
|
|
42
|
+
--link-decoration: none;
|
|
43
|
+
--link-hover-decoration: underline;
|
|
44
|
+
|
|
45
|
+
--btn-bg: #ffffff;
|
|
46
|
+
--btn-border: 1px solid #dee2e6;
|
|
47
|
+
--btn-hover-bg: #0d6efd;
|
|
48
|
+
--btn-hover-text: #ffffff;
|
|
49
|
+
|
|
50
|
+
/* === Animations === */
|
|
51
|
+
--transition-speed: 0.2s;
|
|
52
|
+
--hover-transform: translateY(-2px);
|
|
53
|
+
|
|
54
|
+
/* === Mood === */
|
|
55
|
+
--mood-size: 10px;
|
|
56
|
+
|
|
57
|
+
/* === Callouts (Professional) === */
|
|
58
|
+
--callout-note: #0d6efd;
|
|
59
|
+
--callout-tip: #198754;
|
|
60
|
+
--callout-warning: #ffc107;
|
|
61
|
+
--callout-danger: #dc3545;
|
|
62
|
+
|
|
63
|
+
/* === Sidebar === */
|
|
64
|
+
--sidebar-card-bg: #ffffff;
|
|
65
|
+
|
|
66
|
+
/* === Scrollbar === */
|
|
67
|
+
--scrollbar-width: 8px;
|
|
68
|
+
--scrollbar-track: #f8f9fa;
|
|
69
|
+
--scrollbar-thumb: #0d6efd;
|
|
70
|
+
--scrollbar-thumb-hover: #0a58ca;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/* Slate Specific Overrides */
|
|
74
|
+
body {
|
|
75
|
+
background-color: var(--bg-color);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/* Crisp header */
|
|
79
|
+
.profile-header {
|
|
80
|
+
background: #fff;
|
|
81
|
+
border-top: 3px solid var(--accent-color);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* Code blocks match theme */
|
|
85
|
+
.status-content pre {
|
|
86
|
+
background: #1e1e1e !important;
|
|
87
|
+
border: 1px solid #333;
|
|
88
|
+
}
|