@anglefeint/astro-theme 0.1.28 → 0.1.29

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anglefeint/astro-theme",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "type": "module",
5
5
  "description": "Anglefeint core theme package for Astro",
6
6
  "keywords": [
@@ -1,39 +1,41 @@
1
1
  /* About sidebar layer: quick-action folders and related sidebar affordances. */
2
- /* ── 右侧文件夹 (Anonymous) ── */
3
- .hacker-sidebar {
4
- position: fixed;
5
- top: 20%;
6
- right: 1rem;
7
- z-index: 50;
8
- display: flex;
9
- flex-direction: column;
10
- gap: 0.6rem;
11
- }
12
- .hacker-folder {
13
- display: flex;
14
- align-items: center;
15
- gap: 0.5rem;
16
- padding: 0.4rem 0.6rem;
17
- background: rgba(0, 0, 0, 0.6);
18
- border: 1px solid rgba(255, 255, 255, 0.2);
19
- border-radius: 8px;
20
- cursor: pointer;
21
- transition: all 0.2s ease;
22
- text-decoration: none;
23
- color: rgba(255, 255, 255, 0.9);
24
- font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
25
- font-size: 0.72rem;
26
- letter-spacing: 0.06em;
27
- }
28
- .hacker-folder:hover {
29
- background: rgba(0, 0, 0, 0.85);
30
- border-color: rgba(0, 255, 100, 0.5);
31
- color: rgba(0, 255, 100, 0.95);
32
- box-shadow: 0 0 12px rgba(0, 255, 100, 0.15);
33
- }
34
- .hacker-folder-icon {
35
- width: 24px;
36
- height: 20px;
37
- flex-shrink: 0;
38
- opacity: 0.9;
39
- }
2
+ /* ── 右侧文件夹 (Anonymous) ── */
3
+ .hacker-sidebar {
4
+ position: fixed;
5
+ top: 20%;
6
+ right: 1rem;
7
+ z-index: 50;
8
+ display: flex;
9
+ flex-direction: column;
10
+ gap: 0.6rem;
11
+ }
12
+ .hacker-folder {
13
+ display: flex;
14
+ align-items: center;
15
+ gap: 0.5rem;
16
+ padding: 0.4rem 0.6rem;
17
+ background: rgba(0, 0, 0, 0.6);
18
+ border: 1px solid rgba(255, 255, 255, 0.2);
19
+ border-radius: 8px;
20
+ cursor: pointer;
21
+ transition: all 0.2s ease;
22
+ text-decoration: none;
23
+ color: rgba(255, 255, 255, 0.9);
24
+ font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
25
+ font-size: 0.72rem;
26
+ letter-spacing: 0.06em;
27
+ }
28
+ .hacker-folder:hover {
29
+ background: rgba(0, 0, 0, 0.85);
30
+ border-color: rgba(255, 193, 102, 0.58);
31
+ color: rgba(255, 221, 154, 0.98);
32
+ box-shadow:
33
+ 0 0 12px rgba(255, 189, 92, 0.22),
34
+ 0 0 22px rgba(255, 170, 72, 0.1);
35
+ }
36
+ .hacker-folder-icon {
37
+ width: 24px;
38
+ height: 20px;
39
+ flex-shrink: 0;
40
+ opacity: 0.9;
41
+ }