jrubiosainz commited on
Commit
86ce683
·
verified ·
1 Parent(s): 48969b3

Upload style.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. style.css +55 -0
style.css CHANGED
@@ -208,3 +208,58 @@ footer a:hover {
208
  height: 180px;
209
  filter: drop-shadow(0 8px 24px rgba(201, 168, 76, 0.3));
210
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  height: 180px;
209
  filter: drop-shadow(0 8px 24px rgba(201, 168, 76, 0.3));
210
  }
211
+
212
+ .install {
213
+ margin-top: 3rem;
214
+ }
215
+ .install h2 {
216
+ font-family: 'Playfair Display', serif;
217
+ color: var(--accent);
218
+ font-size: 1.8rem;
219
+ text-align: center;
220
+ margin-bottom: 2rem;
221
+ }
222
+ .install-steps {
223
+ display: flex;
224
+ flex-direction: column;
225
+ gap: 1.2rem;
226
+ max-width: 600px;
227
+ margin: 0 auto;
228
+ }
229
+ .install-step {
230
+ display: flex;
231
+ gap: 1.2rem;
232
+ align-items: flex-start;
233
+ background: var(--surface);
234
+ border: 1px solid var(--border);
235
+ border-radius: 12px;
236
+ padding: 1.2rem 1.5rem;
237
+ }
238
+ .install-step .step-num {
239
+ width: 32px;
240
+ height: 32px;
241
+ background: var(--accent-dark);
242
+ color: var(--accent);
243
+ border-radius: 50%;
244
+ display: flex;
245
+ align-items: center;
246
+ justify-content: center;
247
+ font-weight: 700;
248
+ flex-shrink: 0;
249
+ }
250
+ .install-step h4 {
251
+ margin-bottom: 0.25rem;
252
+ color: var(--text);
253
+ }
254
+ .install-step p {
255
+ color: var(--text-muted);
256
+ font-size: 0.9rem;
257
+ line-height: 1.5;
258
+ }
259
+ .install-step code {
260
+ background: rgba(201,168,76,0.15);
261
+ color: var(--accent);
262
+ padding: 2px 6px;
263
+ border-radius: 4px;
264
+ font-size: 0.8rem;
265
+ }