Skip to content

Commit 140073a

Browse files
authored
Merge pull request #10 from csprasad/dev
Fix: UI Border showing up on page
2 parents 0c010a6 + b49e4c5 commit 140073a

File tree

2 files changed

+19
-12
lines changed

2 files changed

+19
-12
lines changed

landing.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@
2626
<section class="section section--hello" id="hello">
2727
<div class="section__inner">
2828
<div class="block">
29-
<h2>Hi, I'm <br>Brahmendraprasad 👋</h2>
30-
<p>I specialize in crafting intuitive and high-performance iOS applications,
29+
<img src="./iPhone/assets/images/profile.jpg"/>
30+
<h1>Hi, I'm <br>Brahmendraprasad 👋</h1>
31+
<p>iOS Developer</p>
32+
<p style="display: none;">I specialize in crafting intuitive and high-performance iOS applications,
3133
focusing on seamless user experiences and innovative solutions.
3234
Passionate about solving complex technical challenges,
3335
I bring a detail-oriented approach to mobile development.</p>

styles/landing.css

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
/* Left Panel */
1414
.left-panel {
15-
width: 35%;
15+
width: 65%;
1616
background-color: #1e1e1e;
1717
color: white;
1818
display: flex;
@@ -26,7 +26,7 @@
2626

2727
/* Right Panel */
2828
.right-panel {
29-
width: 65%;
29+
width: 35%;
3030
display: flex;
3131
justify-content: center;
3232
align-items: center;
@@ -136,10 +136,6 @@ Left panel name and animation
136136
/* align-content: left; */
137137
margin: 0 0 0 30px;
138138
padding: 0 0 0 15px;
139-
border-top: 1px solid rebeccapurple;
140-
border-left: 1px solid rebeccapurple;
141-
border-right: 1px solid rebeccapurple;
142-
border-bottom: 1px solid rebeccapurple;
143139
}
144140
.section svg {
145141
position: absolute;
@@ -175,9 +171,18 @@ Left panel name and animation
175171
/* font-size: 2.5rem; */
176172
}
177173
}
178-
.block h2 {
174+
.block img {
175+
width: 20%;
176+
height: 20%;
177+
border: 2px dashed rgb(130, 127, 127);
178+
border-radius: 50%;
179+
margin-right: 30px;
180+
display: none;
181+
}
182+
183+
.block h1 {
179184
display: inline-block;
180-
font-size: 1.2em;
185+
font-size: 3rem;
181186
font-weight: bold;
182187
/* margin-top: 50px !important; */
183188
letter-spacing: 1px;
@@ -190,9 +195,9 @@ Left panel name and animation
190195
.block p {
191196
font-size: 1em;
192197
/* margin-right: 0.4em; */
193-
margin-top: 50px !important;
198+
/* margin-top: 50px !important; */
194199
/* border: 1px solid red; */
195-
opacity: 0.8;
200+
/* opacity: 0.8; */
196201
}
197202

198203

0 commit comments

Comments
 (0)