-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclaude.css
More file actions
128 lines (110 loc) · 2.44 KB
/
claude.css
File metadata and controls
128 lines (110 loc) · 2.44 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
/* Modern Portfolio CSS
- Initially generated by Anthropic's Claude sonnet 3.5
- Enhanced and edited by human person Dawn Gabriel (dgabriel.github.io)
*/
:root {
--primary-color: #2d3436;
--accent-color: #6c5ce7;
--background-color: #f5f6fa;
--text-color: #2d3436;
--link-hover-color: #a29bfe;
--transition-speed: 0.3s;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--background-color);
max-width: 800px;
margin: 0 auto;
padding: 2rem;
opacity: 0;
animation: fadeIn 1s ease-in forwards;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 2rem;
color: var(--primary-color);
letter-spacing: -0.05em;
line-height: 1.2;
}
p {
font-size: 1.25rem;
margin-bottom: 2rem;
color: var(--text-color);
opacity: 0.9;
}
code {
font-size: 1.1rem;
}
a {
color: var(--accent-color);
text-decoration: none;
position: relative;
transition: color var(--transition-speed) ease;
}
a::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
bottom: -2px;
left: 0;
background-color: var(--accent-color);
transform: scaleX(0);
transform-origin: bottom right;
transition: transform var(--transition-speed) ease;
}
a:hover {
color: var(--link-hover-color);
}
a:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}
ul {
list-style: none;
margin-top: 2rem;
padding-left: 0;
}
li {
font-size: 1.1rem;
margin-bottom: 1rem;
padding: 1rem;
background: white;
border-radius: 8px;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
li:hover {
transform: translateY(-2px);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
footer p {
text-align: center;
font-size: 9pt;
color: #666;
}
@media (max-width: 768px) {
body {
padding: 1.5rem;
}
h1 {
font-size: 2.5rem;
}
p {
font-size: 1.1rem;
}
}
/* Add custom font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');