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

Small About Section change #151

Open
wants to merge 52 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
dd5a9c8
Small About Section change
VedantSingh-100 Dec 4, 2024
6310399
minor change
VedantSingh-100 Dec 4, 2024
f2f14ae
Major changes in about section
VedantSingh-100 Dec 4, 2024
b5e64e2
Changes in what I do
VedantSingh-100 Dec 4, 2024
6fc1c57
Testimonial
VedantSingh-100 Dec 4, 2024
52369b8
More testimonials changes
VedantSingh-100 Dec 4, 2024
015857f
Changes in Resume Education section
VedantSingh-100 Dec 4, 2024
af1e204
Changes in the Experience Section
VedantSingh-100 Dec 4, 2024
7a7a79a
Changes in the Skill Section
VedantSingh-100 Dec 4, 2024
53ed911
Added Profile Photo
VedantSingh-100 Dec 4, 2024
243a4d3
Changes in the sidebar and Topline
VedantSingh-100 Dec 4, 2024
fe09448
Blog added back
VedantSingh-100 Dec 4, 2024
624f0ec
add scrollable view
VedantSingh-100 Dec 4, 2024
1622d07
clean-up
VedantSingh-100 Dec 4, 2024
44a3b6c
clean up-2
VedantSingh-100 Dec 4, 2024
3274e25
check
VedantSingh-100 Dec 4, 2024
71f52f8
check falied
VedantSingh-100 Dec 4, 2024
f0ae296
back to basic
VedantSingh-100 Dec 4, 2024
360b259
minor change
VedantSingh-100 Dec 4, 2024
edc1d64
minor change
VedantSingh-100 Dec 4, 2024
50a2bb8
Project Change 1
VedantSingh-100 Dec 4, 2024
6370dfa
Project 1
VedantSingh-100 Dec 4, 2024
c566bcb
Image Change
VedantSingh-100 Dec 4, 2024
a7e12e8
Change profile photo
VedantSingh-100 Dec 4, 2024
f0ff336
New changes
VedantSingh-100 Dec 4, 2024
29b74c8
Project 1 Changes image
VedantSingh-100 Dec 4, 2024
a83df24
Changes in image of project 1
VedantSingh-100 Dec 4, 2024
5dec9a9
Post 2 Details
VedantSingh-100 Dec 4, 2024
227aa66
Final Post 2 details
VedantSingh-100 Dec 4, 2024
76061ef
Changes in Projects
VedantSingh-100 Dec 5, 2024
11c189b
New Project details
VedantSingh-100 Dec 5, 2024
54b267e
Project changes more
VedantSingh-100 Dec 5, 2024
17fa246
Clients removed
VedantSingh-100 Dec 5, 2024
59b06c0
Changed Profile Photo
VedantSingh-100 Dec 12, 2024
5394e7c
Prayan project changed
VedantSingh-100 Dec 12, 2024
ae6f65e
Project 2 Changes
VedantSingh-100 Dec 12, 2024
88668cd
Project 3 Changes
VedantSingh-100 Dec 12, 2024
3380931
Downloadable Resume link
VedantSingh-100 Dec 12, 2024
a552c6a
Fixed resume path
VedantSingh-100 Dec 12, 2024
4d675ad
Resume Download change
VedantSingh-100 Dec 13, 2024
d2bfcf9
Resume refined
VedantSingh-100 Dec 13, 2024
7e25e9d
Resume heading changes
VedantSingh-100 Dec 13, 2024
b6188d7
Download resume class removed
VedantSingh-100 Dec 13, 2024
72594ef
Resume tryinig to fix
VedantSingh-100 Dec 13, 2024
1d6bd09
Changed blog to Project
VedantSingh-100 Dec 13, 2024
7d4f8dc
Changing navbar for Project
VedantSingh-100 Dec 13, 2024
3b1c19c
Project 4 Addition
VedantSingh-100 Dec 13, 2024
a501e1a
Project 4 Changed
VedantSingh-100 Dec 13, 2024
6323ca8
Project 4 Changes
VedantSingh-100 Dec 13, 2024
1f27fe4
Project 4 Changes
VedantSingh-100 Dec 13, 2024
a719ba9
Project 4 dp
VedantSingh-100 Dec 13, 2024
ef3b2d8
Project Years Changed
VedantSingh-100 Dec 13, 2024
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
108 changes: 80 additions & 28 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1031,18 +1031,18 @@ main {


/*-----------------------------------*\
#BLOG
#project
\*-----------------------------------*/

.blog-posts { margin-bottom: 10px; }
.project-posts { margin-bottom: 10px; }

.blog-posts-list {
.project-posts-list {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}

.blog-post-item > a {
.project-post-item > a {
position: relative;
background: var(--border-gradient-onyx);
height: 100%;
Expand All @@ -1051,7 +1051,7 @@ main {
z-index: 1;
}

.blog-post-item > a::before {
.project-post-item > a::before {
content: "";
position: absolute;
inset: 1px;
Expand All @@ -1060,54 +1060,54 @@ main {
z-index: -1;
}

.blog-banner-box {
.project-banner-box {
width: 100%;
height: 200px;
border-radius: 12px;
overflow: hidden;
}

.blog-banner-box img {
.project-banner-box img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition-1);
}

.blog-post-item > a:hover .blog-banner-box img { transform: scale(1.1); }
.project-post-item > a:hover .project-banner-box img { transform: scale(1.1); }

.blog-content { padding: 15px; }
.project-content { padding: 15px; }

.blog-meta {
.project-meta {
display: flex;
justify-content: flex-start;
align-items: center;
gap: 7px;
margin-bottom: 10px;
}

.blog-meta :is(.blog-category, time) {
.project-meta :is(.project-category, time) {
color: var(--light-gray-70);
font-size: var(--fs-6);
font-weight: var(--fw-300);
}

.blog-meta .dot {
.project-meta .dot {
background: var(--light-gray-70);
width: 4px;
height: 4px;
border-radius: 4px;
}

.blog-item-title {
.project-item-title {
margin-bottom: 10px;
line-height: 1.3;
transition: var(--transition-1);
}

.blog-post-item > a:hover .blog-item-title { color: var(--orange-yellow-crayola); }
.project-post-item > a:hover .project-item-title { color: var(--orange-yellow-crayola); }

.blog-text {
.project-text {
color: var(--light-gray);
font-size: var(--fs-6);
font-weight: var(--fw-300);
Expand Down Expand Up @@ -1244,11 +1244,11 @@ textarea.form-input::-webkit-resizer { display: none; }


/**
* #PORTFOLIO, BLOG
* #PORTFOLIO, project
*/

.project-img,
.blog-banner-box { height: auto; }
.project-banner-box { height: auto; }

}

Expand Down Expand Up @@ -1488,29 +1488,81 @@ textarea.form-input::-webkit-resizer { display: none; }
* #RESUME
*/

.timeline-list { margin-left: 65px; }
/* Timeline styling */
.timeline-list {
margin-left: 65px;
}

.timeline-item:not(:last-child)::before { left: -40px; }
.timeline-item:not(:last-child)::before {
left: -40px;
}

.timeline-item::after {
height: 8px;
width: 8px;
left: -43px;
}

.skills-item:not(:last-child) { margin-bottom: 25px; }
/* Skills item margin */
.skills-item:not(:last-child) {
margin-bottom: 25px;
}

/* Scoped Download Icon Style */
.resume header {
display: flex; /* Ensure the text and icon are properly aligned */
align-items: center; /* Vertically center align the icon and text */
gap: 10px; /* Add space between the text and the icon */
}

.resume header h2 {
display: flex; /* Aligns header elements in a row */
align-items: center;
}

.resume header .header-download-icon {
margin-left: 10px; /* Space between text and icon */
font-size: 1.2em; /* Adjust icon size */
color: inherit; /* Inherit text color */
text-decoration: none; /* Remove underline */
display: flex; /* Make the icon inline-flex for better alignment */
align-items: center;
}

.resume header .header-download-icon:hover {
color: #007BFF; /* Highlight color on hover */
cursor: pointer;
}

/* Download Resume Button */
.download-resume {
margin-top: 20px; /* Adds space between header and button */
}

.download-resume a {
font-size: 1em;
text-decoration: none;
color: #007BFF; /* Default color for the button */
display: flex;
align-items: center;
gap: 5px; /* Adds space between icon and text */
}

.download-resume a:hover {
color: #0056b3; /* Darker blue on hover */
text-decoration: underline; /* Add an underline for hover effect */
}


/**
* #PORTFOLIO, BLOG
* #PORTFOLIO, project
*/

.project-img, .blog-banner-box { border-radius: 16px; }
.project-img, .project-banner-box { border-radius: 16px; }

.blog-posts-list { gap: 30px; }
.project-posts-list { gap: 30px; }

.blog-content { padding: 25px; }
.project-content { padding: 25px; }



Expand Down Expand Up @@ -1622,9 +1674,9 @@ textarea.form-input::-webkit-resizer { display: none; }

.filter-item button.active { color: var(--orange-yellow-crayola); }

/* portfolio and blog grid */
/* portfolio and project grid */

.project-list, .blog-posts-list { grid-template-columns: 1fr 1fr; }
.project-list, .project-posts-list { grid-template-columns: 1fr 1fr; }



Expand Down Expand Up @@ -1749,10 +1801,10 @@ textarea.form-input::-webkit-resizer { display: none; }


/**
* BLOG
* project
*/

.blog-banner-box { height: 230px; }
.project-banner-box { height: 230px; }

}

Expand Down
Binary file added assets/images/My Profile Photo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/Prayan1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/Project 4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/Slip And Slide Wooden 2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/Triyan 2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/Vedant Singh_Resume.pdf
Binary file not shown.
Loading