Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#161171072 Make Sign in and Sign Up pages more appealing #63

Merged
merged 1 commit into from
Oct 12, 2018
Merged
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
14 changes: 14 additions & 0 deletions ui/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,20 @@ img.food {
.hero h2 {
font-size: 2.6rem;
margin-bottom: 50px;
text-align: center;
}

/* Login & Sign Up Pages*/
body.auth {
background: url('./images/hamburger.jpg');
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
color: #fff;
}

div.auth {
min-height: 100vh;
}

/* Wrapper */
Expand Down
15 changes: 3 additions & 12 deletions ui/sign-in.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<link rel="stylesheet" href="assets/main.css">
<title>Sign In</title>
</head>
<body>
<header>
<body class="auth">
<header class="transparent">
<div class="site-title">
<h2><a href="index.html">Kiakia Food</a></h2>
</div>
Expand All @@ -21,7 +21,7 @@ <h2><a href="index.html">Kiakia Food</a></h2>
</nav>
</header>

<div class="wrapper">
<div class="wrapper auth">
<section class="container">
<h2>Access Your Account</h2>
<form>
Expand All @@ -35,15 +35,6 @@ <h2>Access Your Account</h2>
</section>
</div>

<footer>
<div class="footer-left">
<p>kiakia food</p>
</div>
<div class="footer-right">
<p>&copy; 2018</p>
</div>
</footer>

<script src="assets/main.js"></script>
</body>
</html>
15 changes: 3 additions & 12 deletions ui/sign-up.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<link rel="stylesheet" href="assets/main.css">
<title>Sign Up</title>
</head>
<body>
<header>
<body class="auth">
<header class="transparent">
<div class="site-title">
<h2><a href="index.html">Kiakia Food</a></h2>
</div>
Expand All @@ -21,7 +21,7 @@ <h2><a href="index.html">Kiakia Food</a></h2>
</nav>
</header>

<div class="wrapper">
<div class="wrapper auth">
<section class="container">
<h2>Create An Account</h2>
<form>
Expand All @@ -37,15 +37,6 @@ <h2>Create An Account</h2>
</section>
</div>

<footer>
<div class="footer-left">
<p>kiakia food</p>
</div>
<div class="footer-right">
<p>&copy; 2018</p>
</div>
</footer>

<script src="assets/main.js"></script>
</body>
</html>