finishing touches

changed icon to fit new style
minor layout changes
cleaned some stuff up
This commit is contained in:
Nye Evans 2021-01-14 15:44:08 +00:00
parent 016f6578e5
commit 210e2f82fc
7 changed files with 72 additions and 35 deletions

View file

@ -57,6 +57,19 @@ iframe{
@media (orientation:portrait){
body{
/*
touch-action: none;
touch-action: pan-y;
as well as disabling double tap, disables zoom which some people with bad eyes need, use something else
*/
touch-action: manipulation; /*stops double tap zoom*/
-webkit-text-size-adjust: none; /*stops browsers messing with text size*/
-moz-text-size-adjust: none;
-ms-text-size-adjust: none;
text-size-adjust: none;
}
h1{
font-size: 10vw;
@ -74,6 +87,32 @@ iframe{
}
h2{
font-size: clamp(25px, 3.6vw, 50px);
padding: 0;
}
.textBox{
font-size: clamp(25px, 2vw, 50px);
padding: 15px;
margin-bottom: 5vh;
}
.backButton{
font-size: clamp(25px, 2.5vw, 50px);
}
.videoContainer{
text-align: center;
}
iframe{
border: 2px solid #ffd256;
width: 90vw;
height: 50vw;
}
}