2021-01-07 10:35:57 +00:00
|
|
|
@import url("reset.css");
|
|
|
|
|
|
|
|
@font-face{
|
|
|
|
font-family:"roboto";
|
|
|
|
font-weight: 100;
|
|
|
|
src: url("../fonts/Roboto/RobotoMono-VariableFont_wght.ttf")
|
|
|
|
}
|
|
|
|
html{
|
|
|
|
font: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body{
|
|
|
|
color: #ffd256;
|
|
|
|
background-color: #181818;
|
|
|
|
font-family: "roboto";
|
2021-05-26 11:42:53 +01:00
|
|
|
line-height: 1.3;
|
2021-01-07 10:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
button{
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
color: #ffd256;
|
|
|
|
}
|
|
|
|
|
2021-05-26 11:42:53 +01:00
|
|
|
|
2021-01-07 10:35:57 +00:00
|
|
|
button:focus {
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2021-09-16 12:03:36 +01:00
|
|
|
a:link:not(.galleryLink), a:visited:not(.galleryLink){
|
2021-01-14 15:44:08 +00:00
|
|
|
color: #ffd256;
|
2021-09-14 11:07:56 +01:00
|
|
|
border-radius: 2px;
|
|
|
|
transition: background-color 0.5s, color 0.5s;
|
2021-01-14 15:44:08 +00:00
|
|
|
}
|
|
|
|
|
2021-01-07 10:35:57 +00:00
|
|
|
h1{
|
|
|
|
font-size: clamp(1.2rem, 4vw, 4rem);
|
|
|
|
|
|
|
|
padding-left: 6;
|
|
|
|
|
|
|
|
margin-top: 10vh;
|
|
|
|
margin-bottom: 70vh;
|
|
|
|
margin-left: 2vw;
|
2021-02-20 17:56:14 +00:00
|
|
|
margin-right: 60vw;
|
2021-01-07 10:35:57 +00:00
|
|
|
|
|
|
|
height: 20vh;
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-02-20 17:56:14 +00:00
|
|
|
.subTitle{
|
|
|
|
font-size: 30%;
|
|
|
|
padding-top: 10;
|
|
|
|
padding-left: 5;
|
|
|
|
}
|
|
|
|
|
2021-01-07 10:35:57 +00:00
|
|
|
.orangeBorder{
|
2021-09-14 11:07:56 +01:00
|
|
|
border: 2px solid transparent;
|
2021-01-07 10:35:57 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
padding: 5px;
|
2021-09-14 11:07:56 +01:00
|
|
|
|
|
|
|
transition: border 0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.orangeBorder:hover{
|
|
|
|
border: 2px solid #ffd256;
|
|
|
|
padding: 5px;
|
2021-01-07 10:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2021-01-15 21:20:36 +00:00
|
|
|
.profileImage{
|
|
|
|
width: 30vw;
|
2021-09-14 11:07:56 +01:00
|
|
|
height: 30vw;
|
|
|
|
text-align: center;
|
2021-01-15 21:20:36 +00:00
|
|
|
}
|
|
|
|
|
2021-01-07 10:35:57 +00:00
|
|
|
#galleryHeader{
|
|
|
|
margin-left: 30vw;
|
|
|
|
margin-right: 30vw;
|
|
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
font-size: clamp(1rem, 1.2vw, 3rem);
|
|
|
|
}
|
|
|
|
|
2021-09-16 12:03:36 +01:00
|
|
|
.gallery{
|
|
|
|
display: flex;
|
|
|
|
margin-left: 10vw;
|
|
|
|
margin-right: 10vw;
|
2021-09-16 15:03:14 +01:00
|
|
|
height: 19vh;
|
|
|
|
margin-bottom: 0vh;
|
|
|
|
transition: margin-bottom 0.5s;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery:hover{
|
|
|
|
margin-bottom: 36vh;
|
2021-01-07 10:35:57 +00:00
|
|
|
}
|
|
|
|
|
2021-09-16 12:03:36 +01:00
|
|
|
.galleryItem{
|
2021-09-16 15:03:14 +01:00
|
|
|
height: 13vw;
|
2021-09-16 12:03:36 +01:00
|
|
|
}
|
2021-01-07 10:35:57 +00:00
|
|
|
|
|
|
|
|
2021-09-16 12:03:36 +01:00
|
|
|
.galleryItem:hover + .galleryPopup{
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
2021-01-07 10:35:57 +00:00
|
|
|
}
|
|
|
|
|
2021-09-16 15:03:14 +01:00
|
|
|
.galleryItem:hover .popupTongue{
|
2021-09-16 12:03:36 +01:00
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2021-01-07 10:35:57 +00:00
|
|
|
|
2021-09-16 15:03:14 +01:00
|
|
|
.galleryPopup:hover{
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.galleryPopup:hover .popupTongue{
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
2021-01-07 10:35:57 +00:00
|
|
|
}
|
|
|
|
|
2021-09-16 12:03:36 +01:00
|
|
|
.galleryPopup{
|
|
|
|
visibility: hidden;
|
|
|
|
opacity: 0;
|
2021-01-07 10:35:57 +00:00
|
|
|
|
2021-09-16 12:03:36 +01:00
|
|
|
display: flex;
|
|
|
|
z-index: 5;
|
|
|
|
position: absolute;
|
|
|
|
background-color: #ffd256;
|
|
|
|
border-radius: 2px;
|
|
|
|
color: #181818;
|
2021-09-16 15:03:14 +01:00
|
|
|
width: 78.5vw;
|
|
|
|
height: 19vh;
|
2021-09-16 12:03:36 +01:00
|
|
|
transition: visibility 0.3s, opacity 0.5s;
|
2021-09-16 15:03:14 +01:00
|
|
|
margin-top: 14.85vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popupTongue{
|
|
|
|
visibility: hidden;
|
|
|
|
opacity: 0;
|
|
|
|
transition: visibility 0.3s, opacity 0.5s;
|
|
|
|
|
|
|
|
width: 1.85vw;
|
|
|
|
height: 1.85vw;
|
|
|
|
margin-left: 5vw;
|
2021-01-07 10:35:57 +00:00
|
|
|
}
|
|
|
|
|
2021-09-16 12:03:36 +01:00
|
|
|
.popupImage{
|
|
|
|
padding: 10px;
|
|
|
|
}
|
2021-01-07 10:35:57 +00:00
|
|
|
|
2021-09-16 12:03:36 +01:00
|
|
|
.popupTextContainer{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 6px;
|
2021-01-07 10:35:57 +00:00
|
|
|
}
|
|
|
|
|
2021-09-16 12:03:36 +01:00
|
|
|
.galleryImage{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2021-01-07 10:35:57 +00:00
|
|
|
|
2021-09-16 12:03:36 +01:00
|
|
|
.galleryImageContainer{
|
2021-09-16 15:03:14 +01:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
2021-01-07 10:35:57 +00:00
|
|
|
}
|
|
|
|
|
2021-09-16 12:03:36 +01:00
|
|
|
.galleryTitle{
|
|
|
|
font-weight: 700;
|
2021-01-07 10:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#outroText{
|
2021-09-16 15:03:14 +01:00
|
|
|
margin-top: 12vh;
|
2021-02-22 22:16:27 +00:00
|
|
|
margin-bottom: 20vh;
|
2021-01-07 10:35:57 +00:00
|
|
|
margin-left: 27vw;
|
|
|
|
margin-right: 27vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
#socialBar{
|
|
|
|
display: flex;
|
2021-02-22 22:16:27 +00:00
|
|
|
margin-bottom: 5vh;
|
|
|
|
|
|
|
|
justify-content: center;
|
2021-01-07 10:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|