Skip to content

Commit 158940d

Browse files
authored
Merge pull request #4 from LJ-Hao/main
update:structure
2 parents f7ae586 + d704633 commit 158940d

File tree

15 files changed

+66
-23
lines changed

15 files changed

+66
-23
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,19 @@ Rockchip-AI-Lab/
3737
│ │ │ ├── llm/ # Large Language Model content
3838
│ │ │ ├── ui/ # User Interface content
3939
│ │ │ └── vlm/ # Visual Language Model content
40-
│ │ ├── rk3576(3588)/ # Content for RK3576/3588 chip
40+
│ │ ├── rk3576/ # Content for RK3576 chip
41+
│ │ │ ├── cv/
42+
│ │ │ ├── llm/
43+
│ │ │ ├── ui/
44+
│ │ │ └── vlm/
45+
│ │ ├── rk3588/ # Content for RK3588 chip
4146
│ │ │ ├── cv/
4247
│ │ │ ├── llm/
4348
│ │ │ ├── ui/
4449
│ │ │ └── vlm/
4550
│ │ ├── rk1820.json # RK1820 content index configuration
46-
│ │ └── rk3576(3588).json # RK3576/3588 content index configuration
51+
│ │ ├── rk3588.json # RK3588 content index configuration
52+
│ │ ├── rk3576.json # RK3576 content index configuration
4753
│ ├── img/ # Image assets
4854
│ ├── js/ # JavaScript files
4955
│ │ └── app.js # Main application script

public/styles.css

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
--text-secondary: #4a5568;
1313
--border-color: #e0e0e0;
1414
--hover-bg: #f1f8e9;
15-
--chip-rk3576(3588): #76b900;
15+
--chip-rk3588: #76b900;
1616
--chip-rk1820: #ffb74d;
1717
}
1818

@@ -62,7 +62,12 @@ body {
6262
transform: translateX(3px);
6363
}
6464

65-
.chip-folder[data-chip="rk3576(3588)"] {
65+
.chip-folder[data-chip="rk3588"] {
66+
background: linear-gradient(to right, rgba(118, 185, 0, 0.15), transparent);
67+
border-left: none; /* Remove the green border */
68+
}
69+
70+
.chip-folder[data-chip="rk3576"] {
6671
background: linear-gradient(to right, rgba(118, 185, 0, 0.15), transparent);
6772
border-left: none; /* Remove the green border */
6873
}
@@ -77,7 +82,11 @@ body {
7782
background: linear-gradient(to right, rgba(118, 185, 0, 0.25), transparent) !important;
7883
}
7984

80-
.chip-folder[data-chip="rk3576(3588)"]:hover {
85+
.chip-folder[data-chip="rk3588"]:hover {
86+
background: linear-gradient(to right, rgba(118, 185, 0, 0.25), transparent);
87+
}
88+
89+
.chip-folder[data-chip="rk3576"]:hover {
8190
background: linear-gradient(to right, rgba(118, 185, 0, 0.25), transparent);
8291
}
8392

src/content/rk3588.json

Whitespace-only changes.

src/content/rk3588/cv/.gitkeep

Whitespace-only changes.

src/content/rk3588/llm/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)