|
27 | 27 | .text-glow { |
28 | 28 | text-shadow: 0 0 10px var(--text-glow); |
29 | 29 | } |
30 | | - |
| 30 | + |
31 | 31 | .section-spacing > * + * { |
32 | | - margin-top: 3rem; |
| 32 | + margin-top: 1.5rem; |
33 | 33 | } |
34 | | - |
| 34 | + |
35 | 35 | .card-spacing > * + * { |
36 | | - margin-top: 2rem; |
| 36 | + margin-top: 1rem; |
37 | 37 | } |
38 | | - |
| 38 | + |
39 | 39 | .element-spacing > * + * { |
40 | | - margin-top: 1rem; |
| 40 | + margin-top: 0.75rem; |
41 | 41 | } |
42 | 42 | } |
43 | 43 |
|
|
46 | 46 | max-width: 80rem; |
47 | 47 | margin-left: auto; |
48 | 48 | margin-right: auto; |
49 | | - padding: 2rem 1rem; |
| 49 | + padding: 1.5rem 1rem; |
50 | 50 | } |
51 | 51 |
|
52 | 52 | .nav-link { |
|
55 | 55 | gap: 0.75rem; |
56 | 56 | padding: 0.5rem 1rem; |
57 | 57 | border-radius: 0.5rem; |
58 | | - transition-property: all; |
59 | | - transition-duration: 200ms; |
| 58 | + transition: all 0.2s ease; |
60 | 59 | } |
61 | 60 |
|
62 | 61 | .nav-link:hover { |
63 | | - background-color: rgba(157, 78, 221, 0.1); |
| 62 | + background-color: rgba(157, 78, 221, 0.05); |
64 | 63 | color: var(--accent-neon); |
65 | 64 | } |
66 | 65 |
|
67 | 66 | .nav-link.active { |
68 | | - background-color: rgba(157, 78, 221, 0.2); |
| 67 | + background-color: rgba(157, 78, 221, 0.1); |
69 | 68 | color: var(--accent-neon); |
70 | 69 | } |
71 | 70 |
|
72 | 71 | .fox-card { |
73 | 72 | position: relative; |
74 | 73 | border-radius: 0.75rem; |
75 | | - padding: 2rem; |
76 | | - transition-property: all; |
77 | | - transition-duration: 300ms; |
78 | | - border: 1px solid rgba(157, 78, 221, 0.2); |
79 | | - background: linear-gradient(135deg, rgba(47, 28, 84, 0.3) 0%, rgba(157, 78, 221, 0.1) 100%); |
| 74 | + padding: 1.5rem; |
| 75 | + transition: all 0.2s ease; |
| 76 | + border: 1px solid rgba(157, 78, 221, 0.1); |
| 77 | + background: linear-gradient(135deg, rgba(47, 28, 84, 0.2) 0%, rgba(157, 78, 221, 0.05) 100%); |
80 | 78 | } |
81 | 79 |
|
82 | 80 | .fox-card:hover { |
83 | | - border-color: rgba(178, 73, 248, 0.4); |
84 | | - box-shadow: 0 0 10px rgba(157, 78, 221, 0.1); |
| 81 | + border-color: rgba(157, 78, 221, 0.2); |
| 82 | + box-shadow: 0 2px 8px rgba(157, 78, 221, 0.05); |
85 | 83 | } |
86 | 84 |
|
87 | 85 | .content-grid { |
88 | 86 | display: grid; |
89 | | - gap: 2rem; |
| 87 | + gap: 1.5rem; |
90 | 88 | grid-template-columns: repeat(1, minmax(0, 1fr)); |
91 | 89 | } |
92 | 90 |
|
|
0 commit comments