Skip to content

Commit

Permalink
Merge pull request #289 from prathyastee/main
Browse files Browse the repository at this point in the history
resolved issue #2
  • Loading branch information
IshitaSatpathy authored Oct 26, 2022
2 parents a11de35 + 22721ab commit d9ad7ad
Show file tree
Hide file tree
Showing 3 changed files with 103 additions and 0 deletions.
38 changes: 38 additions & 0 deletions prathaystee1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">

<title>Login Page</title>
</head>

<body>

<div class="box">
<h1>LOGIN</h1>
<form>
<div class="input-box">
<!--<span class="details">USERNAME</span>-->
<input type="text" placeholder="E-mail/Username" required>
</div>
<div class="input-box-1">
<!--<span class="details">PASSWORD</span>-->
<input type="password" placeholder="Password" required>
</div>
<button class="btn" role="button">LOGIN</button>


</form>
</div>
</body>

</html>
64 changes: 64 additions & 0 deletions prathaystee1/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
body {
font-family: Montserrat;
background-image: url(https://cloud.ctbuh.org/global-news/2022-09/CN_Cluster1_AW.JPG);
color: #ffffff;
}
h1 {
text-align: center;
font-weight: bold;
font-size: 3.5rem;
}

.box {
height: 400px;
width: 450px;
text-align: left;
position:relative;
background-color:#000000 ;
opacity:0.8;
margin:8% auto;
padding: 1% 5% 5%;
box-shadow: 7px 7px 5px rgba(1, 1, 1, 0.454);
}
.input-box{
line-height: 2.5;
font-size: 1.3rem;
position: absolute;
left: 35%;
height: 100px;
width: 50px;

}
.input-box-1{
line-height: 2.5;
font-size: 1.3rem;
position: absolute;
left: 35%;
top: 40%;
height: max-content;
}

.btn{
background: #303032;
border-radius: 999px;
box-shadow: #ffffff 0 10px 20px -10px;
box-sizing: border-box;
color: #FFFFFF;
cursor: pointer;
font-family: Inter,Helvetica,"Apple Color Emoji","Segoe UI Emoji",NotoColorEmoji,"Noto Color Emoji","Segoe UI Symbol","Android Emoji",EmojiSymbols,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans",sans-serif;
font-size: 16px;
font-weight: 700;
line-height: 24px;
opacity: 1;
outline: 0 solid transparent;
padding: 8px 18px;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
width: fit-content;
word-break: break-word;
border: 0;
position:absolute;
left: 42%;
top: 60%;
}
1 change: 1 addition & 0 deletions prathyastee/readme
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

0 comments on commit d9ad7ad

Please sign in to comment.