| OLD | NEW |
| (Empty) |
| 1 html { | |
| 2 font-family: segoe ui, arial, helvetica, sans-serif; | |
| 3 font-size: 13px; | |
| 4 } | |
| 5 | |
| 6 #avatar-menu { | |
| 7 width: 337px; | |
| 8 height: 150px; | |
| 9 overflow: auto; | |
| 10 border: 1px solid rgba(0, 0, 0, 0.3); | |
| 11 background-color: rgba(255, 255, 255, 0.75); | |
| 12 } | |
| 13 | |
| 14 .avatar-button { | |
| 15 width: 38px; | |
| 16 height: 38px; | |
| 17 padding: 4px; | |
| 18 } | |
| 19 | |
| 20 #profile-name { | |
| 21 font-size: 125%; | |
| 22 } | |
| 23 | |
| 24 div.page > h3 { | |
| 25 font-size: 105%; | |
| 26 font-weight: bold; | |
| 27 color: rgb(75, 75, 75); | |
| 28 } | |
| 29 | |
| 30 div > p { | |
| 31 color: rgb(75, 75, 75); | |
| 32 } | |
| 33 | |
| 34 .page * input[type="button"], | |
| 35 .page * input[type="button"] { | |
| 36 min-height: 26px; | |
| 37 min-width: 87px; | |
| 38 } | |
| 39 | |
| 40 .overlay { | |
| 41 -webkit-box-align: center; | |
| 42 -webkit-box-pack: center; | |
| 43 bottom: 0; | |
| 44 display: -webkit-box; | |
| 45 left: 0; | |
| 46 padding: 20px; | |
| 47 padding-bottom: 130px; | |
| 48 position: fixed; | |
| 49 right: 0; | |
| 50 top: 0; | |
| 51 background: -webkit-linear-gradient(white, rgb(235, 235, 235)); | |
| 52 } | |
| 53 | |
| 54 .overlay .page { | |
| 55 min-width: 400px; | |
| 56 position: relative; | |
| 57 } | |
| 58 | |
| 59 #new-profile-overlay { | |
| 60 width: 500px; | |
| 61 } | |
| 62 | |
| 63 #footer { | |
| 64 bottom: 0; | |
| 65 position: fixed; | |
| 66 width: 100%; | |
| 67 } | |
| 68 | |
| 69 #footer-content { | |
| 70 display: -webkit-box; | |
| 71 height: 49px; | |
| 72 -webkit-box-align: center; | |
| 73 } | |
| 74 #footer-content > * { | |
| 75 margin: 0 9px; | |
| 76 } | |
| OLD | NEW |