-
Notifications
You must be signed in to change notification settings - Fork 6
/
main.css
108 lines (106 loc) · 1.97 KB
/
main.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
@CHARSET "UTF-8";
html, body {
overflow: hidden;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
color: white;
background: #000;
font-family: 'Lucida Grande', sans-serif;
font-size: 15px;
}
#appCanvas {
width: 100%;
height: 100%;
touch-action: none;
}
#preload {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
opacity: 0.8;
background: rgb(0, 0, 0);
display: flex;
align-items: center;
justify-content: center;
}
/* customize gui */
.dg .slider {
pointer-events: none !important;
display: none !important;
width: 50% !important;
}
.dg input[type=text] {
width: 50% !important;
}
.dg .c {
width: 50% !important;
}
.dg .property-name {
width: 50% !important;
}
#notification {
height: 25px;
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
border: 1px solid #2c2c2c;
overflow-x: hidden;
overflow-y: scroll;
background: #1a1a1a;
padding: 5px;
font-size: 15px;
color: #aaa;
/*
resize: vertical;
*/
}
#notification span {
opacity: 1;
transition: opacity 1s;
}
#notification span.new {
opacity: 0;
}
#notification span.error {
color: #ff0000;
}
#notification span:first-child {
color: #ccffcc;
}
/* type=number fields */
.dg input[type=number] {
width: 50% !important;
}
.dg .c input[type=number] {
border: 0;
margin-top: 4px;
padding: 3px;
width: 100%;
float: right;
}
.dg .has-slider input[type=number] {
width: 30%;
margin-left: 0;
}
.dg .cr.number input[type=number] {
color: #2FA1D6;
}
.dg .cr.string input[type=number] {
color: #1ed36f;
}
.dg .c input[type=number] {
background: #303030;
outline: none;
}
.dg .c input[type=number]:hover {
background: #3c3c3c;
}
.dg .c input[type=number]:focus {
background: #494949;
color: #fff;
}