Rework CSS
This commit is contained in:
parent
585a3c0dcc
commit
e501c8cd9a
3 changed files with 111 additions and 102 deletions
|
|
@ -378,7 +378,7 @@ window.addEventListener("load", function() {
|
||||||
if (fullscreenElement()) {
|
if (fullscreenElement()) {
|
||||||
exitFullscreen();
|
exitFullscreen();
|
||||||
} else {
|
} else {
|
||||||
requestFullscreen(pad, {navigationUI: "hide"});
|
requestFullscreen(document.documentElement, {navigationUI: "hide"});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
[{id: "prevtrackbutton", key: KEY_MEDIA_PREV_TRACK},
|
[{id: "prevtrackbutton", key: KEY_MEDIA_PREV_TRACK},
|
||||||
|
|
|
||||||
|
|
@ -11,28 +11,29 @@
|
||||||
<link href="icon.png" type="image/png" rel="shortcut icon">
|
<link href="icon.png" type="image/png" rel="shortcut icon">
|
||||||
|
|
||||||
<div id="opening">
|
<div id="opening">
|
||||||
<p>Connecting...</p>
|
|
||||||
<noscript><p>JavaScript is required!</p></noscript>
|
<noscript><p>JavaScript is required!</p></noscript>
|
||||||
|
<p>Connecting…</p>
|
||||||
</div>
|
</div>
|
||||||
<div id="closed" class="hidden">
|
<div id="closed" class="hidden">
|
||||||
<p>Disconnected</p>
|
<p>Disconnected</p>
|
||||||
<button id="reloadbutton">↻</button>
|
<button id="reloadbutton">↻</button>
|
||||||
</div>
|
</div>
|
||||||
<div id="pad" class="hidden">
|
<div id="pad" class="hidden">
|
||||||
<div class="buttons">
|
|
||||||
<button id="keysbutton">☰</button>
|
|
||||||
</div>
|
|
||||||
<p id="padlabel">Touchpad</p>
|
<p id="padlabel">Touchpad</p>
|
||||||
<div class="buttons">
|
<button id="keysbutton">☰</button>
|
||||||
<button id="fullscreenbutton">⤢</button>
|
<button id="fullscreenbutton">⤢</button>
|
||||||
<button id="keyboardbutton">⌨</button>
|
<button id="keyboardbutton">⌨</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div id="keyboard" class="hidden">
|
<div id="keyboard" class="hidden">
|
||||||
<textarea id="text" cols=1 rows=1></textarea>
|
<textarea id="text" cols=1 rows=1></textarea>
|
||||||
<button id="sendbutton">➣</button>
|
<button id="sendbutton">➣</button>
|
||||||
</div>
|
</div>
|
||||||
<div id="keys" class="hidden">
|
<div id="keys" class="hidden">
|
||||||
|
<div class="buttons">
|
||||||
|
<button id="browserbackbutton">⭠</button>
|
||||||
|
<button id="superbutton">🪟</button>
|
||||||
|
<button id="browserforwardbutton">⭢</button>
|
||||||
|
</div>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<button id="prevtrackbutton">⏮</button>
|
<button id="prevtrackbutton">⏮</button>
|
||||||
<button id="playpausebutton">⏯</button>
|
<button id="playpausebutton">⏯</button>
|
||||||
|
|
|
||||||
194
webdata/main.css
194
webdata/main.css
|
|
@ -7,45 +7,71 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
font-family: sans-serif;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
background-color: #404040;
|
||||||
|
color: white;
|
||||||
|
background-image: url(tex.png);
|
||||||
|
}
|
||||||
|
|
||||||
html,
|
html,
|
||||||
body,
|
body,
|
||||||
body > div {
|
body > div {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: sans-serif;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
-ms-user-select: none;
|
|
||||||
user-select: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body > div {
|
body > div {
|
||||||
background-color: #404040 !important;
|
position: relative;
|
||||||
background-image: url(tex.png);
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
box-sizing: border-box;
|
||||||
|
|
||||||
#opening,
|
|
||||||
#closed,
|
|
||||||
#keys {
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
#keys {
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
||||||
|
|
||||||
#keyboard {
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 2rem;
|
||||||
|
word-wrap: break-word;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
padding: 0;
|
||||||
|
background-color: transparent;
|
||||||
|
border: 1px solid black;
|
||||||
|
height: 1.5em;
|
||||||
|
width: 2em;
|
||||||
|
border-radius: 2px;
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
color: white;
|
color: white;
|
||||||
word-wrap: break-word;
|
font-family: "icon";
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#opening,
|
||||||
|
#closed {
|
||||||
|
padding: 0 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#opening noscript p,
|
||||||
|
#closed p {
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#reloadbutton {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin: 0 auto;
|
||||||
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#padlabel {
|
#padlabel {
|
||||||
|
|
@ -57,11 +83,7 @@ p {
|
||||||
1px 1px 0 black;
|
1px 1px 0 black;
|
||||||
opacity: 0.08;
|
opacity: 0.08;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-top: auto;
|
|
||||||
margin-bottom: auto;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 4rem;
|
font-size: 4rem;
|
||||||
word-wrap: break-word;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 32rem) {
|
@media (max-width: 32rem) {
|
||||||
|
|
@ -70,101 +92,87 @@ p {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.buttons {
|
#pad > button {
|
||||||
display: flex;
|
position: absolute;
|
||||||
|
max-width: 50%;
|
||||||
|
max-height: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
#fullscreenbutton {
|
||||||
background-color: transparent;
|
left: 0;
|
||||||
border: 1px solid black;
|
bottom: 0;
|
||||||
height: 1.5em;
|
|
||||||
width: 2em;
|
|
||||||
font-size: 2rem;
|
|
||||||
color: white;
|
|
||||||
font-family: "icon";
|
|
||||||
}
|
|
||||||
|
|
||||||
button:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#fullscreenbutton,
|
|
||||||
#keyboardbutton,
|
|
||||||
#sendbutton {
|
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
}
|
|
||||||
|
|
||||||
#keysbutton,
|
|
||||||
#fullscreenbutton,
|
|
||||||
#playpausebutton,
|
|
||||||
#volumemutebutton {
|
|
||||||
border-left: none;
|
border-left: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#keysbutton {
|
|
||||||
border-top: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#playpausebutton,
|
|
||||||
#volumemutebutton,
|
|
||||||
#keyboardbutton {
|
#keyboardbutton {
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
border-right: none;
|
border-right: none;
|
||||||
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#keyboardbutton {
|
#keysbutton {
|
||||||
margin-left: auto;
|
left: 0;
|
||||||
}
|
top: 0;
|
||||||
|
border-top: none;
|
||||||
#reloadbutton {
|
border-left: none;
|
||||||
font-size: 4rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
flex: 2;
|
flex-grow: 1;
|
||||||
border: none;
|
border: none;
|
||||||
resize: none;
|
resize: none;
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
color: black;
|
color: black;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
padding: 0 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sendbutton {
|
#sendbutton {
|
||||||
|
border-bottom: none;
|
||||||
border-right: none;
|
border-right: none;
|
||||||
border-top: none;
|
border-left: none;
|
||||||
height: 100%;
|
width: auto;
|
||||||
|
height: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#keys > .buttons {
|
@media (min-aspect-ratio: 4/3) {
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
#keys > .buttons > button {
|
|
||||||
height: 6rem;
|
|
||||||
width: 8rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 25rem) {
|
|
||||||
#keys > .buttons > button {
|
|
||||||
width: calc(0.33 * (100vw - 1rem));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-height: 13.5rem) {
|
|
||||||
#keys > .buttons > button {
|
|
||||||
height: calc(0.5 * (100vh - 1.5rem));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-aspect-ratio: 4/3) {
|
|
||||||
#keyboard {
|
#keyboard {
|
||||||
flex-direction: column;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sendbutton {
|
#sendbutton {
|
||||||
border-left: none;
|
border-top: none;
|
||||||
border-top: 1px solid black;
|
border-left: 1px solid black;
|
||||||
height: 1.5em;
|
width: 2em;
|
||||||
width: 100%;
|
height: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#keys {
|
||||||
|
padding: 0.5rem;
|
||||||
|
padding-bottom: 0;
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
#keys .buttons {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
flex-shrink: 1;
|
||||||
|
height: 6rem;
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#keys .buttons > button:not(:last-of-type) {
|
||||||
|
border-right: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#keys .buttons > button {
|
||||||
|
flex-shrink: 1;
|
||||||
|
height: 100%;
|
||||||
|
width: 8rem;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue