-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (86 loc) · 1.7 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (86 loc) · 1.7 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
/* Reset and Base Styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 20px;
}
/* Container */
.container {
text-align: center;
max-width: 600px;
width: 100%;
padding: 40px;
background: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
transition: transform 0.2s ease;
}
.container:hover {
transform: translateY(-2px);
}
/* Avatar */
.avatar {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 24px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
border: 3px solid #fff;
}
/* Typography */
h1 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 12px;
color: #111;
letter-spacing: -0.5px;
}
p.bio {
font-size: 1.1rem;
color: #666;
margin-bottom: 32px;
font-weight: 400;
}
/* Links */
.links {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.links a {
text-decoration: none;
color: #333;
font-weight: 500;
padding: 8px 16px;
border-radius: 20px;
background-color: #f0f0f0;
transition: all 0.2s ease;
}
.links a:hover {
background-color: #333;
color: #fff;
transform: translateY(-1px);
}
/* Responsive */
@media (max-width: 480px) {
h1 {
font-size: 2rem;
}
.container {
padding: 30px 20px;
}
}