Skip to content

Commit 854d75b

Browse files
authored
Update index.md
1 parent 825423a commit 854d75b

1 file changed

Lines changed: 48 additions & 15 deletions

File tree

index.md

Lines changed: 48 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,19 @@
66
<title>Ramanjeet Singh Portfolio</title>
77
<style>
88
body {
9-
font-family: Arial, sans-serif;
9+
font-family: 'Arial', sans-serif;
1010
margin: 0;
1111
padding: 0;
12-
background-color: #fff7e6;
12+
background-color: #f9f9f9;
1313
color: #333;
1414
}
1515

1616
header {
17-
background-color: #ff8c42;
17+
background: linear-gradient(135deg, #ff8c42, #ff7043);
1818
color: white;
19-
padding: 20px;
19+
padding: 40px 20px;
2020
text-align: center;
21+
position: relative;
2122
}
2223

2324
header img {
@@ -26,30 +27,43 @@
2627
height: 150px;
2728
object-fit: cover;
2829
border: 5px solid white;
30+
position: absolute;
31+
left: 50%;
32+
transform: translate(-50%, 50%);
2933
}
3034

3135
header h1 {
32-
margin: 10px 0;
36+
margin: 100px 0 10px;
37+
font-size: 2.5em;
3338
}
3439

3540
header p {
3641
font-size: 1.2em;
37-
margin: 5px 0;
42+
margin: 0;
3843
}
3944

4045
main {
41-
padding: 20px;
46+
padding: 60px 20px 20px;
4247
}
4348

4449
section {
4550
margin-bottom: 40px;
4651
}
4752

4853
section h2 {
49-
border-bottom: 3px solid #ff8c42;
50-
padding-bottom: 5px;
54+
font-size: 1.8em;
5155
margin-bottom: 20px;
5256
color: #ff8c42;
57+
position: relative;
58+
}
59+
60+
section h2::after {
61+
content: '';
62+
display: block;
63+
width: 50px;
64+
height: 3px;
65+
background: #ff8c42;
66+
margin-top: 5px;
5367
}
5468

5569
ul {
@@ -59,22 +73,42 @@
5973

6074
ul li {
6175
margin-bottom: 10px;
62-
padding: 10px;
63-
background-color: #fff2e0;
64-
border-left: 4px solid #ff8c42;
76+
padding: 15px;
77+
background-color: #fff;
78+
border-radius: 8px;
79+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
80+
transition: transform 0.3s ease, box-shadow 0.3s ease;
81+
}
82+
83+
ul li:hover {
84+
transform: translateY(-5px);
85+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
86+
}
87+
88+
ul li strong {
89+
color: #ff8c42;
6590
}
6691

6792
footer {
6893
text-align: center;
69-
padding: 10px;
94+
padding: 20px;
7095
background-color: #ff8c42;
7196
color: white;
7297
}
98+
99+
a {
100+
color: #ff8c42;
101+
text-decoration: none;
102+
}
103+
104+
a:hover {
105+
text-decoration: underline;
106+
}
73107
</style>
74108
</head>
75109
<body>
76110
<header>
77-
<img src="IMG_0803 Medium.png" alt="Ramanjeet Singh">
111+
<img src="assets/IMG_0803 Medium.png" alt="Ramanjeet Singh">
78112
<h1>Ramanjeet Singh</h1>
79113
<p>Senior iOS Developer | Swift & Objective-C Expert</p>
80114
</header>
@@ -139,4 +173,3 @@
139173
</footer>
140174
</body>
141175
</html>
142-

0 commit comments

Comments
 (0)