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
2 changes: 1 addition & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Contact | The Memory Mate</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<style>
body { margin:0;font-family:'Inter','Roboto',sans-serif;background:#fff;color:#1a2a1a;line-height:1.6; }
body { margin:0;font-family:'Inter','Roboto',sans-serif;background:linear-gradient(180deg,#f8fff9 0%,#e9faee 100%);color:#1a2a1a;line-height:1.6; }
.container { max-width:900px;margin:0 auto;padding:2rem; }
form { display:flex;flex-direction:column;gap:0.75rem;max-width:500px; }
label { font-weight:500; }
Expand Down
22 changes: 19 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
margin: 0;
font-family: 'Inter', 'Roboto', 'Open Sans', sans-serif;
color: #1a2a1a;
background: #fff;
background: linear-gradient(180deg,#f8fff9 0%,#e9faee 100%);
line-height: 1.6;
scroll-behavior: smooth;
}
Expand All @@ -38,8 +38,24 @@
align-items: center;
gap: 1rem;
}
.menu { display: flex; gap: 2rem; }
.menu a { padding: 0.25rem 0; }
.menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 2rem;
}
.menu a {
display: inline-block;
padding: 0.45rem 0.8rem;
border-radius: 0.5rem;
font-weight: 500;
color: #4CAF50;
}
.menu a:not(.btn-primary):hover,
.menu a:not(.btn-primary):focus-visible {
background: #e9faee;
}
.btn-primary {
background: #4CAF50;
color: #fff;
Expand Down
2 changes: 1 addition & 1 deletion privacy.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Privacy Policy | The Memory Mate</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<style>
body { margin:0;font-family:'Inter','Roboto',sans-serif;background:#fff;color:#1a2a1a;line-height:1.6; }
body { margin:0;font-family:'Inter','Roboto',sans-serif;background:linear-gradient(180deg,#f8fff9 0%,#e9faee 100%);color:#1a2a1a;line-height:1.6; }
.container { max-width:900px;margin:0 auto;padding:2rem; }
header,footer { text-align:center;padding:1rem 0; }
footer { background:#e9faee;border-top:1px solid #e6f4ea; }
Expand Down
2 changes: 1 addition & 1 deletion terms.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Terms | The Memory Mate</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<style>
body { margin:0;font-family:'Inter','Roboto',sans-serif;background:#fff;color:#1a2a1a;line-height:1.6; }
body { margin:0;font-family:'Inter','Roboto',sans-serif;background:linear-gradient(180deg,#f8fff9 0%,#e9faee 100%);color:#1a2a1a;line-height:1.6; }
.container { max-width:900px;margin:0 auto;padding:2rem; }
header,footer { text-align:center;padding:1rem 0; }
footer { background:#e9faee;border-top:1px solid #e6f4ea; }
Expand Down