Portfolio/pages/mainpage.css
Nye Evans 78a208459b fixes issues with gallery
- adds hysteresis-kinda-thing so button doesnt move away from users mouse
2021-09-24 23:58:56 +01:00

239 lines
3.8 KiB
CSS

#Title{
font-size: clamp(1.2rem, 4vw, 4rem);
padding-left: 6;
margin-top: 10vh;
margin-bottom: 70vh;
margin-left: 2vw;
margin-right: 60vw;
height: 20vh;
text-align: left;
}
.textBox{
text-align: center;
font-size: clamp(1rem, 1.2vw, 3rem);
padding: 1.3vh;
margin-top: 8vh;
margin-bottom: 8vh;
margin-left: 10vw;
margin-right: 10vw;
}
.profileImageContainer{
width: 30vw;
height: 30vw;
text-align: center;
margin: 0 auto;
}
.profileImage{
border-radius: 2px;
object-fit: cover;
width: 100%;
height:100%
}
#galleryHeader{
margin-left: 30vw;
margin-right: 30vw;
border-radius: 5px;
font-size: clamp(1rem, 1.2vw, 3rem);
}
.gallery{
display: flex;
margin-left: 10vw;
margin-right: 10vw;
height: 19vh;
margin-bottom: 5vh;
transition: margin-bottom 2s 2s ease-in;
justify-content: space-evenly;
}
.galleryContainer:hover .gallery{
margin-bottom: 28vh;
transition: 0.5s;
}
.galleryItem{
height: 100%;
}
.galleryItem:hover + .galleryPopup{
visibility: visible;
opacity: 1;
}
.galleryItem:hover .popupTongue{
visibility: visible;
opacity: 1;
}
.galleryPopup:hover{
visibility: visible;
opacity: 1;
}
.galleryPopup:hover .popupTongue{
visibility: visible;
opacity: 1;
}
.galleryPopup{
visibility: hidden;
opacity: 0;
display: flex;
z-index: 5;
position: absolute;
background-color: #ffd256;
border-radius: 2px;
color: #181818;
width: 78.5vw;
height: 19vh;
transition: visibility 0.3s, opacity 0.5s;
margin-top: 20.85vh;
}
.popupTongue{
visibility: hidden;
opacity: 0;
transition: visibility 0.3s, opacity 0.5s;
width: 1.85vh;
height: 1.85vh;
margin-left: 5vw;
}
.popupImage{
/*display: none;*/
padding: 10px;
}
.popupTextContainer{
display: flex;
flex-direction: column;
padding: 6px;
color: #181818;
}
.galleryImage{
width: 100%;
height: 100%;
}
.galleryImageContainer{
height: 100%;
width: 100%;
display: block;
}
.galleryTitle{
font-weight: 700;
}
#galleryOutroLink{
text-align: center;
margin-top: 5vh;
}
#outroText{
margin-top: 12vh;
margin-bottom: 20vh;
margin-left: 27vw;
margin-right: 27vw;
}
@media (orientation:portrait){
#Title{
font-size: 10vw;
margin-right: 50vw;
}
.textBox{
font-size: 0.7rem;
margin-left: 2vw;
margin-right: 2vw;
}
.profileImageContainer{
margin: 2vh;
width: auto;
height: auto;
}
.profileImage{
border-radius: 1vw;
}
#galleryHeader{
margin-left: 2vw;
margin-right: 2vw;
font-size: 0.7rem;
}
.gallery{
margin-left: 2vw;
margin-right: 2vw;
justify-content: flex-start;
flex-wrap: wrap;
height: 100vw;
}
.galleryItem{
width: 20vw;
height: 20vw;
margin-bottom: 3vw;;
}
.galleryPopup{
visibility: visible;
opacity: 1;
z-index: 0;
position: static;
background-color: transparent;
color: #ffd256;
width: 73.5vw;
height: 20vw;
margin-top: 0vh;
}
.popupTongue{
display: none;
}
.popupImage{
display: none;
}
.galleryImage{
border-radius: 2px;
}
#galleryOutroLink{
font-size: 0.7rem;
}
#outroText{
margin-top: 12vh;
margin-bottom: 20vh;
margin-left: 2vw;
margin-right: 2vw;
}
.galleryLink{ /*this is set in basics, but the gallery on mobile will want to be different*/
text-decoration: none;
color:#ffd256;
}
}