-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (75 loc) · 1.24 KB
/
style.css
File metadata and controls
91 lines (75 loc) · 1.24 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
html {
scroll-behavior: smooth;
}
body {
font-family: 'Segoe UI', sans-serif;
}
.custom-navbar {
background: #0f172a;
}
.hero-section {
min-height: 100vh;
background: linear-gradient(135deg, #0f172a, #1e3a8a);
color: white;
padding-top: 90px;
}
.hero-title {
font-size: 48px;
font-weight: 700;
}
.hero-subtitle {
color: #cbd5e1;
}
.hero-text {
color: #e2e8f0;
font-size: 16px;
max-width: 500px;
}
/* Profile Image Styling */
.profile-wrapper {
display: inline-block;
padding: 10px;
border-radius: 50%;
background: linear-gradient(45deg, #60a5fa, #3b82f6);
}
.profile-img {
width: 260px;
height: 260px;
object-fit: cover;
border-radius: 50%;
border: 6px solid white;
}
/* Sections */
.section-padding {
padding: 80px 0;
}
.section-title {
font-weight: 600;
}
.skill-box {
background: #1e293b;
color: white;
padding: 20px;
border-radius: 10px;
transition: 0.3s;
}
.skill-box:hover {
background: #2563eb;
transform: translateY(-5px);
}
.project-card {
border-radius: 12px;
transition: 0.3s;
}
.project-card:hover {
transform: translateY(-5px);
}
.social-icons a {
font-size: 22px;
margin-right: 15px;
color: white;
transition: 0.3s;
}
.social-icons a:hover {
color: #60a5fa;
}