OLD | NEW |
1 * | 1 * |
2 { | 2 { |
3 font-family: Arial, sans; | 3 font-family: Arial, sans; |
4 font-size: 16px; | 4 font-size: 16px; |
5 } | 5 } |
6 | 6 |
7 body | 7 body |
8 { | 8 { |
9 background-color: #f8f6f2; | 9 background-color: #f8f6f2; |
10 background-image: url(../img/background.png); | 10 background-image: url(../img/background.png); |
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 | 434 |
435 div.animation[started="false"] | 435 div.animation[started="false"] |
436 { | 436 { |
437 cursor: pointer; | 437 cursor: pointer; |
438 } | 438 } |
439 | 439 |
440 div.animation[started="true"] | 440 div.animation[started="true"] |
441 { | 441 { |
442 -moz-user-select: none; | 442 -moz-user-select: none; |
443 } | 443 } |
| 444 |
| 445 .alert |
| 446 { |
| 447 display: block; |
| 448 padding: 15px; |
| 449 margin: 15px 0; |
| 450 background-color: #fff; |
| 451 border: 1px solid #A1A1A2; |
| 452 } |
| 453 |
| 454 html[dir="ltr"] .alert |
| 455 { |
| 456 border-left: 5px solid #D14841; |
| 457 } |
| 458 |
| 459 |
| 460 html[dir="rtl"] .alert |
| 461 { |
| 462 border-right: 5px solid #D14841; |
| 463 } |
OLD | NEW |