forked from c0mpli/PiedPiper-TSEC-Hacks-2022
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/c0mPlicaTedd/PiedPiper-TSEC…
- Loading branch information
Showing
8 changed files
with
344 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*{ | ||
margin: 0; | ||
font-family: Arial, Helvetica, sans-serif; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.