Skip to content

Commit

Permalink
feat: create a section for volunteers dsc-iem#34
Browse files Browse the repository at this point in the history
# Description
I have updated a volunteer section in team.html using google drive data.

Fixes dsc-iem#29

# Proposed changes
- Code
- User Interface
  • Loading branch information
pallavithakare28 committed Nov 3, 2020
1 parent 6bb5504 commit 2ba3efd
Show file tree
Hide file tree
Showing 2 changed files with 685 additions and 1 deletion.
53 changes: 52 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -710,4 +710,55 @@ WHY US SECTION
.card-img-top{
height: 450px !important;
width: 100%;
}
}





/*Team Page Volunteers CSS Starts*/

.flip-box {
background-color: transparent;
width: 300px;
height: 300px;
border: 3px solid #f1f1f1;
perspective: 1000px;
padding: 16px;
margin: 20px auto 20px 0px;
}

.flip-box-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
transform: rotateX(180deg);
}

.flip-box-front, .flip-box-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;

}

.flip-box-front {
background-color: white;
color: black;
}

.flip-box-back {
background-color:white;
color: grey;
transform: rotateX(180deg);
}

/* Team Page Volunteers CSS Done */
Loading

0 comments on commit 2ba3efd

Please sign in to comment.