OLD | NEW |
1 .visible-transition { | 1 .visible-transition { |
2 transition-delay: 0s; | 2 transition-delay: 0s; |
3 transition-duration: 1s; | 3 transition-duration: 1s; |
4 transition-property: all; | 4 transition-property: all; |
5 transition-timing-function: ease; | 5 transition-timing-function: ease; |
6 } | 6 } |
7 | 7 |
8 .collapse-pane { | 8 .collapse-pane { |
9 background: #A0A0A0; | 9 background: #A0A0A0; |
10 bottom: 0; | 10 bottom: 0; |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 position: relative; | 288 position: relative; |
289 top: 1em; | 289 top: 1em; |
290 left: 0.7em; | 290 left: 0.7em; |
291 border: 2px solid #eee8d5; | 291 border: 2px solid #eee8d5; |
292 border-radius: 5px; | 292 border-radius: 5px; |
293 padding: 0.7em; | 293 padding: 0.7em; |
294 z-index: 5; | 294 z-index: 5; |
295 background: rgba(100%, 100%, 100%, 0.7); | 295 background: rgba(100%, 100%, 100%, 0.7); |
296 } | 296 } |
297 | 297 |
| 298 #disassembly-toolbox { |
| 299 position: relative; |
| 300 top: 1em; |
| 301 left: 0.7em; |
| 302 border: 2px solid #eee8d5; |
| 303 border-radius: 5px; |
| 304 padding: 0.7em; |
| 305 z-index: 5; |
| 306 } |
| 307 |
298 #load-file { | 308 #load-file { |
299 position: absolute; | 309 position: absolute; |
300 top: 0; | 310 top: 0; |
301 right: 0; | 311 right: 0; |
302 margin-top: 0.5em; | 312 margin-top: 0.5em; |
303 margin-right: 0.5em; | 313 margin-right: 0.5em; |
304 z-index: 5; | 314 z-index: 5; |
305 opacity: 0.7; | 315 opacity: 0.7; |
306 } | 316 } |
307 | 317 |
308 #load-file input { | 318 #load-file input { |
309 background: #A0A0A0; | 319 background: #A0A0A0; |
310 border-radius: 5px; | 320 border-radius: 5px; |
311 padding: 0.5em; | 321 padding: 0.5em; |
312 } | 322 } |
313 | 323 |
314 #hidden-file-upload{ | 324 #hidden-file-upload { |
315 display: none; | 325 display: none; |
316 } | 326 } |
317 | 327 |
| 328 .prof-low { |
| 329 color: #888; |
| 330 } |
| 331 |
| 332 .prof-med { |
| 333 color: #080; |
| 334 } |
| 335 |
| 336 .prof-high { |
| 337 color: #800; |
| 338 } |
OLD | NEW |