1body { 2 cursor: default; 3 font-size: 13px; 4} 5 6.container { 7 -webkit-box-align: center; 8 -webkit-box-pack: center; 9 display: -webkit-box; 10 position: fixed; 11 left: 0; 12 bottom: 0; 13 right: 0; 14 top: 0; 15} 16 17.dialog { 18 background: white; 19 min-height: 225px; 20 min-width: 350px; 21 padding: 0; 22 position: relative; 23} 24 25.dialog h1 { 26 background: -webkit-linear-gradient(white, #F8F8F8); 27 border-bottom: 1px solid rgba(188, 193, 208, .5); 28 color: #53637d; 29 font-size: 105%; 30 font-weight: bold; 31 margin: 0; 32 padding: 10px 15px 8px 15px; 33 text-shadow: white 0 1px 2px; 34 width: 320px; 35} 36 37.content-area { 38 padding: 10px 15px 5px 15px; 39 width: 320px; 40} 41 42.action-area { 43 -webkit-box-align: center; 44 -webkit-box-orient: horizontal; 45 -webkit-box-pack: end; 46 display: -webkit-box; 47 padding: 12px; 48} 49 50html[dir='rtl'] .action-area { 51 left: 0; 52} 53 54.action-area-right { 55 display: -webkit-box; 56} 57 58.button-strip { 59 -webkit-box-orient: horizontal; 60 display: -webkit-box; 61} 62 63.button-strip > button { 64 -webkit-margin-start: 10px; 65 display: block; 66} 67