-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (89 loc) · 1.58 KB
/
style.css
File metadata and controls
96 lines (89 loc) · 1.58 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
scroll-behavior: smooth;
}
/* Navigation */
nav {
display: flex;
justify-content: space-between;
padding: 20px;
background: #222;
color: white;
}
nav ul {
display: flex;
gap: 20px;
}
nav a {
color: white;
text-decoration: none;
transition: 0.3s;
}
nav a:hover {
color: #00aced;
}
/* Hero Section */
.hero {
height: 90vh;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
background: #f2f2f2;
}
.hero span {
color: #00aced;
}
.btn {
margin-top: 20px;
padding: 12px 20px;
background: #00aced;
color: white;
text-decoration: none;
border-radius: 8px;
transition: 0.3s;
}
.btn:hover {
background: #0077b5;
}
/* Sections */
.section {
padding: 60px 20px;
text-align: center;
}
/* Projects Grid */
.project-grid {
display: grid;
gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.project-card {
background: #ffffff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: 0.3s;
}
.project-card:hover {
transform: scale(1.05);
}
/* Skills List */
.skills-list {
list-style: none;
display: flex;
justify-content: center;
gap: 20px;
font-size: 18px;
}
/* Footer */
footer {
text-align: center;
background: #222;
color: white;
padding: 20px;
}