-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (71 loc) · 1.55 KB
/
style.css
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
/* Apply a gradient background */
body {
margin: 0;
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #ff9a9e, #fad0c4, #f3e6ff, #a18cd1);
background-size: 400% 400%;
animation: gradientBackground 15s ease infinite;
color: #333;
}
/* Keyframes for a smooth background transition */
@keyframes gradientBackground {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
/* Profile container styling */
.profile-container {
max-width: 800px;
margin: 50px auto;
background: #fff;
border-radius: 15px;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
}
.profile-pic {
width: 150px;
height: 150px;
border-radius: 50%;
margin-bottom: 20px;
object-fit: cover;
}
.name {
font-size: 32px;
font-weight: bold;
color: #333;
}
.bio {
font-size: 18px;
color: #666;
margin: 15px 0;
}
.skills, .portfolio, .contact {
margin-top: 30px;
}
.section-title {
font-size: 24px;
color: #555;
margin-bottom: 10px;
}
.skills-list, .portfolio-list, .contact-links {
list-style-type: none;
padding: 0;
display: flex;
justify-content: center;
gap: 15px;
}
.skills-list li, .portfolio-list li, .contact-links li {
background: #f3e6ff;
padding: 10px 15px;
border-radius: 10px;
font-size: 16px;
color: #555;
}
.contact-links a {
text-decoration: none;
color: #a18cd1;
}
.contact-links a:hover {
text-decoration: underline;
}