Skip to content

Add large video file using LFS #41

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

Open
wants to merge 2 commits into
base: main
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
84 changes: 82 additions & 2 deletions assets/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@
}
}

/*===== Hyperlink =====*/

.bright-text {
color: #1781EB ; /* Bright color (gold) */
font-weight: bold; /* Bold text */
text-decoration: underline; /* Underlined text */
}

/*===== BASE =====*/
*, ::before, ::after {
box-sizing: border-box;
Expand Down Expand Up @@ -209,8 +217,8 @@ img {
}
.home__img {
position: absolute;
right: 0;
bottom: 0;
right: -20px;
top: 120px;
width: 260px;
}
.home__blob {
Expand Down Expand Up @@ -305,6 +313,38 @@ img {
.skills__img {
border-radius: 0.5rem;
}
/* ======== PROJECTS =====*/
.projects__container {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
}

.project {
display: flex;
align-items: center;
gap: 2rem;
flex-wrap: wrap;
}

.project .work__img {
flex: 0 0 50%; /* Ensures the image takes up half of the row */
max-width: 50%; /* Ensures the image takes up half of the row */
}

.project__text {
flex: 1; /* Allows the text to take up the remaining space */
max-width: 50%; /* Ensures the text does not exceed half of the row */
}

.project__text h3 {
margin: 0 0 0.5rem 0;
}

.project__text p {
margin: 0;
}


/* ===== WORK =====*/
.work__container {
Expand All @@ -322,6 +362,46 @@ img {
transform: scale(1.1);
}

/* ===== CV =====*/
/* Add this to your existing CSS file */

/* Add this to your existing CSS file */
.cv__container {
display: flex;
align-items: center;
justify-content: center;
gap: 2rem; /* Add some spacing between the image and the button */
}

.cv__image-container {
max-width: 50%; /* Adjust as needed */
}

.cv__image {
width: 100%;
height: auto;
border-radius: 0.5rem; /* Optional: Add some rounding to the image corners */
}

.cv__button {
display: inline-block;
padding: 1rem 2rem;
font-size: 1rem;
color: #fff;
background-color: var(--first-color);
border-radius: 0.5rem;
text-align: center;
transition: background-color 0.3s;
text-decoration: none;
}

.cv__button:hover {
background-color: var(--first-color-alt);
}




/* ===== CONTACT =====*/
.contact__input {
width: 100%;
Expand Down
Binary file added assets/cv/Michele Tufano CV.pdf
Binary file not shown.
Binary file added assets/img/Drink1.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/img/IMG_2879.jpeg
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/img/IMG_4027.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/img/about.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/img/asn.jfif
Binary file not shown.
Binary file added assets/img/bitecount.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/img/eatpol.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/img/feedresearcher.jpeg
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/img/foodpedia.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/img/fpd.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 modified assets/img/perfil.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/img/perfil2.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/img/presentation.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/img/systematic.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 removed assets/img/work1.jpg
Binary file not shown.
Binary file removed assets/img/work2.jpg
Binary file not shown.
Binary file removed assets/img/work3.jpg
Binary file not shown.
Binary file removed assets/img/work4.jpg
Binary file not shown.
Binary file removed assets/img/work5.jpg
Binary file not shown.
Binary file removed assets/img/work6.jpg
Binary file not shown.
186 changes: 117 additions & 69 deletions index.html

Large diffs are not rendered by default.

Binary file removed preview.png
Binary file not shown.
18 changes: 18 additions & 0 deletions sendEmail.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$name = $_POST['name'];
$email = $_POST['email'];
$message = $_POST['message'];

$to = "[email protected]"; // Replace with your email address
$subject = "New Contact Form Submission";
$body = "Name: $name\nEmail: $email\n\nMessage:\n$message";
$headers = "From: $email";

if (mail($to, $subject, $body, $headers)) {
echo "Email successfully sent";
} else {
echo "Email sending failed";
}
}
?>