Skip to content

Commit

Permalink
updated projects list
Browse files Browse the repository at this point in the history
  • Loading branch information
catherineisonline committed Jul 25, 2023
1 parent 04aca48 commit 31d05e7
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 13 deletions.
25 changes: 19 additions & 6 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
>
</li>
<li>
<i class="fab fa-github-square"></i
><a
<i class="fab fa-github-square"></i>
<a
:href="headerDetail.gitHubUrl"
@click="removeMenu"
target="_blank"
Expand Down Expand Up @@ -530,11 +530,11 @@ export default {
},
{
id: 28,
projectName: "Fylo landing page with two column layout",
projectName: "Crowdfunding product page",
projectDescribtion:
"This project is great if you're starting to get confident with slightly more complex layouts. The second section with the testimonial area will provide a nice challenge.",
projectStack: ["HTML", "CSS"],
projectPreview: require("@/assets/images/fylo-landing-page-with-two-column-layout.webp"),
"This challenge will test both your layout and state management skills. As visitors make pledges, your goal is to keep track of the changes.",
projectStack: ["HTML", "CSS", "JS"],
projectPreview: require("@/assets/images/crowdfunding-product-page.webp"),
liveLink: "https://catherineisonline.github.io/crowdfunding-product-page-frontendmentor/",
projectLink:
Expand Down Expand Up @@ -580,6 +580,19 @@ export default {
"https://www.frontendmentor.io/challenges/intro-section-with-dropdown-navigation-ryaPetHE5",
repoLink: "https://github.com/catherineisonline/intro-section-with-dropdown-navigation-frontendmentor",
},
{
id: 32,
projectName: "Fylo landing page with two column layout",
projectDescribtion:
"This project is great if you're starting to get confident with slightly more complex layouts. The second section with the testimonial area will provide a nice challenge.",
projectStack: ["HTML", "CSS"],
projectPreview: require("@/assets/images/fylo-landing-page-with-two-column-layout.webp"),
liveLink: "https://catherineisonline.github.io/fylo-landing-page-with-two-column-layout-frontendmentor/",
projectLink:
"https://www.frontendmentor.io/challenges/fylo-landing-page-with-two-column-layout-5ca5ef041e82137ec91a50f5",
repoLink: "https://github.com/catherineisonline/fylo-landing-page-with-two-column-layout-frontendmentor",
},
],
};
},
Expand Down
1 change: 1 addition & 0 deletions src/assets/_base.sass
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ body
padding: 0
background-color: $bg-color
-ms-overflow-style: none
overflow-x: hidden
//for Internet Explorer, Edge */
scrollbar-width: none
//for Firefox */
Expand Down
24 changes: 17 additions & 7 deletions src/assets/styles.sass
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@use "base"
//Main
.main
margin: 0 auto
width: 100%
Expand Down Expand Up @@ -45,11 +46,10 @@ nav
cursor: pointer
.main-menu
display: none
.show-menu
background-color: base.$white
display: flex
background-color: base.$white
flex-direction: column
position: absolute
position: fixed
width: fit-content
height: fit-content
list-style: none
Expand All @@ -58,16 +58,21 @@ nav
font-size: 1rem
font-family: base.$barlow
text-transform: uppercase
gap: 20px
gap: 2rem
border-radius: 10px
padding: 1.5rem
li
padding: 2rem
transform: translateX(150%)
z-index: 999
.show-menu
transform: translateX(-10%)
transition: transform 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22)
li
border-bottom: 1px solid rgba(190, 190, 190, 0.253)
display: flex
gap: 10px
align-items: center
text-align: center
a
a
text-decoration: none
color: base.$black
text-transform: capitalize
Expand Down Expand Up @@ -232,6 +237,11 @@ nav
.link-btn
a:hover::after
transform: scaleX(0)
transition: all ease-in-out 0.3s
.show-menu
a:hover
color: red
transition: all ease-in-out 0.3s
.solutions
img:hover
cursor: pointer
Expand Down

0 comments on commit 31d05e7

Please sign in to comment.