-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (105 loc) · 2.55 KB
/
style.css
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
* EndBASIC
* Copyright 2020 Julio Merino
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
@font-face {
font-family: "IBM Plex Mono";
src: local('IBM Plex Mono'),
url('/ibm-plex-6.0.0/IBMPlexMono-Regular-Latin1.woff2') format('woff2'),
url('/ibm-plex-6.0.0/IBMPlexMono-Regular-Latin1.woff') format('woff');
}
@font-face {
font-family: "IBM Plex Sans";
src: local('IBM Plex Sans'),
url('/ibm-plex-6.0.0/IBMPlexSans-Regular-Latin1.woff2') format('woff2'),
url('/ibm-plex-6.0.0/IBMPlexSans-Regular-Latin1.woff') format('woff');
}
html, body {
height: 100%;
margin: 0;
width: 100%;
overflow: hidden;
background: black;
}
#terminal {
position: fixed;
top: 0;
left: 0;
margin: 0;
}
#controls {
position: fixed;
top: 20pt;
right: 20pt;
z-index: 100;
opacity: 50%;
visibility: hidden;
display: grid;
gap: 10px 10px;
}
#controls button {
background: transparent;
border-style: solid;
border-color: white;
color: white;
font-size: 18px;
padding: 5pt 10pt 5pt 10pt;
}
#controls #button-esc {
grid-column-start: 1;
grid-column-end: 4;
grid-row-start: 1;
}
#controls #button-up {
grid-column-start: 2;
grid-row-start: 2;
}
#controls #button-down {
grid-column-start: 2;
grid-row-start: 3;
}
#controls #button-left {
grid-column-start: 1;
grid-row-start: 3;
}
#controls #button-right {
grid-column-start: 3;
grid-row-start: 3;
}
#mobile-input {
opacity: 0;
filter: alpha(opacity=0);
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 30pt;
background-color: #c50;
color: white;
font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";
font-size: 10pt;
padding-right: 10pt;
padding-left: 10pt;
display: flex;
align-items: center;
justify-content: left;
}
footer a {
color: white;
}