Fixed media query for chrome (incorrect syntax)

This commit is contained in:
Edgar P. Burkhart 2020-12-22 11:30:07 +01:00
parent b92f236c75
commit a34cf196e7
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ footer a:active {
color: #ffffffde; color: #ffffffde;
} }
@media screen and ((min-width: 1024px) or (orientation: landscape)) { @media screen and (min-width: 1024px), screen and (orientation: landscape) {
.left, .right { .left, .right {
top: 0; top: 0;
bottom: 0; bottom: 0;
@ -94,7 +94,7 @@ footer a:active {
} }
} }
@media screen and ((max-width: 700px) and (orientation: landscape)) { @media screen and (max-width: 700px) and (orientation: landscape) {
.left h1, .left h2 { .left h1, .left h2 {
font-size: 2rem; font-size: 2rem;
padding-right: .5em; padding-right: .5em;