This commit is contained in:
Olusesan Ameye
2021-01-19 11:59:05 -05:00
parent 0e78ba2a44
commit 9eda56d836
3 changed files with 727 additions and 724 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

+3 -3
View File
@@ -41,7 +41,7 @@ body {
section #pages { section #pages {
float: right; float: right;
width: 525px; width: 525px;
background: transparent url('../images/light-page_shadow.png') repeat-y top left; /*background: transparent url('../images/light-page_shadow.png') repeat-y top left;*/
padding: 0px 0px 0px 50px; padding: 0px 0px 0px 50px;
position: relative; position: relative;
} }
@@ -53,11 +53,11 @@ section #pages {
left: 0px; left: 0px;
} }
section #pages .top_shadow { section #pages .top_shadow {
background: transparent url('../images/light-page_shadow_top.png') no-repeat top left; /*background: transparent url('../images/light-page_shadow_top.png') no-repeat top left;*/
top: 0px; top: 0px;
} }
section #pages .bottom_shadow { section #pages .bottom_shadow {
background: transparent url('../images/light-page_shadow_bottom.png') no-repeat top left; /*background: transparent url('../images/light-page_shadow_bottom.png') no-repeat top left;*/
bottom: 0px; bottom: 0px;
} }
section #pages div.page { section #pages div.page {
+15 -12
View File
@@ -2,7 +2,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<title>myFit - Personal Health Record System</title> <title>myFit - Personal Health Record System</title>
<meta charset="utf-8" /> <meta charset="utf-8" />
@@ -34,8 +34,9 @@
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
</head> </head>
<body> <body style="background-color:#f2f3f5; background-image: url('images/myfit-back.jpg'); background-size: cover; background-repeat: no-repeat;">
<!-- Start Wrapper --> <!-- Start Wrapper -->
<div id="page_wrapper"> <div id="page_wrapper">
@@ -45,8 +46,8 @@
<!-- Start Social Icons --> <!-- Start Social Icons -->
<aside> <aside>
<ul class="social"> <ul class="social">
<li class="facebook"><a href="">Facebook</a></li> <li class="facebook"><a href="https://www.facebook.com/Mermsemr-381924675740341">Facebook</a></li>
<li class="twitter"><a href="http://twitter.com/fluxtra">Twitter</a></li> <li class="twitter"><a href="https://twitter.com/mermsemr">Twitter</a></li>
<!-- More Social Icons: <!-- More Social Icons:
<li class="dribbble"><a href="">Dribbble</a></li> <li class="dribbble"><a href="">Dribbble</a></li>
@@ -118,7 +119,7 @@
<!-- Start Pages --> <!-- Start Pages -->
<div id="pages"> <div id="pages">
<div class="top_shadow"></div> <div class="top_shadow" style="background-color:#f2f3f5;"></div>
<!-- Start Home --> <!-- Start Home -->
<div id="home" class="page"> <div id="home" class="page">
@@ -534,9 +535,9 @@
<iframe src="/webres/privacy.php" width="100%" style="height:450px; width:100%; border:0px;"></iframe> <iframe src="/webres/privacy.php" width="100%" style="height:450px; width:100%; border:0px;"></iframe>
</div> </div>
<div id="security" class="page"> <div id="security" class="page">
<iframe src="/webres/security.php" width="100%" style="height:450px; width:100%; border:0px;"></iframe> <iframe src="/webres/security.php" width="100%" style="height:450px; width:100%; border:0px;"></iframe>
</div> </div>
<!-- Start Styles --> <!-- Start Styles -->
@@ -724,22 +725,24 @@
<!-- Start Footer --> <!-- Start Footer -->
<footer class="container"> <footer class="container">
<p>myFit &copy; 2020. FluxTra LLC All Rights Reserved. - <a href="#terms">Terms of Use</a> - <a href="#privacy">Privacy - <a href="#security">Security</a> </a></p> <p>myFit &copy; <?=date("Y")?>. FluxTra LLC All Rights Reserved. - <a href="#terms">Terms of Use</a> - <a href="#privacy">Privacy - <a href="#security">Security</a> </a></p>
</footer> </footer>
<!-- End Footer --> <!-- End Footer -->
</div> </div>
<!-- End Wrapper --> <!-- End Wrapper -->
<!-- Start Google Analytics --> <!-- Start Google Analytics -->
<!-- Global site tag (gtag.js) - Google Analytics --> <!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-139179419-1"></script> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-139179419-1"></script>
<script> <script>
window.dataLayer = window.dataLayer || []; window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);} function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'UA-139179419-1'); gtag('config', 'UA-139179419-1');
</script> </script>
</body> </body>
</html> </html>