blob: 596dcded5932d7831e71908ad5fb9eba80e6c356 (
plain) (
blame)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/* Mobile view */
.mobile-view .navbar {
display: none;
}
.mobile-view #mainpage {
padding-top: 0;
}
.mobile-view #messagebuffer :nth-child(n+5):last-child {
margin-bottom: 0;
}
.mobile-view #chatwrap {
padding-left: 0;
padding-right: 0;
margin-bottom: 0;
}
.mobile-view #videowrap {
padding-left: 0;
padding-right: 0;
}
.mobile-view #currenttitle {
display: inline;
background-color: transparent;
text-align: center;
border: none;
}
.mobile-view #plcontrol {
display: none;
}
.mobile-view #leftcontrols {
text-align: center;
}
.mobile-view #rightcontrols {
text-align: center;
}
.mobile-view #videocontrols {
float: none !important;
width: 100%;
}
.mobile-view #extendplayer {
display: none;
}
.mobile-view #videocontrols .btn {
width: 20%;
}
/* .mobile-view .btn-xs {
padding: 4px 5px;
} */
.mobile-view #rightpane-inner {
padding-left: 0;
padding-right: 0;
}
.mobile-view #wrap {
padding-bottom: 0;
margin-bottom: 0;
}
@media (max-width:799px) {
.navbar {
/* display: none; */
border-color: #272b30 !important;
background: rgb(39, 43, 48) !important;
margin-bottom: 0;
}
#chatwrap {
width: 100% !important;
margin-bottom: 0;
}
#videowrap {
width: 100% !important;
}
.gutter.gutter-horizontal {
display: none;
}
#currenttitle {
display: none;
}
}
|