-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPortfolio.css
More file actions
144 lines (117 loc) · 2.01 KB
/
Copy pathPortfolio.css
File metadata and controls
144 lines (117 loc) · 2.01 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
line-height: 1.6;
background: #f4f6f9;
color: #333;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #4e73df, #1cc88a);
color: white;
text-align: center;
padding: 60px 20px;
}
.hero img {
width: 120px;
height: 150px;
border-radius: 10px;
margin-bottom: 15px;
border: 3px solid white;
}
.hero h1 {
font-size: 32px;
}
.hero h3 {
font-weight: normal;
margin-bottom: 10px;
}
.btn-group {
margin-top: 15px;
}
.btn {
text-decoration: none;
padding: 8px 18px;
border-radius: 5px;
margin: 5px;
display: inline-block;
transition: 0.3s;
}
.primary {
background: white;
color: #4e73df;
}
.primary:hover {
background: #ddd;
}
.secondary {
background: #333;
color: white;
}
.secondary:hover {
background: black;
}
/* Sections */
.section {
padding: 40px 20px;
text-align: center;
}
.section h2 {
margin-bottom: 20px;
color: #4e73df;
}
/* Skills */
.skill-box {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
}
.skill-box span {
background: #4e73df;
color: white;
padding: 6px 14px;
border-radius: 20px;
font-size: 14px;
}
/* Projects */
.project-card {
background: white;
padding: 20px;
margin: 10px auto;
max-width: 500px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: 0.3s;
}
.project-card:hover {
transform: translateY(-5px);
}
/* Education */
.education-card {
background: white;
padding: 20px;
margin: auto;
max-width: 500px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Footer */
footer {
background: #333;
color: white;
text-align: center;
padding: 20px;
}
.social-links a {
color: #1cc88a;
text-decoration: none;
margin: 0 10px;
}
.social-links a:hover {
text-decoration: underline;
}