-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (109 loc) · 1.69 KB
/
Copy pathstyle.css
File metadata and controls
126 lines (109 loc) · 1.69 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
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
126
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #000;
overflow: hidden;
font-family: sans-serif;
}
#viewer {
width: 100vw;
height: 100vh;
display: block;
position: absolute;
top: 0;
left: 0;
}
#fileLoader {
position: absolute;
top: 16px;
left: 16px;
z-index: 20;
display: flex;
flex-direction: column;
gap: 6px;
}
#fileLoader label {
color: #aaa;
font-size: 12px;
}
#fileLoader input[type="file"] {
color: #aaa;
font-size: 12px;
}
#fileLoader input[type="text"] {
background: #222;
color: #fff;
border: 1px solid #555;
padding: 4px 8px;
border-radius: 4px;
font-size: 12px;
width: 300px;
}
#fileLoader button {
background: #333;
color: #fff;
border: 1px solid #555;
padding: 4px 10px;
border-radius: 4px;
cursor: pointer;
font-size: 12px;
width: 80px;
}
#fileLoader button:hover {
background: #444;
}
#loaderTabs {
display: flex;
gap: 0;
margin-bottom: 8px;
}
#loaderTabs .tab {
color: #888;
font-size: 12px;
padding: 4px 12px;
cursor: pointer;
border-bottom: 2px solid transparent;
}
#loaderTabs .tab.active {
color: #fff;
border-bottom-color: #fff;
}
#fileMode, #urlMode {
display: flex;
flex-direction: column;
gap: 6px;
}
#controls {
position: absolute;
bottom: 16px;
right: 16px;
color: #fff;
font-size: 12px;
z-index: 20;
display: flex;
flex-direction: column;
gap: 6px;
}
#controls input[type="range"] {
width: 120px;
display: block;
margin-top: 4px;
}
#controls label {
font-size: 12px;
}
#hotkeys {
position: absolute;
bottom: 16px;
left: 16px;
color: #fff;
font-size: 12px;
line-height: 1.6;
z-index: 20;
}
#hotkeys b {
color: #aaa;
}