-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
230 lines (201 loc) · 3.9 KB
/
App.css
File metadata and controls
230 lines (201 loc) · 3.9 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
:root {
color: #0f172a;
background-color: #f8fafc;
font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background: radial-gradient(circle at 20% 20%, #e0f2fe 0, transparent 25%),
radial-gradient(circle at 80% 0, #e0f2fe 0, transparent 20%),
radial-gradient(circle at 50% 70%, #fef3c7 0, transparent 20%), #f8fafc;
min-height: 100vh;
color: #0f172a;
}
.App {
max-width: 1100px;
margin: 0 auto;
padding: 48px 24px 72px;
}
.App-header {
display: grid;
grid-template-columns: auto 1fr;
gap: 16px;
align-items: center;
margin-bottom: 32px;
}
.App-badge {
background: linear-gradient(135deg, #2563eb, #1d4ed8);
color: #f8fafc;
padding: 12px 18px;
border-radius: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
box-shadow: 0 10px 30px rgba(37, 99, 235, 0.22);
}
.App-kicker {
color: #1d4ed8;
font-weight: 700;
margin: 0 0 6px;
}
.App-title {
margin: 0 0 8px;
font-size: 2.4rem;
letter-spacing: -0.02em;
}
.App-subtitle {
margin: 0;
font-size: 1rem;
color: #475569;
max-width: 680px;
}
.App-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 18px;
}
.App-card {
background: #ffffff;
border-radius: 16px;
padding: 20px;
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
display: grid;
gap: 12px;
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.App-card:hover {
transform: translateY(-2px);
box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}
/* Repo card header */
.App-cardHeader {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
}
.App-repoName {
font-size: 1.25rem;
font-weight: 700;
color: #1d4ed8;
text-decoration: none;
}
.App-repoName:hover {
text-decoration: underline;
}
/* Visibility badge */
.App-visibility {
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
padding: 4px 10px;
border-radius: 999px;
border: 1px solid #d1d5db;
color: #475569;
background: #f1f5f9;
white-space: nowrap;
}
.App-visibility--private {
border-color: #fbbf24;
color: #92400e;
background: #fef3c7;
}
/* Description */
.App-description {
margin: 0;
font-size: 0.925rem;
color: #475569;
line-height: 1.5;
}
/* Language indicator */
.App-lang {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.875rem;
color: #334155;
font-weight: 500;
}
.App-langDot {
width: 12px;
height: 12px;
border-radius: 50%;
flex-shrink: 0;
}
/* Stats row */
.App-stats {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.App-stat {
font-size: 0.85rem;
color: #475569;
font-weight: 500;
}
/* Meta row */
.App-meta {
display: flex;
gap: 12px;
flex-wrap: wrap;
padding-top: 8px;
border-top: 1px solid #e2e8f0;
}
.App-metaItem {
font-size: 0.8rem;
color: #64748b;
}
/* Legacy styles kept for other components */
.App-label {
margin: 0;
text-transform: uppercase;
letter-spacing: 0.06em;
font-weight: 700;
color: #9333ea;
}
.App-heading {
margin: 0;
font-size: 1.5rem;
}
.App-list {
margin: 8px 0 0;
padding-left: 0;
list-style: none;
display: grid;
gap: 10px;
}
.App-listItem {
display: grid;
grid-template-columns: auto 1fr;
gap: 12px;
align-items: center;
padding: 12px 14px;
border: 1px solid #e2e8f0;
border-radius: 12px;
background: linear-gradient(135deg, #f8fafc, #eef2ff);
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.App-pill {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: linear-gradient(135deg, #10b981, #16a34a);
color: #f8fafc;
border-radius: 999px;
font-weight: 700;
box-shadow: 0 8px 18px rgba(16, 185, 129, 0.3);
}
code {
background: #0f172a;
color: #e2e8f0;
padding: 2px 6px;
border-radius: 6px;
font-size: 0.95em;
}