Skip to content

Commit

Permalink
Clean commit, before sass refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
ZachMc21 committed Nov 24, 2024
1 parent 9bab59a commit 51cc03a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@ Active backlog:
- Add images, code snippets, etc. to projects
- When the user scrolls past the bottom of the page, footer background color does not continue
- Animate #skills to fade in from bottom on scroll. Elements fade in individually from left to right
- Mobile-responsive display
- Mobile-responsive display - refactor with SASS?
- Continue from Partials heading here https://www.freecodecamp.org/news/the-beginners-guide-to-sass/
- But use @use not @import
- Change CSS selector for `<div class="project_divider fade-in" id="end">` to select the last div of that class type
23 changes: 21 additions & 2 deletions webpage/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ a:visited {
color: gray;
}


/* HEADER */
#header {
position: relative;
Expand Down Expand Up @@ -324,11 +323,31 @@ footer p {
text-align: center;
}





/* TODO Restructure for mobile displays - screen width <= 480px
- Skills columns combine into one
- Skills columns center
- Left projects menu becomes dropdown, project content shows below
*/
@media (max-width: 480px) {
div.main {
width: 100%;
}

#skills {
margin: 0 auto;
}
#skills div {
width: 100%;
}
#skills #swe_skills {
margin: 0;
}
#skills #other_skills {
margin: 0;
}
}

/* ANIMATIONS */
Expand Down

0 comments on commit 51cc03a

Please sign in to comment.