Portfolio/pages/gallery/blog-post-default.css

83 lines
1,016 B
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")
}
body{
color: #ffd256;
font-family: "roboto";
background-color: #181818;
}
h1{
font-size: clamp(20px, 4vw, 170px);
height: 20vh;
text-align: center;
}
a:link, a:visited{
color: #ffd256;
text-decoration: none;
}
.textBox{
text-align: left;
font-size: 1vw;
margin-top: 3vh;
padding: 2.5vh;
}
.videoContainer{
text-align: center;
}
iframe{
border: 2px solid #ffd256;
border-radius: 5px;
padding: 5px;
}
.backButton{
text-align: center;
font-size: clamp(20px, 2vw, 170px);
margin-top: 10vh;
}
@media (orientation:portrait){
h1{
font-size: 10vw;
margin-left: 0vw;
margin-right: 0vw;
margin-top: 5vh;
margin-bottom: 85vh;
padding-top: 0.5vh;
border-radius: 0;
height: 10vh;
}
}