Portfolio/pages/CVPage.css

123 lines
1.6 KiB
CSS
Raw Permalink Normal View History

2021-01-15 21:20:36 +00:00
@import url("reset.css");
@font-face{
font-family:"roboto";
font-weight: 100;
2021-01-15 21:51:55 +00:00
src: url("../fonts/Roboto/RobotoMono-VariableFont_wght.ttf")
2021-01-15 21:20:36 +00:00
}
body{
2023-01-07 14:21:27 +00:00
color: var(--secondary);
2021-01-15 21:20:36 +00:00
font-family: "roboto";
2023-01-07 14:21:27 +00:00
background-color: var(--base);
2021-06-18 16:44:06 +01:00
line-height: 1.3;
2021-09-25 12:10:45 +01:00
margin: 3vw;
2021-01-15 21:20:36 +00:00
}
h1{
font-size: clamp(20px, 4vw, 170px);
text-align: left;
}
h2{
padding-top: 10px;
}
h3{
font-size: 0.9vw;
padding-bottom: 4px;
}
ul{
list-style-type: circle;
padding-bottom: 5px;
padding-left: 20px;
}
li{
2021-09-25 12:10:45 +01:00
padding-top: 10px;
2021-01-15 21:20:36 +00:00
font-size: 0.8vw;
}
a:link, a:visited{
2023-01-07 14:21:27 +00:00
color: var(--secondary);
2021-01-15 21:20:36 +00:00
}
.backButton{
text-align: center;
2021-09-25 12:10:45 +01:00
font-size: clamp(20px, 1vw, 170px);
2021-01-15 21:20:36 +00:00
margin-top: 10vh;
}
#backButtonContainer{
text-align: center;
margin-bottom: 7vh;
margin-top: 7vh;
2021-01-15 21:20:36 +00:00
}
2021-09-25 12:10:45 +01:00
#cv{
display: flex;
flex-direction: column;
padding: 10px;
padding-bottom: 7vh;
2021-09-25 12:10:45 +01:00
}
2021-01-15 21:20:36 +00:00
2021-09-25 12:10:45 +01:00
#cvBody{
display: flex;
flex-direction: row;
justify-content: flex-start;
2021-01-15 21:20:36 +00:00
}
#introText{
2023-01-07 14:21:27 +00:00
border-bottom: solid 2px var(--secondary);
2021-09-25 12:10:45 +01:00
font-size: 1.2rem;
text-align: left;
2021-01-15 21:20:36 +00:00
padding-bottom: 20px;
}
#workExperienceText{
2021-09-25 12:10:45 +01:00
width: 50%;
2021-01-15 21:20:36 +00:00
}
#extraNotesText{
2021-09-25 12:10:45 +01:00
width: 50%;
2021-01-15 21:20:36 +00:00
}
#cvDownload{
2021-09-25 12:10:45 +01:00
text-align: center;
2021-01-15 21:20:36 +00:00
}
2021-09-25 12:10:45 +01:00
@media (orientation:portrait){
2021-09-25 12:10:45 +01:00
#cv{
font-size: 1.8rem;
2021-01-15 21:20:36 +00:00
}
2021-09-25 12:10:45 +01:00
li{
font-size: 1.3rem;
2021-01-15 21:20:36 +00:00
}
h3{
2021-09-25 12:10:45 +01:00
font-size: 1.7rem;
2021-01-15 21:20:36 +00:00
}
2021-09-25 12:10:45 +01:00
#workExperienceText{
width: 100%;
2021-01-15 21:20:36 +00:00
}
2021-09-25 12:10:45 +01:00
#extraNotesText{
width: 100%;
2021-01-15 21:20:36 +00:00
}
2021-01-15 21:20:36 +00:00
#introText{
2021-09-25 12:10:45 +01:00
font-size: 1.28rem;
}
2021-01-15 21:20:36 +00:00
}