Skip to content

Commit 2acac18

Browse files
test
1 parent 4960b6e commit 2acac18

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

styles.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,21 @@ body {
66
padding: 0;
77
text-align: center;
88
}
9+
910
header {
1011
padding: 50px;
1112
background: #333;
1213
color: white;
1314
}
15+
16+
.profile-picture.small {
17+
width: 120px;
18+
height: 120px;
19+
border-radius: 50%;
20+
object-fit: cover;
21+
margin-bottom: 15px;
22+
}
23+
1424
nav ul {
1525
list-style-type: none;
1626
padding: 0;
@@ -19,40 +29,61 @@ nav ul {
1929
display: flex;
2030
justify-content: center;
2131
}
32+
2233
nav ul li {
2334
margin: 0 15px;
2435
}
36+
2537
nav ul li a {
2638
color: white;
2739
text-decoration: none;
2840
padding: 10px;
2941
display: inline-block;
42+
transition: color 0.3s ease-in-out;
43+
}
44+
45+
nav ul li a:hover {
46+
color: #ffcc00;
3047
}
48+
3149
section {
3250
padding: 50px;
3351
margin: 20px;
3452
background: #2c2c2c;
3553
border-radius: 10px;
3654
box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.1);
3755
}
56+
3857
.project {
3958
margin: 20px 0;
4059
padding: 15px;
4160
background: #3c3c3c;
4261
border-radius: 5px;
4362
}
63+
64+
.project-image.small {
65+
width: 100px;
66+
height: 100px;
67+
object-fit: cover;
68+
border-radius: 10px;
69+
margin-bottom: 10px;
70+
}
71+
4472
.fade-in {
4573
animation: fadeIn 2s ease-in-out;
4674
}
75+
4776
.slide-up {
4877
opacity: 0;
4978
transform: translateY(50px);
5079
animation: slideUp 1s ease-out forwards;
5180
}
81+
5282
@keyframes fadeIn {
5383
from { opacity: 0; }
5484
to { opacity: 1; }
5585
}
86+
5687
@keyframes slideUp {
5788
from {
5889
opacity: 0;

0 commit comments

Comments
 (0)