-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (88 loc) · 1.96 KB
/
Copy pathstyle.css
File metadata and controls
102 lines (88 loc) · 1.96 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
:root {
--bg-color: #1a1a2e;
--text-color: rgba(255, 255, 255, 0.85);
--icon-color: rgba(255, 255, 255, 0.7);
}
body {
font-family: 'Poppins', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
min-height: 100vh;
margin: 0;
padding: 0;
overflow-x: hidden;
}
.profile-pic {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 3px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
}
.profile-pic:hover {
transform: scale(1.05);
border-color: rgba(255, 255, 255, 0.4);
}
.link-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 12px;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.link-card:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.15);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.icon {
color: var(--icon-color);
transition: all 0.3s ease;
}
.link-card:hover .icon {
transform: scale(1.1);
color: rgba(255, 255, 255, 0.9);
}
.bg-animation {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}
.circle {
position: absolute;
border-radius: 50%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
animation: float 15s infinite linear;
}
@keyframes float {
0% {
transform: translateY(0) rotate(0deg);
opacity: 1;
}
100% {
transform: translateY(-1000px) rotate(720deg);
opacity: 0;
}
}
.info-box {
background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(5px);
border-left: 3px solid var(--icon-color);
}
.social-icons a {
transition: all 0.3s ease;
}
.social-icons a:hover {
transform: translateY(-3px) scale(1.1);
}
/* Generate random circles for background */
.generate-circles {
position: absolute;
width: 100%;
height: 100%;
}