page draft 1
needs yamozha a p p r o v a l
This commit is contained in:
parent
a62ccb389d
commit
5eb9ea2f81
42
index.html
Normal file
42
index.html
Normal file
@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title> reValuate: Putting the value back in recycling </title>
|
||||
<!-- Bootstrap CSS and own CSS -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg bg-success">
|
||||
<a style="color: white; font-size: 35px;" class="navbar-brand mb-0 h1"> reValuate </a>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav mr-auto">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="index.html"> Home </a>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Account
|
||||
</a>
|
||||
<div class="dropdown-menu animate slideIn" aria-labelledby="navbarDropdown" >
|
||||
<a class="dropdown-item" href="reValuate/website/templates/registration/signup.html"> Sign Up </a>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item" href="reValuate/website/templates/registration/login.html"> Log In </a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div style="height: 71px;" class="container-fluid fixed-bottom bg-success"></div>
|
||||
|
||||
<!-- Jquery, popper, bootstrap scripts -->
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
||||
</body>
|
||||
</html>
|
53
style.css
Normal file
53
style.css
Normal file
@ -0,0 +1,53 @@
|
||||
a {
|
||||
color: white;
|
||||
font-size: 30px;
|
||||
transition: 0.6s;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: black;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.animate {
|
||||
animation-duration: 0.3s;
|
||||
-webkit-animation-duration: 0.3s;
|
||||
animation-fill-mode: both;
|
||||
-webkit-animation-fill-mode: both;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slideIn {
|
||||
0% {
|
||||
transform: translateY(1rem);
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
transform:translateY(0rem);
|
||||
opacity: 1;
|
||||
}
|
||||
0% {
|
||||
transform: translateY(1rem);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes slideIn {
|
||||
0% {
|
||||
-webkit-transform: transform;
|
||||
-webkit-opacity: 0;
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: translateY(0);
|
||||
-webkit-opacity: 1;
|
||||
}
|
||||
0% {
|
||||
-webkit-transform: translateY(1rem);
|
||||
-webkit-opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.slideIn {
|
||||
-webkit-animation-name: slideIn;
|
||||
animation-name: slideIn;
|
||||
}
|
Reference in New Issue
Block a user