Skip to content

Commit

Permalink
Make the footer always stick to the down of the screen
Browse files Browse the repository at this point in the history
  • Loading branch information
nimafanniasl committed Feb 11, 2024
1 parent 90c64ec commit dad4465
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
- [ ] Be able to Remove Comments
- [ ] Be able to edit comments
- [ ] Complete home page
- [ ] Make the footer always stick to the down of the screen
- [x] Make the footer always stick to the down of the screen
- [ ] Make the header and footer dynamic and load from a javascript file
- [ ] Add reactions to posts
- [ ] access for everyone to assign posts to labels
- [ ] Toggle for switching between light and dark mode
- [ ] Complete the categories page
- [ ] Rewrite every python script in rust
- [ ] Rewrite every python script in rust
- [ ] Format the date like correctly.
5 changes: 5 additions & 0 deletions scripts_rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@ authors = ["nimafanniasl"]

[dependencies]
reqwest = { version = "0.11.24", features = ["default", "json", "blocking"] }
select = "0.6.0"
serde_json = "1.0.113"


[[bin]]
name = "generate_post"
path = "src/generate_post.rs"

[[bin]]
name = "add_to_recent"
path = "src/add_to_recent.rs"
4 changes: 4 additions & 0 deletions style/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ body, h1, h2, p {
body {
color: #333;
font-family: Segoe UI Regular, Arial, sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
}

/* Style the header */
Expand Down Expand Up @@ -441,6 +444,7 @@ nav ul li a {
footer {
background-color: rgb(40, 43, 42);
color: rgb(241, 236, 226);
margin-top: auto;
}
.category {
background-color: rgb(25, 27, 27);
Expand Down

0 comments on commit dad4465

Please sign in to comment.