Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Welding-Torch committed Mar 9, 2022
2 parents bb60c65 + c643fe8 commit f021ae7
Show file tree
Hide file tree
Showing 8 changed files with 344 additions and 11 deletions.
113 changes: 113 additions & 0 deletions css/homepage-styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
*{
margin: 0;
padding: 0;
font-family: 'Roboto' , sans-serif;
}
body{
background-color: white;
}
.container{
width: 100%;
height: 100vh;
background-position: center;
background-size: cover;
padding-left: 13%;
padding-right: 13%;
box-sizing: border-box;

}
.navbar{
height: 12%;
display: flex;
align-items: center;
}
.logo{
width: 50px;
cursor: pointer;
}
.menu-icon{
width: 50px;
cursor: pointer;
margin-left: 40px;
}
nav{
flex:1;
text-align: right;
}
nav ul li{
list-style: none;
display: inline-block;
margin-left: 60px;
}
nav ul li a{
text-decoration: none;
color: black;
font-size: 13px;
}
.row{
display: flex;
height: 65%;
align-items: center;
}
.col{
flex-basis: 50%;
display: flex;
}
h1{
color: black;
font-size: 100px;
}
p{
color: black;
font-size: 11px;
line-height: 15px;
}
h3{
font-size: 20px;
padding: 15px 25px;
}
.card{
width: 210px;
height: 230px;
display: block;
border-radius: 10px;
padding: 15px 25px;
box-sizing: border-box;
cursor: pointer;
margin: 10px 15px;
background-position: center;
background-size: cover;
transition: transform 0.5s;
}
.card1{
background-color: rgb(159,144,212);

}
.card2{
background-color: #949bc5;
}

.card3{

background-color: #949bc5;
}
.card4{
background-color: #949bc5;
}
.card5{
background-color: #949bc5;
}
.card6{
background-color: #949bc5;
}
.card:hover{
transform: translateY(-10px);
}
h5{
color: #fff;
text-shadow: 0 0 5px #999;
}
.card p{
text-shadow: 0 0 15px #000;
font-size: 8px;
}
4 changes: 4 additions & 0 deletions css/landing-styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*{
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
128 changes: 124 additions & 4 deletions css/signup-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
.form{
position: relative;
top:5.5em;

z-index: 1;
margin-left: 60px;


}
Expand All @@ -36,7 +35,7 @@
border-width: thin;
border-style: solid;
outline: none;
width: 100%;
width: 80%;
height:25px;
border-radius: 4px;
}
Expand All @@ -49,6 +48,7 @@

}
.register-title{
text-align: center;
position: relative;
font-family: Arial, Helvetica, sans-serif;
font-size: 30px;
Expand All @@ -64,7 +64,7 @@
user-select: none;
cursor: pointer;
display: block;
margin: auto;
margin-left: 40px;
top: 5em;
color: #21282d;
text-align: center;
Expand Down Expand Up @@ -104,3 +104,123 @@
margin-left: 5px;
}

.bg-modal{
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.7);
position: absolute;
top:0;
justify-content: center;
align-items: center;
display: none;
}
.modal-content{
position: relative;
display: absolute;
width: 800px;
height: 450px;
background-color: white;
border-radius: 4px;
text-align: center;
}
.modal-input-email {
border-width: thin;
border-style: solid;
outline: none;
border-radius: 4px;
width:70%;
height:25px;
display: block;
margin: 0 auto;
margin-top: 100px;
}
.modal-input-password{
border-width: thin;
border-style: solid;
outline: none;
border-radius: 4px;
width:70%;
height:25px;
display: block;
margin: 15px auto;
}
.modal-input-email:focus,.modal-input-password:focus{
border-width: 2px;
outline: none;
border-color:#98ff98;
border-style: solid;
}
.register-title{
position: relative;
font-family: Arial, Helvetica, sans-serif;
font-size: 30px;
top: 2em;
}
.register-subtitle{
position: relative;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
top: 6.5em;
color: #707A8A;
}

.user-button{
text-decoration: none;
align-items: center;
justify-content: center;
box-sizing: border-box;
cursor: pointer;
display: block;
color: #21282d;
margin-top: 175px;
margin-left: 470px;
text-align: center;
width : 150px;
font-size: 14px;
font-weight: 100;
line-height: 50px;
outline: none;
border: none;
border-radius: 4px;
background-color: #32cd32;
}
.care-button{
text-decoration: none;
text-decoration: none;
align-items: center;
justify-content: center;
box-sizing: border-box;
cursor: pointer;
display: block;
color: #21282d;
margin-left: 170px;
margin-top: -50px;
text-align: center;
width : 150px;
font-size: 14px;
font-weight: 100;
line-height: 50px;
outline: none;
border: none;
border-radius: 4px;
background-color: #32cd32;
}
.button:hover{
background-color: #98ff98;
}
.signinhyperlink{
font-size: 11px;
display: block;
margin: -20px auto;
}
.close{
position: absolute;
top: 0;
right: 10px;
font-size: 40px;
transform: rotate(45deg);
cursor: pointer;
}
.close:hover{
color:red;
}
57 changes: 57 additions & 0 deletions homepage.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,60 @@
<html>
<<<<<<< Updated upstream

=======
<head>
<meta name="viewpoint" content="width=device-width , initial-scale=1.0">
<title>HomePage</title>
<link href="css/homepage-styles.css" rel="stylesheet">

<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="navbar">
<img src="../PiedPiper-TSEC-Hacks-2022/images/allyshow_w_1x.png" class="logo">
<nav>
<ul>
<li><a href="">HOW TO USE</a></li>
<li><a href="">CONTACT</a></li>
<li><a href="">PERSONAL DETAILS</a></li>
<li><a href="">LOG OUT</a></li>
</ul>
</nav>
</div>
<h3>Ally Suggestion: </h3>
<h3>Thought of the day: </h3>
<div class="row">
<div class="col">
<div class="card card1">
<h5>Games</h5>
<p>A bunch of games to keep your mind exercised</p>
</div>
<div class="card card5">
<h5>Games</h5>
<p>A bunch of games to keep your mind exercised</p>
</div>
<div class="card card6">
<h5>Games</h5>
<p>A bunch of games to keep your mind exercised</p>
</div>
<br>
<div class="card card3">
<h5>Reminders</h5>
<p>Plans of the day</p>
</div>

<div class="card card4">
<h5>Photos of family and friends</h5>
<p>Alot of photos reminding you of your friends and family</p>
</div>

</div>
</div>
</div>



</body>
>>>>>>> Stashed changes
</html>
Binary file added images/menu-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 22 additions & 2 deletions landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

<link href = "../PiedPiper-TSEC-Hacks-2022/css/landing-styles.css" rel = "stylesheet" type= "text/css" >
</head>
<body>
<nav class="desktop-nav">
<img class="logo" src="images/allyshow_w_1x.png">
<h2 class="name">ALLY</h2>
<a href="/landing.html" class="Welcome nav-item"></a>
<a class="nav-item"> Pricing</a>
<a class="nav item"> About Us</a>
Expand All @@ -18,8 +19,27 @@ <h1 class="bold message"> Never let your loved ones feel lonely again.</h1>
<p class="intro">
hi
</p>
<img class="intro_img" src="images/banner.jpg">
</header>
<div class="overlay hidden"></div>

<div class="Why us">
<h2 class="reasons">Why Choose Us?</h2>
<div class="doctor">
<h3 class="direct connect"> Direct connect with CareGivers</h3>
<p class="text"> Lorem ipsum dolor sit amet.
</p>
</div>
<div class="forget">
<h3 class="loved ones"> Never forget again</h3>
<p class="text"> Lorem ipsum dolor sit amet.
</p>
<div class="games">
<h3 class="puzzle">Engaging Games and Puzzles</h3>
<p class="text"> Lorem ipsum dolor sit amet.</p>
</div>

</div>
</div>

</body>
</html>
1 change: 1 addition & 0 deletions login.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<button class="btn-createaccount" data-bn-type="button" type ="sumbit" name="submit">Log In</button>
</a>
</div>

</form>
<?php //to display the error message when filling out forms

Expand Down
Loading

0 comments on commit f021ae7

Please sign in to comment.