Portfolio/pages/mainpage.css

103 lines
1.4 KiB
CSS
Raw Normal View History

2021-09-17 23:30:49 +01:00
#Title{
2023-01-07 14:21:27 +00:00
font-size: 2rem;
2021-01-07 10:35:57 +00:00
text-align: left;
2023-01-07 14:21:27 +00:00
margin-bottom: 2rem;
2021-01-07 10:35:57 +00:00
2023-01-07 14:21:27 +00:00
max-width: 15vw;
2021-01-07 10:35:57 +00:00
2023-01-07 14:21:27 +00:00
border-bottom: 2px solid var(--secondary);
2021-01-07 10:35:57 +00:00
2023-01-07 14:21:27 +00:00
transition: background-color 0.5s;
2021-01-15 21:20:36 +00:00
}
2023-01-07 14:21:27 +00:00
#Title:hover{
background-color: var(--highlight);
color: var(--base);
2021-09-16 15:03:14 +01:00
2023-01-07 14:21:27 +00:00
border-bottom: 2px solid var(--highlight);
2021-01-07 10:35:57 +00:00
}
2023-01-07 14:21:27 +00:00
.subTitle{
font-size: 60%;
padding-top: 10;
margin-bottom: 10;
}
2021-01-07 10:35:57 +00:00
2023-01-07 14:21:27 +00:00
.textBox{
text-align: left;
font-size: clamp(1rem, 1.2vw, 3rem);
2021-01-07 10:35:57 +00:00
}
2023-01-07 14:21:27 +00:00
#mainContent{
display: flex;
2023-01-07 14:21:27 +00:00
flex-direction: row;
2021-09-16 15:03:14 +01:00
2023-01-07 14:21:27 +00:00
margin-top: 1rem;
2021-01-07 10:35:57 +00:00
}
2023-01-07 14:21:27 +00:00
#sideText{
margin-left: 2rem;
}
2021-01-07 10:35:57 +00:00
2023-01-07 14:21:27 +00:00
#profileImageContainer{
min-width: 20vw;
height: 20vw;
2021-01-07 10:35:57 +00:00
2023-01-07 14:21:27 +00:00
margin-left: 0.5rem;
2021-01-07 10:35:57 +00:00
}
2023-01-07 14:21:27 +00:00
#galleryButton{
2021-09-17 23:22:11 +01:00
margin-top: 5vh;
}
2023-01-07 14:21:27 +00:00
.profileImage{
object-fit: cover;
width: 100%;
height:100%
2021-01-07 10:35:57 +00:00
}
@media (orientation:portrait){
2023-02-01 21:02:04 +00:00
body{
padding: 5vw;
}
#Title{
font-size: 5rem;
text-align: left;
margin-bottom: 2rem;
max-width: 80vw;
border-bottom: 2px solid var(--secondary);
transition: background-color 0.5s;
}
.textBox{
text-align: left;
font-size: 3rem;
}
#mainContent{
flex-direction: column;
}
#sideText{
margin-left: 0;
}
#galleryButton{
text-align: center;
}
#profileImageContainer{
height: auto;
padding: 10px;
margin-bottom: 5vh;
}
}
2021-01-07 10:35:57 +00:00