Skip to content

Commit

Permalink
Footnote
Browse files Browse the repository at this point in the history
  • Loading branch information
laistdomiciano committed Sep 16, 2024
1 parent cc5177c commit 8867467
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions frontend/static/styles.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
/* General Styles */
body {
html, body {
height: 100%; /* Make sure body and html are 100% of the viewport height */
margin: 0;
padding: 0;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-image: url("/static/home.png");
background-size: cover;
background-position: center;
background-attachment: fixed;
color: #333;
margin: 0;
padding: 0;
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
}

/* Create a blur effect using an overlay */
Expand Down Expand Up @@ -51,6 +52,13 @@ main {
padding: 2rem 0;
}


/* Flexbox layout to push footer to the bottom */
main {
flex-grow: 1; /* This allows main content to expand, pushing the footer down */
padding: 2rem 0;
}

footer {
background: rgba(0, 0, 0, 0.9);
color: #fff;
Expand Down

0 comments on commit 8867467

Please sign in to comment.