Skip to content
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
Binary file added assets/PriscaLimShiZhen_resume.pdf
Binary file not shown.
Binary file added assets/aifitnesscoach_website_front.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/android_food_playlist_subscription_img.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/capstone_demo.mov
Binary file not shown.
Binary file added assets/dating_website.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/dating_website_edited.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/meme_cat_project_shown_below.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/resume_pic.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
676 changes: 316 additions & 360 deletions index.html

Large diffs are not rendered by default.

37 changes: 36 additions & 1 deletion mediaqueries.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
height: 83vh;
margin-bottom: 6rem;
}

.about-containers {
flex-wrap: wrap;
}

#contact,
#projects {
height: fit-content;
Expand All @@ -16,88 +18,121 @@
#desktop-nav {
display: none;
}

#hamburger-nav {
display: flex;
}

#experience,
.experience-details-container {
margin-top: 2rem;
}

#profile,
.section-container {
display: block;
}

.arrow {
display: none;
}

section,
.section-container {
height: fit-content;
}

section {
margin: 0 5%;
}

.section__pic-container {
width: 275px;
height: 275px;
margin: 0 auto 2rem;
}

.section__pic-container img {
border-radius: 50%;
object-fit: cover;
}

.about-containers {
margin-top: 0;
}
}

@media screen and (max-width: 600px) {

#contact,
footer {
height: 40vh;
}

#profile {
height: 83vh;
margin-bottom: 0;
}

article {
font-size: 1rem;
}

footer nav {
height: fit-content;
margin-bottom: 2rem;
}

.about-containers,
.contact-info-upper-container,
.btn-container {
flex-wrap: wrap;
}

.contact-info-container {
margin: 0;
}

.contact-info-container p,
.nav-links li a {
font-size: 1rem;
}

.experience-sub-title {
font-size: 1.25rem;
}

.logo {
font-size: 1.5rem;
}

.nav-links {
flex-direction: column;
gap: 0.5rem;
text-align: center;
}

.section__pic-container {
width: auto;
height: 46vw;
justify-content: center;
}

.section__pic-container img {
border-radius: 50%;
object-fit: cover;
}


.section__text__p2 {
font-size: 1.25rem;
}

.title {
font-size: 2rem;
}

.text-container {
text-align: justify;
}
}
}
10 changes: 10 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,13 @@ function toggleMenu() {
menu.classList.toggle("open");
icon.classList.toggle("open");
}

// Function to open the modal
function openModal() {
document.getElementById("videoModal").style.display = "flex"; // Show the modal
}

// Function to close the modal
function closeModal() {
document.getElementById("videoModal").style.display = "none"; // Hide the modal
}
39 changes: 39 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -430,3 +430,42 @@ footer {
footer p {
text-align: center;
}

.modal {
display: none;
/* Hidden by default */
position: fixed;
/* Stay in place */
z-index: 1;
/* Sit on top */
left: 0;
top: 0;
width: 100%;
/* Full width */
height: 100%;
/* Full height */
overflow: auto;
/* Enable scroll if needed */
background-color: rgba(0, 0, 0, 0.8);
/* Black w/ opacity */
justify-content: center;
/* Center horizontally */
align-items: center;
/* Center vertically */
}

.modal video {
max-width: 80%;
/* Responsive video width */
max-height: 80%;
/* Responsive video height */
}

.close {
position: absolute;
top: 10px;
right: 20px;
color: white;
font-size: 30px;
cursor: pointer;
}