Portfolio/pages/basic.css

62 lines
886 B
CSS
Raw Normal View History

2021-09-17 23:22:11 +01:00
@import url("reset.css");
@font-face{
font-family:"roboto";
font-weight: 100;
src: url("../fonts/Roboto/RobotoMono-VariableFont_wght.ttf")
}
2023-01-07 14:21:27 +00:00
2021-09-17 23:22:11 +01:00
html{
font: 100%;
}
body{
2023-01-07 14:21:27 +00:00
color: var(--secondary);
background-color: var(--base);
2021-09-17 23:22:11 +01:00
font-family: "roboto";
line-height: 1.3;
2023-01-07 14:21:27 +00:00
padding: 10vw 20vw 10vw 20vw;
2021-09-17 23:22:11 +01:00
}
button{
background-color: transparent;
border: none;
2023-01-07 14:21:27 +00:00
color: var(--secondary);
2021-09-17 23:22:11 +01:00
}
button:focus {
border: none;
outline: none;
}
h1{
font-size: clamp(1.2rem, 4vw, 4rem);
}
#socialBar{
display: flex;
2023-01-07 14:21:27 +00:00
margin: 2rem 0 5vh 0;
font-size: 1.2rem;
2021-09-17 23:22:11 +01:00
justify-content: center;
}
#backButtonContainer{
margin-bottom: 7vh;
margin-top: 7vh;
}
2023-02-01 21:02:04 +00:00
@media (orientation:portrait){
#socialBar{
font-size: 3rem;
margin-top: 5vh;
}
#backButtonContainer{
font-size: 3rem;
}
}