summaryrefslogtreecommitdiff
path: root/kvmd/web/css/mobile.css
blob: 6204afb66e1ece0b608156aefb3f0823213b5c4d (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
	http://stephen.io/mediaqueries/
	https://gist.github.com/gokulkrishh/242e68d1ee94ad05f488
*/

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
	div.window {
		padding-top: 45px !important;
	}
	div.window-header {
		height: 35px !important;
	}
	div.window-grab {
		height: 35px !important;
	}
	button.window-button-close {
		height: 40px !important;
	}

	ul#ctl li a.ctl-item:hover:not(.active) {
		background-color: var(--bg-color-ctl) !important;
	}

	div#keyboard div.key:hover, div.modifier:hover {
		color: var(--fg-color-normal);
		background-color: var(--bg-color-gray);
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
	div.ctl-dropdown-content button {
		height: 45px !important;
	}

	div#stream-window {
		padding-top: 9px !important;
		border-top: 0 !important;
		border-radius: 0 0 8px 8px !important;
		top: 50px !important;
		left: 50% !important;
		-webkit-transform: translateX(-50%) !important;
		transform: translateX(-50%) !important;
	}
	div#stream-window-header {
		display: none !important;
	}

	div#keyboard {
		zoom: 1.1 !important;
	}
	div#keyboard-window {
		visibility: visible !important;
		padding-top: 9px !important;
		padding-bottom: 30px !important;
		border-bottom: 0 !important;
		border-left: 0 !important;
		border-right: 0 !important;
		border-radius: 0 !important;
		top: unset !important;
		bottom: 0 !important;
		width: 100% !important;
		left: 50% !important;
		-webkit-transform: translateX(-50%) !important;
		transform: translateX(-50%) !important;
	}
	div#keyboard-window-header {
		display: none !important
	}
}