/* Dialog toolkit default stylesheet * Designed by Andrew Plotkin * * * This CSS stylesheet is in the public domain. Do whatever you want * with it. */ /* dialog_screen is a translucent rectangle that greys out the entire root element (the game beneath the dialog box). */ #dialog_screen { position: absolute; width: 100%; height: 100%; background: #808080; opacity: 0.5; } /* dialog_frame is an invisible pane that fills the root element. It exists so that the dialog can easily be centered in it. */ #dialog_frame { position: absolute; width: 100%; height: 100%; } /* dialog is the dialog div itself. It is displayed near the top of dialog_frame. The auto margins keep it horizontally centered. */ #dialog { position: relative; width: 360px; margin-left: auto; margin-right: auto; margin-top: 100px; background: white; border: 4px solid #AAA; -webkit-box-shadow: 1px 1px 15px #222; -moz-box-shadow: 1px 1px 15px #222; -webkit-border-radius: 10px; -moz-border-radius: 10px; } #dialog .DiaCaption { margin: 16px; } #dialog .DiaInput { margin: 16px; } #dialog input { width: 100%; } #dialog .DiaBody { margin: 16px; } #dialog select { width: 100%; } #dialog button { margin-left: 8px; } #dialog .DiaButtons { margin: 16px; text-align: right; } /* End of Dialog default stylesheet. */