Skip to content

Commit

Permalink
Update on Resume
Browse files Browse the repository at this point in the history
  • Loading branch information
kiarash13p committed Jul 3, 2024
1 parent 2dceab1 commit 9750252
Show file tree
Hide file tree
Showing 11 changed files with 119 additions and 510 deletions.
101 changes: 67 additions & 34 deletions css/majors.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
.cardopacity:hover{
background-color: rgba(0, 0, 0, 1);
}

#Quote{
user-select: none;
}
#Bio{
text-align: justify;
/* display: flex; Apply Flexbox layout */
Expand All @@ -35,6 +39,7 @@

.bio-text {
flex: 1; /* Allow the text to fill the remaining space */

}

.blockquote-custom-icon {
Expand All @@ -54,55 +59,83 @@
font-size: 1.2rem;
}
#Interests{
perspective: 1400px;/* for making 3D more attractive */
}
#Interests .card{
width: 15rem;
height: 25rem;
transition: transform 0.8s;
-o-transition: transform 0.8s;
-webkit-transition: transform 0.8s;
-moz-transition: transform 0.8s;
transform-style: preserve-3d;
user-select: none;
padding: auto;
}
#Interests .card:hover, .cardback{
transform: rotateY(180deg);
-ms-transform: rotateY(180deg);
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
-o-transform: rotateY(180deg);

#Interests .card {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
justify-content: center;
position: relative;

}
#Interests .card .card-img{
opacity: 0.2;

#Interests .card h4 {
position: absolute;
width: inherit;
height: inherit;

left: 0%;
width: 100%;
height: auto;
}
.cardfront, .cardback{
.cardfront {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
height: auto;

}
#Interests .card .card-img-overlay{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;

.cardfront img {
/* bring the image to center */
display: block;
margin-left: auto;
margin-right: auto;
width: 100%; /* Ensure the image covers the card width */
height: auto; /* Maintain aspect ratio */
transition: .7s ease;
opacity: 0.1;
}
#EducationalAssistant,#ProjectCoordinator,#RDSpecialist,#TeachingAssistant,#Bachelor,#Master,#Publication,#Bio

.cardback {
opacity: 0;
background-color: #ffffff;
overflow: hidden;
width: 100%;
height: auto;
transition: .7s ease;

}


#Interests .card:hover .cardback {
opacity: 1; /* Make cardback visible on hover */
}

#Interests .card:hover .cardfront {
opacity: 0; /* Make cardback visible on hover */
}

#Interests .card:hover h4 {
opacity: 0; /* Make cardback visible on hover */
}



#Interests .card .carddesc{
display: block;
}

#EducationalAssistant,#ProjectCoordinator,#RDSpecialist,#TeachingAssistant,#Bachelor,#Master,#Publication
{
transition-property: all;
transition-duration: 400ms;
transition-timing-function: ease;
transition-delay: 0s;
user-select: none;
}
#EducationalAssistant:hover,#ProjectCoordinator:hover,#RDSpecialist:hover,#TeachingAssistant:hover,#Bachelor:hover,#Master:hover,#Publication:hover,#Bio:hover
#EducationalAssistant:hover,#ProjectCoordinator:hover,#RDSpecialist:hover,#TeachingAssistant:hover,#Bachelor:hover,#Master:hover,#Publication:hover
{
transform: scale(1.02);
}
Expand Down
Binary file added images/education.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
164 changes: 0 additions & 164 deletions images/education.svg

This file was deleted.

Binary file added images/improve-thinking.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 9750252

Please sign in to comment.