Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ header {
display: flex;
align-items: center;
justify-content: center;
background: transparent;
background:var(--bg-color);
padding: 22px 15%;
border-bottom: 1px solid transparent;
transition: all .45s ease;
Expand Down Expand Up @@ -234,6 +234,8 @@ section {
background: var(--bg-color);
padding: 35px 45px;
border-radius: 8px;
min-height: 650px;
max-height: fit-content;
transition: all .45s ease;
}

Expand Down Expand Up @@ -281,13 +283,14 @@ section {
width: 100%;
border-radius: 8px;
display: block;
opacity: 0.5;
transition: transform 0.5s;
}

.layer {
width: 100%;
height: 0;
background: linear-gradient(rgba(0, 0, 0, 0.1), #00a6ff);
background: linear-gradient(rgba(0, 0, 0, 0.1), #202020);
position: absolute;
border-radius: 8px;
left: 0;
Expand All @@ -301,7 +304,7 @@ section {
}

.layer h5 {
font: 20px;
font-size: large;
font-weight: 600;
margin-bottom: 15px;
}
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ <h5>Quiz App</h5>
<div class="contact-text">
<h2>Contact <span>Me!</span></h2>
<h4>If you have any project in your mind.</h4>
<p>I'm a website Designer - creating bold & brave interface design for compaines all across the world.</p>
<p>I'm a website Designer - creating bold & brave interface design for companies all across the world.</p>
<div class="list">
<li><a href="#">0123456789</a></li>
<li><a href="#">neelmishra@gmail.com</a></li>
Expand All @@ -163,7 +163,7 @@ <h4>If you have any project in your mind.</h4>
<form action="">
<input type="name" placeholder="Your Name " required>
<input type="email" placeholder="Your Email " required>
<input type="number" placeholder="your Mobile Number" required>
<input type="number" placeholder="Your Mobile Number" required>
<textarea name="" id="" cols="35" rows="10" placeholder="How Can I Help You " required></textarea>
<input type="submit" value="Send Message" class="submit" required>
</form>
Expand Down