-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (77 loc) · 1.35 KB
/
Copy pathstyle.css
File metadata and controls
92 lines (77 loc) · 1.35 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
body {
margin: 0;
font-family: 'Inter', sans-serif;
background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
color: #fff;
line-height: 1.6;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
background: rgba(0, 0, 0, 0.2);
position: sticky;
top: 0;
}
header h1 {
font-size: 26px;
color: #f8d36e;
}
nav a {
color: #fff;
margin-left: 20px;
text-decoration: none;
font-weight: 500;
}
.hero {
padding: 80px 40px 40px;
text-align: center;
background: #1e1e2f;
}
.hero h2 {
font-size: 36px;
margin-bottom: 10px;
}
.hero p {
font-size: 18px;
color: #ccc;
}
section {
padding: 40px;
}
.project-grid {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.project-card {
background: #2a2a3f;
padding: 20px;
border-radius: 12px;
flex: 1 1 200px;
box-shadow: 0 6px 12px rgba(0,0,0,0.3);
transition: transform 0.2s ease;
}
.project-card:hover {
transform: translateY(-5px);
}
.skills-list {
display: flex;
gap: 15px;
flex-wrap: wrap;
padding-left: 0;
list-style: none;
}
.skills-list li {
background: #3a3a5f;
padding: 10px 16px;
border-radius: 8px;
}
footer {
text-align: center;
padding: 20px;
font-size: 14px;
background: rgba(0, 0, 0, 0.2);
}