| OLD | NEW |
| 1 body { | 1 body { |
| 2 cursor: default; | 2 cursor: default; |
| 3 font-size: 13px; | 3 font-size: 13px; |
| 4 } | 4 } |
| 5 | 5 |
| 6 .container { | 6 .container { |
| 7 -webkit-box-align: center; | 7 -webkit-box-align: center; |
| 8 -webkit-box-pack: center; | 8 -webkit-box-pack: center; |
| 9 display: -webkit-box; | 9 display: -webkit-box; |
| 10 position: fixed; | 10 position: fixed; |
| 11 left: 0; | 11 left: 0; |
| 12 bottom: 0; | 12 bottom: 0; |
| 13 right: 0; | 13 right: 0; |
| 14 top: 0; | 14 top: 0; |
| 15 } | 15 } |
| 16 | 16 |
| 17 .dialog { | 17 .dialog { |
| 18 background: white; | 18 background: white; |
| 19 border: 1px solid rgb(188, 193, 208); | 19 min-height: 225px; |
| 20 min-width: 350px; | 20 min-width: 350px; |
| 21 padding: 0; | 21 padding: 0; |
| 22 position: relative; | 22 position: relative; |
| 23 } | 23 } |
| 24 | 24 |
| 25 .dialog h1 { | 25 .dialog h1 { |
| 26 background: -webkit-linear-gradient(white, #F8F8F8); | 26 background: -webkit-linear-gradient(white, #F8F8F8); |
| 27 border-bottom: 1px solid rgba(188, 193, 208, .5); | 27 border-bottom: 1px solid rgba(188, 193, 208, .5); |
| 28 color: #53637d; | 28 color: #53637d; |
| 29 font-size: 105%; | 29 font-size: 105%; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 display: block; | 98 display: block; |
| 99 } | 99 } |
| 100 | 100 |
| 101 #puk-warning-msg { | 101 #puk-warning-msg { |
| 102 padding-bottom: 6px; | 102 padding-bottom: 6px; |
| 103 } | 103 } |
| 104 | 104 |
| 105 #puk-enter-msg { | 105 #puk-enter-msg { |
| 106 padding-top: 6px; | 106 padding-top: 6px; |
| 107 } | 107 } |
| OLD | NEW |