Added Team

This commit is contained in:
Michał Gdula 2022-06-09 01:32:36 +01:00
parent 74f0f205d5
commit e78be306e0
14 changed files with 133 additions and 29 deletions

View file

@ -22,7 +22,7 @@
display: flex;
flex-direction: row;
text-align: justify;
text-align: left;
align-items: center;
}
#team div div {
@ -38,9 +38,8 @@
/*
Gallery
*/
#team .gallery {
margin-bottom: 1.5em;
margin-bottom: 1em;
padding: 0.5em;
display: flex;
@ -67,10 +66,6 @@
#team .gallery h3 {
margin: 0;
}
/*
Gallery
*/
#team div .teamInfo {
display: block;
}
@ -92,3 +87,60 @@
margin: 1em;
}
}
/*
Fullscreen images
*/
#team .fullScreenImage {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
z-index: 100;
position: fixed;
top: 0;
left: 0;
display: none;
background: #151515dd;
border-radius: 0;
}
#team .fullScreenImage span {
margin: 0;
padding: 0;
align-items: center;
justify-content: center;
position: absolute;
top: 10px;
right: 20px;
font-size: 50px;
font-weight: bolder;
color: #FFFFFF;
cursor: pointer;
}
#team .fullScreenImage img {
margin: 0;
padding: 0;
max-width: 90%;
max-height: 90%;
min-width: none;
min-height: none;
align-items: center;
justify-content: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 0;
}