Fixed media query for chrome (incorrect syntax)
This commit is contained in:
parent
b92f236c75
commit
a34cf196e7
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Reference in a new issue