Portfolio/pages/mainpage.css

183 lines
2.6 KiB
CSS
Raw Normal View History

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";
line-height: 1.3;
2021-01-07 10:35:57 +00:00
}
button{
background-color: transparent;
border: none;
color: #ffd256;
}
2021-01-07 10:35:57 +00:00
button:focus {
border: none;
outline: none;
}
a:link:not(.galleryLink), a:visited:not(.galleryLink){
color: #ffd256;
border-radius: 2px;
transition: background-color 0.5s, color 0.5s;
}
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;
margin-right: 60vw;
2021-01-07 10:35:57 +00:00
height: 20vh;
text-align: left;
}
.subTitle{
font-size: 30%;
padding-top: 10;
padding-left: 5;
}
2021-01-07 10:35:57 +00:00
.orangeBorder{
border: 2px solid transparent;
2021-01-07 10:35:57 +00:00
border-radius: 5px;
padding: 5px;
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;
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);
}
.gallery{
display: flex;
margin-left: 10vw;
margin-right: 10vw;
height: 10vw;
2021-01-07 10:35:57 +00:00
}
.galleryItem{
margin-left: 4vw;
height: 10vw;
}
2021-01-07 10:35:57 +00:00
.galleryItem:hover + .galleryPopup{
visibility: visible;
opacity: 1;
2021-01-07 10:35:57 +00:00
}
.popupImage:hover, .galleryPopup{
visibility: visible;
opacity: 1;
}
2021-01-07 10:35:57 +00:00
.galleryPopup a{
2021-01-07 10:35:57 +00:00
width: 100%;
height: 100%;
}
.galleryPopup{
visibility: hidden;
opacity: 0;
2021-01-07 10:35:57 +00:00
display: flex;
z-index: 5;
position: absolute;
background-color: #ffd256;
border-radius: 2px;
color: #181818;
width: 67.5vw;
height: 15vw;
margin-left: 4vw;
text-decoration: none;
transition: visibility 0.3s, opacity 0.5s;
2021-01-07 10:35:57 +00:00
}
.popupImage{
padding: 10px;
}
2021-01-07 10:35:57 +00:00
.popupTextContainer{
display: flex;
flex-direction: column;
padding: 6px;
2021-01-07 10:35:57 +00:00
}
.galleryImage{
width: 100%;
height: 100%;
padding: 10px;
}
2021-01-07 10:35:57 +00:00
.galleryImageContainer{
height: 13.5vw;
width: 13.5vw;
2021-01-07 10:35:57 +00:00
}
.galleryTitle{
font-weight: 700;
2021-01-07 10:35:57 +00:00
}
#outroText{
margin-top: 20vh;
margin-bottom: 20vh;
2021-01-07 10:35:57 +00:00
margin-left: 27vw;
margin-right: 27vw;
}
#socialBar{
display: flex;
margin-bottom: 5vh;
justify-content: center;
2021-01-07 10:35:57 +00:00
}