additional media query plus vertical queries to support smaller screens (closes #232)
This commit is contained in:
parent
a13c6b9ca9
commit
f6c5ceb490
|
@ -57,14 +57,20 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
::selection {
|
::selection {
|
||||||
background:#FF5E99;
|
background: #FF5E99;
|
||||||
color:#fff;
|
color: #fff;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 900px) {
|
@media screen and (max-width: 900px), (max-height: 600px) {
|
||||||
.reveal {
|
.reveal .slides {
|
||||||
font-size: 30px;
|
font-size: 0.82em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 700px), (max-height: 400px) {
|
||||||
|
.reveal .slides {
|
||||||
|
font-size: 0.66em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue