Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restyle Feature/add personal links to landing page #25

Open
wants to merge 1 commit into
base: feature/add-personal-links-to-landing-page
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions client/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -179,16 +179,16 @@ body {

.card::before {
background: radial-gradient(
800px circle at var(--mouse-x) var(--mouse-y),
800px circle at var(--mouse-x) var(--mouse-y),
rgba(200, 200, 200, 0.3),
transparent 40%
);
z-index: 3;
}

.card::after {
.card::after {
background: radial-gradient(
600px circle at var(--mouse-x) var(--mouse-y),
600px circle at var(--mouse-x) var(--mouse-y),
rgba(200, 200, 200, 0.4),
transparent 40%
);
Expand Down Expand Up @@ -248,7 +248,7 @@ body {
gap: 10px;
}

.card-info > i {
.card-info > i {
font-size: 1em;
height: 20px;
line-height: 20px;
Expand Down
1 change: 0 additions & 1 deletion client/src/components/Card/Interface/ICardState.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
export default interface ICardState {
}

2 changes: 0 additions & 2 deletions client/src/components/ExperienceSection/ExperienceSection.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,3 @@
.experience-section-card.below {
margin-top: 200px; /* Adjust as needed */
}


Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
background: #333;
background: #333;
}

@media screen and (min-height: 700px) {
Expand All @@ -29,7 +29,7 @@
background-color: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(10px);
width: 100%;
height: calc(var(--featured-section-height) + 100px);
height: calc(var(--featured-section-height) + 100px);
z-index: 4;
border-radius: var(--home-container-border-radius)
}
Expand All @@ -42,7 +42,7 @@
background-color: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(10px);
width: 100%;
height: calc(var(--featured-section-height) + 20vh);
height: calc(var(--featured-section-height) + 20vh);
z-index: 4;
border-radius: var(--home-container-border-radius)
}
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/BlogPage/BlogPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class BlogPage extends Component<IBlogPageProps, IBlogPageState> {
heading={content.heading}
author={content.author}
date_created={content.date_created}
body={content.body}
body={content.body}
link = {`/blog?id=${content._id.$oid}`}
/>
)
Expand Down