Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the color and background to give it a new look #212

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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
3 changes: 3 additions & 0 deletions assets/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -343,3 +343,6 @@
top: 0px;
}
}
.formContainer {
background-color: blue;
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add a new line after this @AlizayAyesha if not the last line '}' with this will be removed after merging

Suggested change
}
}

33 changes: 17 additions & 16 deletions dark/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
<html lang="en">

<head>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<!-- Meta Tags -->

<meta charset="utf-8" />
Expand Down Expand Up @@ -193,22 +196,20 @@ <h3>ABOUT <span class="text-info">ME</span></h3>
<h1>CONTACT ME</h1>
<h3>CONTACT <span class="text-info">ME</span></h3>

<div class="formContainer bg-dark p-5 rounded-3">
<form class="m-auto">
<div class="mb-3">
<input type="text" class="form-control bg-dark text-white" placeholder="Enter Your Name" id="exampleInputPassword1" />
</div>
<div class="mb-3">
<input type="email" class="form-control bg-dark text-white" placeholder="Enter Your Email" id="email" aria-describedby="emailHelp" />
</div>
<div class="mb-3">
<textarea name="message" id="message" row="20" col="20" class="form-control bg-dark text-white" placeholder="Enter Your Message"></textarea>
</div>
<button type="submit" class="btn btn-primary d-block m-auto">
Submit
</button>
</form>
</div>
<div class="formContainer bg-cyan p-5 rounded-3">
<form class="m-auto">
<div class="mb-3">
<input type="text" class="form-control bg-primary text-white" placeholder="Enter Your Name" id="exampleInputPassword1" />
</div>
<div class="mb-3">
<input type="email" class="form-control bg-primary text-white" placeholder="Enter Your Email" id="email" aria-describedby="emailHelp" />
</div>
<div class="mb-3">
<textarea name="message" id="message" row="20" col="20" class="form-control bg-primary text-white" placeholder="Enter Your Message"></textarea>
</div>
<button type="submit" class="btn btn-primary text-white d-block m-auto">Submit</button>
</form>
</div>
<center>
<p class="contact-text">
Contact me via Email, Message or connect me with social media
Expand Down