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 { | 10 body { |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 -ms-transform: translate3d(10px, 0, 0); | 352 -ms-transform: translate3d(10px, 0, 0); |
353 transform: translate3d(10px, 0, 0); | 353 transform: translate3d(10px, 0, 0); |
354 } | 354 } |
355 } | 355 } |
356 | 356 |
357 .shake { | 357 .shake { |
358 animation: shake 0.5s; | 358 animation: shake 0.5s; |
359 -webkit-animation: shake 0.5s; | 359 -webkit-animation: shake 0.5s; |
360 } | 360 } |
361 | 361 |
| 362 /* nav-notify */ |
| 363 /* TODO(cbernaschina) fix nav-notify-ref-wrapped to nav-notify-ref when wrapper |
| 364 removed */ |
| 365 nav-notify-wrapped > div { |
| 366 float: right; |
| 367 } |
| 368 nav-notify-wrapped > div > div { |
| 369 display: block; |
| 370 position: absolute; |
| 371 top: 98%; |
| 372 right: 0; |
| 373 margin: 0; |
| 374 padding: 0; |
| 375 width: auto; |
| 376 z-index: 1000; |
| 377 background: none; |
| 378 } |
| 379 |
| 380 /* nav-exception & nav-event */ |
| 381 |
| 382 nav-exception > div, nav-event > div { |
| 383 position: relative; |
| 384 padding: 16px; |
| 385 margin-top: 10px; |
| 386 margin-right: 10px; |
| 387 padding-right: 25px; |
| 388 width: 500px; |
| 389 color: #ddd; |
| 390 background: rgba(0,0,0,.6); |
| 391 border: solid 2px white; |
| 392 box-shadow: 0 0 5px black; |
| 393 border-radius: 5px; |
| 394 animation: fadein 1s; |
| 395 } |
| 396 |
| 397 nav-exception *, nav-event * { |
| 398 color: #ddd; |
| 399 font-size: 12px; |
| 400 } |
| 401 |
| 402 nav-exception > div > a, nav-event > div > a { |
| 403 color: white; |
| 404 text-decoration: none; |
| 405 } |
| 406 |
| 407 nav-exception > div > a:hover, nav-event > div > a:hover { |
| 408 text-decoration: underline; |
| 409 } |
| 410 |
| 411 nav-exception > div > div { |
| 412 margin-left:20px; |
| 413 white-space: pre |
| 414 } |
| 415 |
| 416 nav-exception > div > button, nav-event > div > button { |
| 417 background: transparent; |
| 418 border: none; |
| 419 position: absolute; |
| 420 display: block; |
| 421 top: 4px; |
| 422 right: 4px; |
| 423 height: 18px; |
| 424 width: 18px; |
| 425 line-height: 16px; |
| 426 border-radius: 9px; |
| 427 color: white; |
| 428 font-size: 18px; |
| 429 cursor: pointer; |
| 430 text-align: center; |
| 431 } |
| 432 |
| 433 nav-exception > div > button:hover, nav-event > div > button:hover { |
| 434 background: rgba(255,255,255,0.5); |
| 435 } |
| 436 |
362 /* nav-refresh */ | 437 /* nav-refresh */ |
363 /* TODO(cbernaschina) fix nav-refresh-wrapped to nav-refresh when wrapper | 438 /* TODO(cbernaschina) fix nav-refresh-wrapped to nav-refresh when wrapper |
364 removed */ | 439 removed */ |
365 | 440 |
366 nav-refresh-wrapped > li > button { | 441 nav-refresh-wrapped > li > button { |
367 color: #000; | 442 color: #000; |
368 margin: 3px; | 443 margin: 3px; |
369 padding: 8px; | 444 padding: 8px; |
370 border-width: 2px; | 445 border-width: 2px; |
371 line-height: 13px; | 446 line-height: 13px; |
(...skipping 17 matching lines...) Expand all Loading... |
389 align-content: right; | 464 align-content: right; |
390 } | 465 } |
391 | 466 |
392 view-footer > a { | 467 view-footer > a { |
393 margin-bottom: 0.17em; | 468 margin-bottom: 0.17em; |
394 font-size: 90%; | 469 font-size: 90%; |
395 float: right; | 470 float: right; |
396 clear: both; | 471 clear: both; |
397 display: block; | 472 display: block; |
398 } | 473 } |
OLD | NEW |