small css updates

This commit is contained in:
Yannik Schmidt
2021-06-30 17:11:29 +02:00
parent 8f8cee4a02
commit 707a6bf37c

View File

@@ -7,6 +7,14 @@ body {
overflow-x: hidden; overflow-x: hidden;
} }
p{
font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
h1{
font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.flag{ .flag{
height: 40px; height: 40px;
width: 70px; width: 70px;
@@ -15,6 +23,13 @@ body {
padding: 0 !important; padding: 0 !important;
} }
.mobile-only{
display: none;
}
.desktop-only{
display: block;
}
@media (max-width: 767px) { @media (max-width: 767px) {
body { body {
font-size: 25px; font-size: 25px;
@@ -22,15 +37,18 @@ body {
.flag{ .flag{
margin-left: unset; margin-left: unset;
} }
.mobile-only{
display: block;
}
.desktop-only{
display: none;
}
} }
@media (max-width: 500px) { @media (max-width: 500px) {
body { body {
font-size: 5vw; font-size: 5vw;
} }
h1{
font-size: 30px;
}
} }
.title-responsive{ .title-responsive{
@@ -45,12 +63,6 @@ body {
} }
} }
@media (max-width: 1300px) and (min-width: 766px){
h1{
font-size: 3.5vw;
}
}
@media (max-width: 900px) { @media (max-width: 900px) {
.title-responsive{ .title-responsive{
font-size: 2.2vw !important; font-size: 2.2vw !important;