-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
140 lines (121 loc) · 2.26 KB
/
style.css
File metadata and controls
140 lines (121 loc) · 2.26 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
129
130
131
132
133
134
135
136
137
138
139
140
* {
box-sizing: border-box;
}
/* BODY */
body {
background: linear-gradient(-45deg, #0f172a, #1e293b, #0f3460, #020617);
background-size: 400% 400%;
animation: gradientBG 12s ease infinite;
color: white;
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
overflow-x: hidden;
}
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
/* PARTICLES BACKGROUND */
#particles-js {
position: fixed;
width: 100%;
height: 100%;
z-index: -2;
top: 0;
left: 0;
}
/* RADIAL GLOW */
body::before {
content: "";
position: fixed;
top: 50%;
left: 50%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(56,189,248,0.15), transparent 70%);
transform: translate(-50%, -50%);
z-index: -1;
}
/* CONTAINER */
.container {
max-width: 800px;
margin: auto;
position: relative;
z-index: 1;
}
/* TITLE */
#title {
font-size: 2.5rem;
text-align: center;
letter-spacing: 1px;
background: linear-gradient(90deg, #38bdf8, #22c55e);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 10px;
}
/* SUBTITLE */
.subtitle {
text-align: center;
color: #94a3b8;
margin-bottom: 20px;
}
/* PROFILE */
.hero {
text-align: center;
margin-bottom: 20px;
}
.pfp {
width: 120px;
border-radius: 50%;
box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
transition: all 0.3s ease;
}
.pfp:hover {
transform: scale(1.1);
box-shadow: 0 0 40px rgba(56, 189, 248, 1);
}
/* CARDS */
.card {
background: rgba(30, 41, 59, 0.7);
backdrop-filter: blur(10px);
padding: 20px;
margin-top: 20px;
border-radius: 12px;
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/* 🔥 CLEAN HOVER POP EFFECT */
.card:hover {
transform: translateY(-8px) scale(1.05);
box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
cursor: pointer;
}
/* HIGHLIGHT CARD */
.highlight {
border: 1px solid rgba(56,189,248,0.4);
box-shadow: 0 0 20px rgba(56,189,248,0.2);
}
/* HEADINGS */
h2 {
color: #38bdf8;
}
/* LINKS */
.links {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-top: 10px;
}
a {
padding: 8px 14px;
background: linear-gradient(135deg, #38bdf8, #0ea5e9);
color: black;
text-decoration: none;
border-radius: 6px;
transition: 0.3s;
}
a:hover {
background: linear-gradient(135deg, #22c55e, #4ade80);
transform: translateY(-2px);
}