-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (48 loc) · 1.39 KB
/
Copy pathstyle.css
File metadata and controls
55 lines (48 loc) · 1.39 KB
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
* { box-sizing: border-box; margin:0; padding:0; }
html, body {
width:100%; height:100%;
background:#111;
overflow:hidden;
position:fixed;
inset:0;
}
#phone {
width:100%; height:100%;
max-width:240px; max-height:320px;
margin:0 auto;
display:flex; flex-direction:column; justify-content:space-between;
font-family: 'Courier New', monospace;
overflow:hidden;
user-select:none;
image-rendering: pixelated;
}
#statusbar {
height:20px; line-height:20px;
font-size:10px; padding:0 5px;
display:flex; justify-content:space-between;
letter-spacing:0.5px;
}
#screenWrap {
flex:1;
display:flex; align-items:center; justify-content:center;
position:relative;
}
canvas { display:block; }
#overlay {
position:absolute; top:0; left:0; right:0; bottom:0;
display:flex; flex-direction:column; align-items:center; justify-content:center;
font-size:10px; text-align:center; padding:6px;
}
#overlay.hidden { display:none; }
.menuList { width:100%; }
.menuItem { padding:3px 6px; font-size:10px; }
.menuItem.sel { font-weight:bold; }
.title { font-size:12px; font-weight:bold; margin-bottom:6px; letter-spacing:1px; }
.hint { font-size:8px; margin-top:8px; opacity:0.8; line-height:1.3; }
#softkeys {
height:22px; line-height:22px;
font-size:10px; padding:0 6px;
display:flex; justify-content:space-between;
font-weight:bold;
}
#softkeys span { cursor:pointer; padding:0 4px; }