blob: 6e805cd4deada3163e92f05437a077b798e707e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*!
* Author: jesus e.
* Version: 1.0.0
* Licensed GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
*/
.single-play-menu {
height: 320px;
overflow-y: auto;
}
@media (min-width: 1920px) and (min-height: 900px) {
.single-play-menu {
height: 380px;
}
}
@media screen and (max-width: 1280px) {
.single-play-menu {
height: 320px;
}
}
@media screen and (max-width: 980px) {
.single-play-menu {
height: 250px;
}
}
@media screen and (max-width: 800px) {
.single-play-menu {
height: 190px;
}
}
@media screen and (max-width: 768px) {
.single-play-menu {
height: 350px;
}
}
@media screen and (max-width: 360px) {
.single-play-menu {
height: 150px;
}
}
@media screen and (max-width: 320px) {
.single-play-menu {
height: 120px;
}
}
|