This repository has been archived by the owner on Aug 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TAG_CSS.css
177 lines (154 loc) · 3.44 KB
/
TAG_CSS.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/* make scrollbar smaller on webkit browsers (not compatible with Firefox, IE and Edge) */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
#inputelem {
background-color:#cecece;
border:solid 1px #cecece;
color:#000000;
height:2vw;
padding-left:10px;
width:43vw;
box-shadow:2px 2px 0 #828181 inset;
border: 0;
border-radius:5px;
font-family: Courier;
}
body {
image-rendering: optimizeSpeed; /* STOP SMOOTHING, GIVE ME SPEED */
image-rendering: -moz-crisp-edges; /* Firefox */
image-rendering: -o-crisp-edges; /* Opera */
image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
image-rendering: pixelated; /* Chrome */
image-rendering: optimize-contrast; /* CSS3 Proposed */
-ms-interpolation-mode: nearest-neighbor; /* IE8+ */´
}
img {
image-rendering: optimizeSpeed; /* STOP SMOOTHING, GIVE ME SPEED */
image-rendering: -moz-crisp-edges; /* Firefox */
image-rendering: -o-crisp-edges; /* Opera */
image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
image-rendering: pixelated; /* Chrome */
image-rendering: optimize-contrast; /* CSS3 Proposed */
-ms-interpolation-mode: nearest-neighbor; /* IE8+ */´
}
.imgpreload {
display:none;
}
#timercontainer {
background-color:rgba(50,50,50,0.5);
border-radius:5px;
padding:5px;
color:white;
position:absolute;
z-index:11;
font-family:Courier;
font-size:0.9vw;
width:11vw;
}
#uicontainer {
font-family:Courier;
background-color:rgba(50,50,50,0.65);
border-radius:5px;
padding:10px;
z-index:11;
width:46vw;
}
#controlpanelcontainer {
font-family:Courier;
background-color:rgba(50,50,50,0.5);
border-radius:5px;
padding:5px;
z-index:11;
width:10vw;
}
#sceneselector {
width:9vw;
height:1.6vw;
font-size:0.8vw;
font-family:Courier;
}
/*#submitelem{
background-color: white;
color: black;
border: 2px solid #555555;
}*/
.hoverhelp{
background-color:#fff493;
cursor:help;
}
div#preload { display: none; }
#outputelem{
box-shadow:5px 5px 10px grey;
overflow:auto;
padding:5px;
width:45vw;
height:60vh;
background-color:#dfdfdf;
border-width:3px;
border-radius:5px;
z-index:10;
font-size:0.9vw;
}
#retryelem{
width:auto;
height:auto;
background-color:#efefef;
border-color:#efefef;
border-width:3px;
border-radius: 5px;
color:#000;
font-size:1.5vw;
}
#itemelem{
box-shadow:5px 5px 10px grey;
width:45vw;
height:2vw;
background-color:#cda732;
border-width:3px;
border-radius:5px;
z-index:10;
}
#structureelem{
box-shadow:5px 5px 10px grey;
width:45vw;
height:2vw;
background-color:#cecece;
border-width:3px;
border-radius:5px;
z-index:10;
}
#effectselem{
box-shadow:5px 5px 10px grey;
width:45vw;
height:2vw;
background-color:#76dbf8;
border-width:3px;
border-radius:5px;
z-index:10;
}
#submitelem{
width:2vw;
height:2vw;
font-size:1vw;
background-color:#efefef;
border-color:#efefef;
border-width:3px;
border-radius: 5px;
color:#000;
}
#premsg #checkload {
z-index:-20;
}
#jsout {
z-index:-20;
}