Skip to content

Commit 4135050

Browse files
committed
Update web design and experience section
1 parent 1705de0 commit 4135050

File tree

4 files changed

+70
-35
lines changed

4 files changed

+70
-35
lines changed

index.html

Lines changed: 49 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -566,52 +566,80 @@ <h1 class="Title">Education</h1>
566566
</div>
567567
</section>
568568

569-
<!-- Scroll to next section
569+
<!-- Scroll to next section -->
570570
<a href="#experience" class="scroll-to-button">
571571
<i class="fa-solid fa-angles-down"></i>
572572
</a>
573573

574-
<!-- Experience Section
574+
<!-- Experience Section -->
575575
<section class="ExperienceSection" id="experience">
576576
<h1 class="Title" id="AltTitle">Experience</h1>
577577
<div class="ExperienceContainer">
578578
<div class="Experience">
579579
<div class="ExpTitle">
580-
<span>Web Designer with Fresno State Student Housing</span>
581-
<span>May 2023 - Present</span>
580+
<span class="JobTitle"
581+
>Web Designer/ Developer with Fresno State Student Housing</span
582+
>
583+
<span class="JobDate">May 2023 - Present</span>
582584
</div>
583585
<div class="ExpInfo">
584586
<span>
585-
As a Web Designer, I am responsible for designing, coding, and
586-
modifying the Student Housing website. I work closely with the
587-
Student Housing team to ensure that the website is up-to-date
588-
and user-friendly. I also collaborate with the Student Housing
589-
Marketing team to ensure that the website is aesthetically
590-
pleasing and consistent with the Student Housing brand.
587+
As the Web Designer for Fresno State Student Housing, I play a
588+
critical role in enhancing the digital presence and user
589+
experience for our campus community. Under the direct
590+
supervision of the Marketing and Summer Conference Coordinator,
591+
my responsibilities are tailored to support the vibrant and
592+
dynamic environment of Student Housing through strategic web
593+
design and maintenance.
591594
</span>
592-
<br />
593-
<span>My responsibilities include:</span>
595+
<span style="font-weight: bold"
596+
>My responsibilities include:</span
597+
>
594598
<ul>
595599
<li>
596-
Designing and implementing new features and functionality
600+
Overseeing the planning, development, and routine maintenance
601+
of the Student Housing website to align with marketing
602+
objectives and user expectations.
603+
</li>
604+
<li>
605+
Designing and implementing user-friendly features and
606+
functionalities, focusing on the ease of navigation,
607+
interaction, and accessibility, to foster an engaging online
608+
experience.
597609
</li>
598-
<li>Establishing and guiding the website’s architecture</li>
599610
<li>
600-
Ensuring high-performance and availability, and managing all
601-
technical aspects of the CMS
611+
Collaborating closely with the Student Housing and Marketing
612+
teams to ensure the website's content, usability, and design
613+
are up-to-date and reflect the brand's values and aesthetics.
602614
</li>
603615
<li>
604-
Helping formulate an effective, responsive design and turning
605-
it into a working theme and plugin
616+
Troubleshooting and resolving website operational issues,
617+
maintaining high performance and availability, and managing
618+
technical aspects of the CMS.
606619
</li>
607620
<li>
608-
Working closely with both the Student Housing and Marketing
609-
teams to ensure that the website is up-to-date and
610-
user-friendly
621+
Enhancing the visual appeal and functionality of the website
622+
through graphic design, layout adjustments, and content
623+
updates.
624+
</li>
625+
<li>
626+
Maintaining digital signage content, ensuring the information
627+
is current and visually appealing to enhance resident
628+
engagement.
611629
</li>
612630
</ul>
613631
</div>
614632
</div>
633+
<!--
634+
<div class="ExpMetric">
635+
<i class="fa-solid fa-user"></i>
636+
<div class="MetricInfo">
637+
<span
638+
>Increased the amount of visitors by 10% through the
639+
implementation of creating more resident oriented content.</span
640+
>
641+
</div>
642+
</div>-->
615643
</div>
616644
</section>
617645

portfolio.css

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,8 @@ section[id] {
322322
align-items: center;
323323
}
324324
.ExperienceContainer {
325-
display: flex;
326325
width: 94%;
326+
display: flex;
327327
}
328328
.Experience {
329329
display: flex;
@@ -351,6 +351,14 @@ section[id] {
351351
color: #d2d9d8;
352352
margin: 0.25em 0;
353353
width: 100%;
354+
gap: 0.5em;
355+
}
356+
357+
ul {
358+
margin: 0;
359+
}
360+
ul li {
361+
line-height: 1.25;
354362
}
355363

356364
/* Projects Section */
@@ -643,7 +651,12 @@ footer textarea {
643651
}
644652
.ExpTitle {
645653
flex-direction: column;
646-
gap: 0.5rem;
654+
gap: 0.25rem;
655+
margin: 0;
656+
}
657+
.JobDate {
658+
font: bold 0.75em "Lato";
659+
text-align: right;
647660
}
648661
.card {
649662
width: 90%;

projects/projects.css

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -135,16 +135,12 @@ body {
135135
width: 95%;
136136
background-color: #204359;
137137
border-radius: 0.625em;
138+
overflow: hidden;
138139
}
139140

140141
.project-image {
141142
width: 35%;
142-
}
143-
144-
.project-image img {
145-
width: 100%;
146-
height: auto;
147-
border-radius: 0.625em;
143+
object-fit: cover;
148144
}
149145

150146
.project-info {

projects/projects.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,27 +37,25 @@ function displayProjects(data) {
3737
projectElement.classList.add("project");
3838

3939
// Create the project image
40-
const projectImageContainer = document.createElement("div");
41-
projectImageContainer.classList.add("project-image");
4240
const projectImage = document.createElement("img");
41+
projectImage.classList.add("project-image");
4342
projectImage.src = `../` + project.backgroundImage;
4443
projectImage.alt = project.cardName;
45-
projectImageContainer.appendChild(projectImage);
4644

4745
// Create the project information
4846
const projectInfo = document.createElement("div");
4947
projectInfo.classList.add("project-info");
5048
projectInfo.innerHTML = `
51-
<h3>${project.cardName}</h3>
52-
<p>${project.description}</p>
49+
<span class="ProjectTitle">${project.cardName}</span>
50+
<span class="ProjectDesc">${project.description}</span>
5351
<div class="buttons">
5452
<a href="${project.liveDemoLink}" target="_blank">Live Demo</a>
5553
<a href="${project.sourceCodeLink}" target="_blank">Source Code</a>
5654
</div>
5755
`;
5856

5957
// Add the image and information to the project element
60-
projectElement.appendChild(projectImageContainer);
58+
projectElement.appendChild(projectImage);
6159
projectElement.appendChild(projectInfo);
6260

6361
// Add the project to the container

0 commit comments

Comments
 (0)