Skip to content

Commit

Permalink
Merge pull request #190 from Tusar7684/main
Browse files Browse the repository at this point in the history
Issue #5 resolved
  • Loading branch information
IshitaSatpathy authored Oct 15, 2022
2 parents 1d7c5ff + 2c8653b commit 87b0353
Show file tree
Hide file tree
Showing 5 changed files with 252 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Tusar/Center an image using flexbox/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Center an image using flexbox</title>
</head>
<style>
div {
display: flex;
justify-content: center;
}
</style>
<body>
<div>
<img src="Google.png" alt="Google" />
</div>
</body>
</html>
20 changes: 20 additions & 0 deletions Tusar/Center an image without using flexbox/with_grid.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Center An Image</title>
<style>
div {
display: grid;
place-items: center;
}
</style>
</head>
<body>
<div>
<img src="Google.png" alt="Google" />
</div>
</body>
</html>
25 changes: 25 additions & 0 deletions Tusar/Center an image without using flexbox/with_margin.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Center An Image</title>
<style>
img {
display: block;
margin: 0 auto;
}
img {
display: block;
margin: 0 auto;
width: 40%;
}
</style>
</head>
<body>
<div>
<img src="Google.png" alt="Google" />
</div>
</body>
</html>
32 changes: 32 additions & 0 deletions Tusar/Simple Login Page Using HTML and CSS/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>HTML5 Login Form with validation Example</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="./style.css">

</head>
<body>
<!-- partial:index.partial.html -->
<div id="login-form-wrap">
<h2>Login</h2>
<form id="login-form">
<p>
<input type="text" id="username" name="username" placeholder="Username" required><i class="validation"><span></span><span></span></i>
</p>
<p>
<input type="email" id="email" name="email" placeholder="Email Address" required><i class="validation"><span></span><span></span></i>
</p>
<p>
<input type="submit" id="login" value="Login">
</p>
</form>
<div id="create-account-wrap">
<p>Not a member? <a href="#">Create Account</a><p>
</div><!--create-account-wrap-->
</div><!--login-form-wrap-->
<!-- partial -->

</body>
</html>
155 changes: 155 additions & 0 deletions Tusar/Simple Login Page Using HTML and CSS/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,155 @@
body {
background-color: #9f9da7;
font-size: 1.6rem;
font-family: "Open Sans", sans-serif;
color: #2b3e51;
}

h2 {
font-weight: 300;
text-align: center;
}

p {
position: relative;
}

a,
a:link,
a:visited,
a:active {
color: #3ca9e2;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
a:focus, a:hover,
a:link:focus,
a:link:hover,
a:visited:focus,
a:visited:hover,
a:active:focus,
a:active:hover {
color: #329dd5;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}

#login-form-wrap {
background-color: #fff;
width: 35%;
margin: 30px auto;
text-align: center;
padding: 20px 0 0 0;
border-radius: 4px;
box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.2);
}

#login-form {
padding: 0 60px;
}

input {
display: block;
box-sizing: border-box;
width: 100%;
outline: none;
height: 60px;
line-height: 60px;
border-radius: 4px;
}

input[type="text"],
input[type="email"] {
width: 100%;
padding: 0 0 0 10px;
margin: 0;
color: #8a8b8e;
border: 1px solid #c2c0ca;
font-style: normal;
font-size: 16px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
position: relative;
display: inline-block;
background: none;
}
input[type="text"]:focus,
input[type="email"]:focus {
border-color: #3ca9e2;
}
input[type="text"]:focus:invalid,
input[type="email"]:focus:invalid {
color: #cc1e2b;
border-color: #cc1e2b;
}
input[type="text"]:valid ~ .validation,
input[type="email"]:valid ~ .validation {
display: block;
border-color: #0C0;
}
input[type="text"]:valid ~ .validation span,
input[type="email"]:valid ~ .validation span {
background: #0C0;
position: absolute;
border-radius: 6px;
}
input[type="text"]:valid ~ .validation span:first-child,
input[type="email"]:valid ~ .validation span:first-child {
top: 30px;
left: 14px;
width: 20px;
height: 3px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
input[type="text"]:valid ~ .validation span:last-child,
input[type="email"]:valid ~ .validation span:last-child {
top: 35px;
left: 8px;
width: 11px;
height: 3px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}

.validation {
display: none;
position: absolute;
content: " ";
height: 60px;
width: 30px;
right: 15px;
top: 0px;
}

input[type="submit"] {
border: none;
display: block;
background-color: #3ca9e2;
color: #fff;
font-weight: bold;
text-transform: uppercase;
cursor: pointer;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
font-size: 18px;
position: relative;
display: inline-block;
cursor: pointer;
text-align: center;
}
input[type="submit"]:hover {
background-color: #329dd5;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}

#create-account-wrap {
background-color: #eeedf1;
color: #8a8b8e;
font-size: 14px;
width: 100%;
padding: 10px 0;
border-radius: 0 0 4px 4px;
}

0 comments on commit 87b0353

Please sign in to comment.