From cdb8b725a910ab0527e95d1ca94b03273c4d85fb Mon Sep 17 00:00:00 2001 From: zepp Date: Sun, 9 Feb 2025 13:13:51 -0500 Subject: [PATCH] add content to footer add additional links to footer style in css prepare script.js for credits page --- valentines-day-25/index.html | 4 +++- valentines-day-25/js/script.js | 2 ++ valentines-day-25/style/style.css | 32 ++++++++++++++++++++++++++++++- 3 files changed, 36 insertions(+), 2 deletions(-) diff --git a/valentines-day-25/index.html b/valentines-day-25/index.html index 15e4374..23f096c 100644 --- a/valentines-day-25/index.html +++ b/valentines-day-25/index.html @@ -63,7 +63,9 @@ \ No newline at end of file diff --git a/valentines-day-25/js/script.js b/valentines-day-25/js/script.js index f2d6b79..aca8c23 100644 --- a/valentines-day-25/js/script.js +++ b/valentines-day-25/js/script.js @@ -72,6 +72,8 @@ const notesForEmma = { don't let it. don't run away

`, }; +const creditNote = ``; + const baxterThoughtImgSrc = [ "../img/baxter-thoughts/baxter-thought-one.webp", "../img/baxter-thoughts/baxter-thought-two.webp", diff --git a/valentines-day-25/style/style.css b/valentines-day-25/style/style.css index 14b0a9a..084e1ba 100644 --- a/valentines-day-25/style/style.css +++ b/valentines-day-25/style/style.css @@ -1,6 +1,8 @@ :root { --header-footer-color: #BFD9C6CC; --text-color-light-red: #E94E77; + --link-color: #E94E77; + --link-hover-color: #664625; } @font-face { @@ -58,7 +60,10 @@ header { footer { width: 100vw; height: 8vh; - background: var(--header-footer-color) + background: var(--header-footer-color); + padding: 0 2rem; + display: flex; + align-items: center; } section { @@ -67,6 +72,31 @@ section { height: auto; } +a { + text-decoration: none; + color: var(--link-color); +} + +a:hover { + color: var(--link-hover-color); +} + +.cafe { + font-size: 1.25rem; + padding-right: 7rem; +} + +.message { + font-size: 3rem; + font-family: alwaysinmyheart; + color: var(--text-color-light-red); + padding-right: 28rem; +} + +.credits { + font-size: 1.25rem; +} + .header-text { font-family: alwaysinmyheart; font-size: 3.25rem;