This repository has been archived by the owner on Aug 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (77 loc) · 1.7 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
:root {
--gui-width: 360px;
background-color: rgb(36, 0, 0);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
user-select: none;
}
::-webkit-scrollbar {
width: 6.9px;
}
::-webkit-scrollbar-track {
opacity: 0;
}
::-webkit-scrollbar-thumb {
background: #00000054;
}
::-webkit-scrollbar-thumb:hover {
background: #00000027;
}
#previewcontainer {
position: fixed;
top: 0;
left: 0;
width: calc(100vw - var(--gui-width));
box-sizing: border-box;
padding: 15px;
}
#guicontainer {
position: fixed;
top: 15px;
right: 15px;
height: calc(100vh - 30px);
width: calc(var(--gui-width) - 30px);
box-sizing: border-box;
padding: 12px;
background-color: rgb(71, 32, 0);
color: whitesmoke;
overflow-y: auto;
overflow-x: hidden;
}
.ygui-input, ::-webkit-file-upload-button {
width: 90px;
background-color: rgb(42, 21, 0);
color: darkorange;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#exportpanel {
width: calc(100vw - var(--gui-width));
height: 69px;
position: fixed;
bottom: 0;
left: 0;
text-align: center;
box-sizing: border-box;
}
#exportpanel button {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background-color: rgb(42, 21, 0);
color: darkorange;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
@media only screen and (max-width: 690px) {
#previewcontainer {
width: 100vw;
height: 180px;
}
#guicontainer {
top: 180px;
width: calc(100vw - 30px);
height: calc(100vh - 15px - 180px - 69px);
}
#exportpanel {
width: 100vw;
}
}