-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
147 lines (138 loc) · 2.73 KB
/
Copy pathstyle.css
File metadata and controls
147 lines (138 loc) · 2.73 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
:root {
--zgi-blue: #0053ff;
}
mark {
background: rgba(0, 83, 255, 0.16);
color: inherit;
border-radius: 4px;
padding: 0 4px;
}
main a:hover,
article a:hover {
color: var(--zgi-blue);
}
code {
border-color: rgba(0, 83, 255, 0.22);
}
/* Reusable status/highlight tags */
.zgi-status {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 3px 10px;
border-radius: 6px;
border: 1px solid transparent;
font-size: 13px;
font-weight: 600;
line-height: 1.2;
}
.zgi-status--verified {
color: #22c55e;
background: rgba(34, 197, 94, 0.1);
border-color: rgba(34, 197, 94, 0.35);
}
.zgi-status--pending {
color: #f59e0b;
background: rgba(245, 158, 11, 0.12);
border-color: rgba(245, 158, 11, 0.35);
}
.zgi-status--highlight {
color: #eaf1ff;
background: rgba(0, 83, 255, 0.2);
border-color: rgba(0, 83, 255, 0.45);
}
/* Optional wrapper for dark card blocks in MDX pages */
.zgi-block {
border: 1px solid #1d2945;
border-radius: 14px;
padding: 14px;
background: rgba(6, 12, 30, 0.9);
}
/* Architecture diagram block for MDX inline HTML */
.zgi-arch-wrap {
margin: 20px 0 28px;
padding: 28px 20px 24px;
border-radius: 20px;
border: 1px solid #1d2945;
background: radial-gradient(1200px 520px at 50% 40%, #0e1940 0%, #070d25 44%, #040814 100%);
}
.zgi-arch-title {
margin: 0 0 20px;
text-align: center;
color: #d1d5db;
font-weight: 700;
letter-spacing: 0;
font-size: 24px;
line-height: 1.2;
}
.zgi-arch-grid {
display: grid;
grid-template-columns: 1fr 300px 1fr;
gap: 14px;
align-items: start;
}
.zgi-arch-col {
display: grid;
gap: 14px;
}
.zgi-arch-card {
background: rgba(10, 16, 32, 0.9);
border: 1px solid #263244;
border-radius: 14px;
padding: 18px 16px;
min-height: 136px;
}
.zgi-arch-card h4 {
margin: 0 0 10px;
color: #f3f4f6;
font-size: 17px;
line-height: 1.25;
letter-spacing: 0;
font-weight: 700;
}
.zgi-arch-card p {
margin: 0;
color: #94a3b8;
font-size: 15px;
line-height: 1.6;
letter-spacing: 0;
}
.zgi-arch-center {
display: grid;
gap: 12px;
align-content: center;
padding-top: 6px;
}
.zgi-arch-layer {
border-radius: 16px;
padding: 18px 10px 16px;
text-align: center;
color: #ffffff;
background: linear-gradient(135deg, #0053FF, #4c45ff);
box-shadow: 0 10px 26px rgba(0, 83, 255, 0.34);
}
.zgi-arch-layer .cn {
font-size: 17px;
line-height: 1.2;
font-weight: 700;
letter-spacing: 0;
}
.zgi-arch-layer .en {
margin-top: 8px;
font-size: 13px;
line-height: 1.2;
letter-spacing: 0;
opacity: 0.92;
text-transform: uppercase;
}
@media (max-width: 1024px) {
.zgi-arch-grid {
grid-template-columns: 1fr;
}
.zgi-arch-center {
order: -1;
}
.zgi-arch-card {
min-height: unset;
}
}