Diff of /css/brainchop.css [000000] .. [b86468]

Switch to unified view

a b/css/brainchop.css
1
.grid-container {
2
  display: grid;
3
  grid-template-columns: auto;
4
  padding: 0vh;
5
}
6
7
.grid-item {
8
  background-color: rgba(255, 255, 255, 0.8);
9
  border: 0px solid rgba(0, 0, 0, 0.8);
10
  padding: 1vh;
11
  width: 40vw;
12
  height: auto;
13
  font-size: 15px;
14
  text-align: center;
15
}
16
17
18
.toolbarclass {
19
  background-color: white !important;
20
  font-weight: bold;
21
  box-shadow: 5px 5px;
22
} 
23
24
.titleclass {
25
  font-style: italic;
26
  font-weight: bold;
27
  color: black !important;
28
}  
29
30
.headerclass {
31
      border-left: 10px solid black!important;
32
      background: #f3f3f6a3!important;
33
      margin-left: 0!important;
34
      width: 100%!important;
35
      color: black!important;
36
      font-weight: bold;
37
      border-left-color: black!important;
38
}
39
40
.windowtitleclass {
41
  background-color: #ccc !important;
42
  box-shadow: none,
43
}      
44
45
.webixbg .webix_view {
46
  background-color:black !important;
47
  box-shadow:none;
48
}
49
50
#feedbackId {
51
  cursor: pointer;
52
  margin-right: 20px;
53
}
54
55
#resourcesHwSwId {
56
  cursor: pointer;
57
  margin-right: 20px;
58
}
59
60
#githubId {
61
  cursor: pointer;
62
  margin-right: 20px;
63
}
64
.customTheme {
65
    font-weight: bold;
66
    background-color: black;
67
    color:  white;
68
}
69
70
#annotOfContainer_0 {
71
    /*font-weight: bold;*/
72
    background-color: black;
73
    color:  white;
74
    text-align: center;
75
    height: 3vh;
76
}
77
78
#annotOfContainer_1 {
79
    /*font-weight: bold;*/
80
    background-color: black;
81
    color:  white;
82
    text-align: center;
83
    height: 3vh;
84
}
85
86
.bt_1 button.webix_button {
87
  background: #396D9E;
88
  background: -moz-linear-gradient(top, #5D91C3 0% , #396D9E 100%);
89
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0,#5D91C3), color-stop(1, black));
90
  border:1px solid #396D9E;
91
  text-shadow: 0 -1px #134471;
92
  box-shadow: inset 0px 1px 10px #8eb3d5;
93
  -webkit-box-shadow: inset 0px 1px 1px #8eb3d5;
94
  color:#FFFFFF;
95
  font-size: 13px;
96
}
97
98
.bt_1 button:active {
99
  background: #396D9E !important;
100
}    
101
102
#output_gui_container {
103
  position: absolute;
104
  top: 10%;
105
  right: 1%;
106
  height: auto;
107
}
108
109
#input_gui_container {
110
  position: absolute;
111
  top: 10%;
112
  right: 1%;
113
  height: auto;
114
}
115
116
#output-threejs-container {
117
    background-color: black!important;
118
}
119
120
.panel {
121
      position: fixed;
122
      z-index: 1;
123
      scrollbar-color: rgba(255,255,255, 1);
124
      scrollbar-width: thin;
125
      transition: 0.5s;
126
}    
127
128
.progress-line{
129
  background: linear-gradient(217deg, rgba(127,127, 127,.8), rgba(255,0,0,0) 70.71%),
130
        linear-gradient(127deg, rgba(0, 0, 0,.8), rgba(0,255,0,0) 70.71%),
131
        linear-gradient(336deg, rgba(255, 255, 255,.8), rgba(0,0,255,0) 70.71%);
132
  top: 88%;
133
  left: 2.5%;
134
  max-width: 96%;
135
  height: 1.4vh;
136
  position: absolute;
137
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
138
} 
139
140
 /*****dat.GUI List Extention***/
141
142
.dropdown-check-list {
143
  display: none;
144
  position: absolute;
145
  top: 28%;
146
  right: 1%;
147
  background-color: #222;
148
}
149
150
.dropdown-check-list .anchor {
151
  position: relative;
152
  cursor: pointer;
153
  display: inline-block;
154
  padding: 5px 50px 5px 10px;
155
  border: 1px solid #333;
156
  width: 7.5vw; /* header width */
157
}
158
159
.dropdown-check-list .anchor:after {
160
  position: absolute;
161
  content: "";
162
  border-left: 2px solid white;
163
  border-top: 2px solid white;
164
  padding: 5px;
165
  right: 10px;
166
  top: 20%;
167
  -moz-transform: rotate(-135deg);
168
  -ms-transform: rotate(-135deg);
169
  -o-transform: rotate(-135deg);
170
  -webkit-transform: rotate(-135deg);
171
  transform: rotate(-135deg);
172
}
173
174
.dropdown-check-list .anchor:active:after {
175
  right: 8px;
176
  top: 21%;
177
}
178
179
.dropdown-check-list ul.items {
180
  padding: 2px;
181
  display: '';
182
  margin: 0;
183
  border: 1px solid #333;
184
  border-top: none;
185
  max-height: 20vh;
186
  height: auto;
187
  width: 7.5vw; /* list width */
188
  overflow: scroll;        
189
}
190
191
.dropdown-check-list ul.items li {
192
  list-style: none;
193
} 
194
195
label {
196
    color: white;
197
    font-family: Consolas, Baskerville, 'Segoe UI', sans-serif;
198
    font-size: 10px;
199
}