Skip to content
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
Binary file added Back.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added CURR.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PEPSI.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added final.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
142 changes: 142 additions & 0 deletions homepage.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
body {
background-color: #aaa;
}
ul {
float: left;
}
ul li {
display: inline-block;
list-style: none;
float: left;
transition: .5s;
}
ul li a {
text-decoration: none;
font-size: 16px;
font-weight: 500;
margin: 5px;
padding: 5px;
color: #fff;
border: 3px solid #fff;
border-radius: 20px;
}
ul li a:hover {
color: #18dcff;
border: 3px solid #18dcff;
}
ul li:hover {
transform: scale(1.2);
}
ul li a:active {
color: #3ae374;
border: 3px solid #3ae374;
}

svg {
font-family: Sans-Serif, Arial;
}
.line {
stroke-width: 2;
fill: none;
}

.axis path {
stroke: black;
}

.text {
font-size: 12px;
}

.title-text {
font-size: 12px;
}
.cards-list {
z-index: 0;
width: 100%;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}

.card {
margin: 100px auto;
width: 300px;
height: 300px;
border-radius: 40px;
box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
cursor: pointer;
transition: 0.4s;
}

.card .card_image {
width: inherit;
height: inherit;
border-radius: 40px;
}

.card .card_image img {
width: inherit;
height: inherit;
border-radius: 40px;
object-fit: cover;
}

.card .card_title {
text-align: center;
border-radius: 0px 0px 40px 40px;
font-family: sans-serif;
font-weight: bold;
font-size: 30px;
margin-top: -80px;
height: 40px;
}

.card:hover {
transform: scale(0.9, 0.9);
box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25),
-5px -5px 30px 15px rgba(0,0,0,0.22);
}

.title-white {
color: white;
}

.title-black {
color: black;
}

.review {
height: 200px;
position: relative;
}

.success {
border: 3px solid black;
background-color: white;
color: black;
padding: 14px 28px;
font-size: 16px;
font-weight: bold;
margin-left: 40%;
/* margin-top: 60px; */
align-items: center;
cursor: pointer;
border-color: #18dcff;
color: #000;
border-radius: 20px;
}

.success:hover {
background-color:#18dcff;
color: white;
}

@media all and (max-width: 500px) {
.card-list {
/* On small screens, we are no longer using row direction but column */
flex-direction: column;
}
}


66 changes: 66 additions & 0 deletions homepage.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Stock Prediction</title>
<link rel="stylesheet" type="text/css" href="../homepage.css">
</head>
<body>
<style>
body {
background-image: url('../Back.jpeg');
background-attachment: fixed;
background-size: 100% 100%;
}
</style>
<div class="container">
<ul>
<li><a href="#" class="buttons">Nike</a></li>
<li><a href="#" class="buttons">PepsiCo</a></li>
<li><a href="#" class="buttons">Currency</a></li>
<li><a href="#" class="buttons">VIX</a></li>
<li><a href="#" class="buttons">Daily Review</a></li>
</ul>
</div>
<div class="cards-list">

<div class="card 1">
<div class="card_image"> <img src="index.png"/> </div>
<div class="card_title title-black">

</div>
</div>

<div class="card 2">
<div class="card_image">
<img src="PEPSI.png" />
</div>
<div class="card_title title-black">

</div>
</div>

<div class="card 3">
<div class="card_image">
<img src="CURR.jpeg" />
</div>
<div class="card_title title-black">
<p>Currency</p>
</div>
</div>

<div class="card 4">
<div class="card_image">
<img src="final.jpeg" />
</div>
<div class="card_title title-white">
<p>VIX</p>
</div>
</div>

</div>
<div class="Review">
<button class="success">Daily Prediction Review</button>
</div>
</body>
</html>
Binary file added index.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.