-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathstyles.css
More file actions
147 lines (126 loc) · 2.13 KB
/
styles.css
File metadata and controls
147 lines (126 loc) · 2.13 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: #0f172a;
color: #e2e8f0;
line-height: 1.6;
}
nav {
position: fixed;
top: 0;
width: 100%;
background: rgba(15, 23, 42, 0.9);
backdrop-filter: blur(10px);
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 40px;
z-index: 1000;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
nav h2 {
color: #38bdf8;
font-size: 18px;
}
nav ul {
display: flex;
gap: 20px;
list-style: none;
}
nav ul li a {
color: #e2e8f0;
font-weight: 500;
transition: 0.3s;
}
nav ul li a:hover {
color: #38bdf8;
}
.hero {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 0 20px;
background: linear-gradient(135deg, #0f172a, #1e293b);
}
.hero img {
width: 160px;
height: 160px;
border-radius: 50%;
border: 4px solid #38bdf8;
margin-bottom: 20px;
object-fit: cover;
}
.hero h1 {
font-size: 2.5rem;
color: #38bdf8;
}
.hero p {
max-width: 600px;
margin-top: 10px;
color: #cbd5e1;
}
.btn {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background: #38bdf8;
color: #0f172a;
border-radius: 8px;
font-weight: bold;
transition: 0.3s;
}
.btn:hover {
background: #0ea5e9;
}
section {
padding: 80px 20px;
max-width: 1000px;
margin: auto;
}
.section-title {
font-size: 2rem;
margin-bottom: 20px;
color: #38bdf8;
border-left: 5px solid #38bdf8;
padding-left: 10px;
}
.card {
background: #1e293b;
padding: 20px;
border-radius: 12px;
margin-bottom: 15px;
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
transition: 0.3s;
}
.card:hover {
transform: translateY(-5px);
}
.skills {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.skill {
background: #38bdf8;
color: #0f172a;
padding: 8px 12px;
border-radius: 20px;
font-size: 14px;
font-weight: bold;
}
.card p {
margin-bottom: 8px;
}
footer {
text-align: center;
padding: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
color: #94a3b8;
}