OLD | NEW |
1 /* Global styles */ | 1 /* Global styles */ |
2 * { | 2 * { |
3 margin: 0; | 3 margin: 0; |
4 padding: 0; | 4 padding: 0; |
5 font: 400 14px 'Montserrat', sans-serif; | 5 font: 400 14px 'Montserrat', sans-serif; |
6 color: #333; | 6 color: #333; |
7 box-sizing: border-box; | 7 box-sizing: border-box; |
8 } | 8 } |
9 | 9 |
| 10 body { |
| 11 padding-top: 56px; |
| 12 } |
| 13 |
10 .content { | 14 .content { |
11 padding-left: 10%; | 15 padding-left: 10%; |
12 font: 400 14px 'Montserrat', sans-serif; | 16 font: 400 14px 'Montserrat', sans-serif; |
13 } | 17 } |
14 | 18 |
15 .content-centered { | 19 .content-centered { |
16 padding-left: 10%; | 20 padding-left: 10%; |
17 padding-right: 10%; | 21 padding-right: 10%; |
18 font: 400 14px 'Montserrat', sans-serif; | 22 font: 400 14px 'Montserrat', sans-serif; |
19 } | 23 } |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 | 295 |
292 .pointer { | 296 .pointer { |
293 cursor: pointer; | 297 cursor: pointer; |
294 } | 298 } |
295 | 299 |
296 .shadow { | 300 .shadow { |
297 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), | 301 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), |
298 0 2px 5px 0 rgba(0, 0, 0, 0.26); | 302 0 2px 5px 0 rgba(0, 0, 0, 0.26); |
299 } | 303 } |
300 | 304 |
| 305 input.textbox { |
| 306 width: 20em; |
| 307 font: 400 16px 'Montserrat', sans-serif; |
| 308 } |
| 309 |
301 @-webkit-keyframes fadeIn { | 310 @-webkit-keyframes fadeIn { |
302 0% { opacity: 0; } | 311 0% { opacity: 0; } |
303 100% { opacity: 1; } | 312 100% { opacity: 1; } |
304 } | 313 } |
305 | 314 |
306 @-moz-keyframes fadeIn { | 315 @-moz-keyframes fadeIn { |
307 0% { opacity: 0; } | 316 0% { opacity: 0; } |
308 100% { opacity: 1; } | 317 100% { opacity: 1; } |
309 } | 318 } |
310 | 319 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 -webkit-transform: translate3d(10px, 0, 0); | 356 -webkit-transform: translate3d(10px, 0, 0); |
348 -ms-transform: translate3d(10px, 0, 0); | 357 -ms-transform: translate3d(10px, 0, 0); |
349 transform: translate3d(10px, 0, 0); | 358 transform: translate3d(10px, 0, 0); |
350 } | 359 } |
351 } | 360 } |
352 | 361 |
353 .shake { | 362 .shake { |
354 animation: shake 0.5s; | 363 animation: shake 0.5s; |
355 -webkit-animation: shake 0.5s; | 364 -webkit-animation: shake 0.5s; |
356 } | 365 } |
| 366 |
| 367 /* error-ref */ |
| 368 /* TODO(cbernaschina) fix error-ref-wrapped to error-ref when wrapper removed */ |
| 369 |
| 370 error-ref-wrapped > pre { |
| 371 background-color: #f5f5f5; |
| 372 border: 1px solid #ccc; |
| 373 padding: 10px; |
| 374 font-family: consolas, courier, monospace; |
| 375 font-size: 1em; |
| 376 line-height: 1.2em; |
| 377 white-space: pre; |
| 378 } |
| 379 |
| 380 /* isolate-ref */ |
| 381 /* TODO(cbernaschina) fix isolate-ref-wrapped to isolate-ref when wrapper |
| 382 removed */ |
| 383 |
| 384 isolate-ref-wrapped > a { |
| 385 color: #0489c3; |
| 386 text-decoration: none; |
| 387 } |
| 388 |
| 389 isolate-ref-wrapped > a:hover { |
| 390 text-decoration: underline; |
| 391 } |
| 392 |
| 393 /* nav-notify */ |
| 394 /* TODO(cbernaschina) fix nav-notify-ref-wrapped to nav-notify-ref when wrapper |
| 395 removed */ |
| 396 nav-notify-wrapped > div { |
| 397 float: right; |
| 398 } |
| 399 nav-notify-wrapped > div > div { |
| 400 display: block; |
| 401 position: absolute; |
| 402 top: 98%; |
| 403 right: 0; |
| 404 margin: 0; |
| 405 padding: 0; |
| 406 width: auto; |
| 407 z-index: 1000; |
| 408 background: none; |
| 409 } |
| 410 |
| 411 /* nav-exception & nav-event */ |
| 412 |
| 413 nav-exception > div, nav-event > div { |
| 414 position: relative; |
| 415 padding: 16px; |
| 416 margin-top: 10px; |
| 417 margin-right: 10px; |
| 418 padding-right: 25px; |
| 419 width: 500px; |
| 420 color: #ddd; |
| 421 background: rgba(0,0,0,.6); |
| 422 border: solid 2px white; |
| 423 box-shadow: 0 0 5px black; |
| 424 border-radius: 5px; |
| 425 animation: fadein 1s; |
| 426 } |
| 427 |
| 428 nav-exception *, nav-event * { |
| 429 color: #ddd; |
| 430 font-size: 12px; |
| 431 } |
| 432 |
| 433 nav-exception > div > a, nav-event > div > a { |
| 434 color: white; |
| 435 text-decoration: none; |
| 436 } |
| 437 |
| 438 nav-exception > div > a:hover, nav-event > div > a:hover { |
| 439 text-decoration: underline; |
| 440 } |
| 441 |
| 442 nav-exception > div > div { |
| 443 margin-left:20px; |
| 444 white-space: pre |
| 445 } |
| 446 |
| 447 nav-exception > div > button, nav-event > div > button { |
| 448 background: transparent; |
| 449 border: none; |
| 450 position: absolute; |
| 451 display: block; |
| 452 top: 4px; |
| 453 right: 4px; |
| 454 height: 18px; |
| 455 width: 18px; |
| 456 line-height: 16px; |
| 457 border-radius: 9px; |
| 458 color: white; |
| 459 font-size: 18px; |
| 460 cursor: pointer; |
| 461 text-align: center; |
| 462 } |
| 463 |
| 464 nav-exception > div > button:hover, nav-event > div > button:hover { |
| 465 background: rgba(255,255,255,0.5); |
| 466 } |
| 467 |
| 468 /* nav-refresh */ |
| 469 /* TODO(cbernaschina) fix nav-refresh-wrapped to nav-refresh when wrapper |
| 470 removed */ |
| 471 |
| 472 nav-refresh-wrapped > li > button { |
| 473 color: #000; |
| 474 margin: 3px; |
| 475 padding: 8px; |
| 476 border-width: 2px; |
| 477 line-height: 13px; |
| 478 font: 400 13px 'Montserrat', sans-serif; |
| 479 } |
| 480 nav-refresh-wrapped > li > button[disabled] { |
| 481 color: #aaa; |
| 482 cursor: wait; |
| 483 } |
| 484 nav-refresh-wrapped > li { |
| 485 float: right; |
| 486 margin: 0; |
| 487 } |
| 488 |
| 489 /* view-footer */ |
| 490 |
| 491 view-footer { |
| 492 padding: 1em; |
| 493 padding-top: 10.3em; |
| 494 float: right; |
| 495 align-content: right; |
| 496 } |
| 497 |
| 498 view-footer > a { |
| 499 margin-bottom: 0.17em; |
| 500 font-size: 90%; |
| 501 float: right; |
| 502 clear: both; |
| 503 display: block; |
| 504 } |
| 505 |
| 506 /* vm-connect-target */ |
| 507 /* TODO(cbernaschina) fix vm-connect-target-wrapped to vm-connect-target |
| 508 when wrapper removed */ |
| 509 |
| 510 vm-connect-target > button.delete-button { |
| 511 margin-left: 0.28em; |
| 512 padding: 4px; |
| 513 background: transparent; |
| 514 border: none !important; |
| 515 } |
| 516 |
| 517 vm-connect-target > button.delete-button:hover { |
| 518 background: #ff0000; |
| 519 } |
OLD | NEW |