-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
206 lines (203 loc) · 5.16 KB
/
style.css
File metadata and controls
206 lines (203 loc) · 5.16 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
* {
margin: 0;
padding: 0;
font-family:Georgia, 'Times New Roman', Times, serif;
font-size: medium;
}
body {
background: url('pexels-creapattern-187589-2578323.jpg') no-repeat center/cover;
color: #ffff;
text-align: center;
}
section, .profile {
z-index: 1000;
background: rgba(0,75,135,0.1);
backdrop-filter: blur(1px);
border-radius: 15px;
margin: 20px auto;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(61, 52, 52, 0.2);
}
h2 {
color: #d29118; margin-bottom: 12px;
font-size: large;
}
a {
text-decoration: none; color: inherit;
}
header {
background: rgba(10, 10, 70, 0.8); backdrop-filter: blur(8px);
color: white; padding: 15px 30px; display: flex;
justify-content: space-between; align-items: center;
position: sticky; top: 0;
z-index: 1000;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}
header h1 { margin: 0;
font-size: 30px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
nav ul {
list-style: none; display: flex; gap: 20px; margin: 0;
padding: 0;
}
nav ul li a{
color: white;
transition: all 1s; padding: 8px 16px; border-radius: 20px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
}
nav ul li a:hover {
background: rgb(88, 1, 1); transform: translateX(10px);
}
.profile {
text-align: center; padding: 40px 100px; max-width: 800px;
}
.profile img {
width: 150px; height: 150px;
border-radius: 50%; border: 4px solid #013b5b;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); transition: all 0.5s;
}
.profile img:hover {
transform: scale(1.05);
}
.profile p {
font-size: medium; color: #fffff;
max-width: 800px; margin: 20px auto;
}
section {
max-width: 1000px; margin: 20px auto; padding: 20px 20px;
}
.skills {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.skill {
background: rgba(0,100,255,.12);
padding: 15px;
border: 1px solid rgba(16, 4, 86, 0.3);
border-radius: 50px;
transition: all 0.3s; font-weight: 600; color: white;
box-shadow: 0 0 15px rgba(0, 100, 255, 0.1);
}
.skill:hover {
background: linear-gradient(135deg, #0077b6, #023e8a); transform: translateY(-5px) scale(1.02);
box-shadow: 0 0 25px rgba(0, 150, 255, 0.9);
}
.projects {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px;
}
.project {
background: rgba(0,100,255,.12); padding: 35px;
border-radius: 120px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); transition: all 0.3s;
border: 1px solid rgba(16, 4, 86, 0.3);
}
.project:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 119, 182, 0.5);
}
.project h3 {
color: #9dd6f5;
margin-bottom: 15px;
}
.project button { margin-top: 15px; padding: 12px 20px; border: none;
background: linear-gradient(135deg, #000a10, #1d00d8); color: white;
border-radius: 25px; cursor: pointer; transition: all 0.3s; font-weight: 600;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.project button:hover {
background: linear-gradient(135deg, #023e8a, #edf1f3); transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
#achievements {
max-width: 1000px; margin: 40px auto; padding: 40px 20px; position: relative;
}
.timeline {
position: relative; margin: 20px 0;
}
.timeline::before {
content: ""; position: absolute; top: 0;
bottom: 0;
left: 50%; width: 5px;
background: linear-gradient(#020506, #0b0a0a, #0077b6); transform: translateX(-50%);
}
.achievement {
width: 50%; padding: 20px; position: relative;
}
.achievemet.left {
left: 0;
text-align: right;
}
.achievement.right {
left: 50%;
}
.achievement .content {
background: rgba(33, 47, 244, 0.2); padding: 35px;
box-shadow: 0 8px 25px rgba(67, 48, 165, 0.39); transition: all 0.3s;
border: 1px solid rgb(16, 3, 99);
border-radius: 100px; position: relative;
}
.achievement .content:hover {
transform: scale(1.05);
}
.achievement::after {
content: ""; position: absolute; top: 20px;
width: 20px; height: 20px; border-radius: 50%;
background: #14046e;
border: 3px solid rgb(4, 138, 241);
box-shadow: 0 0 10px rgba(0,0,0,0.8);
}
.achievement.left::after {
right: -10px;
}
.achievement.right::after {
left: -10px;
}
form {
display: flex;
flex-direction: column; gap: 10px;
max-width: 400px;
margin: auto;
}
form input, form textarea {
padding: 10px;
border: 2px solid rgba(184, 219, 238, 0.3); border-radius: 10px;
font-size: 1rem;
background: rgba(253, 253, 255, 0.529); padding: 35px;
box-shadow: 0 8px 25px rgba(21, 10, 78, 0.99); transition: all 0.3s;
border-radius: 30px; position: relative;
}
form input:focus, form textarea:focus {
outline: none;
border-color: #0077b6;
box-shadow: 0 0 15px rgba(15, 15, 38, 0.2);
}
form button {
padding: 15px; border: none;
background: linear-gradient(135deg, #2e4faa, #241c50); color: white;
border-radius: 50px; font-size: 1.1rem; cursor: pointer; transition: all 0.3s; font-weight: 600;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
form button:hover {
background: linear-gradient(135deg, #192770, #1f292f); transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(40, 29, 101, 0.3);
}
footer {
background: rgba(10, 10, 70, 0.8); backdrop-filter: blur(10px);
color: white;
text-align: center; padding: 20px; margin-top: 40px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) header {
flex-direction: column;
gap : 15px;
}
.nav {
margin-top: 1rem;
flex-direction: column;
gap: 0.5rem;
}
.nav a {