#message-box {
position: fixed;
top: 2px;
- left: 40%;
+ left: 35%;
+ width: 33%;
}
.msg-error, .msg-success, .msg-warning {
overflow: hidden;
- padding: 0.1em 0.2em;
+ padding: 0.1em 0.5em;
text-align: center;
border: 1px solid;
-moz-border-radius: 8px;
line-height: 11pt;
display: none;
- width: 200px;
+ width: 100%;
}
+#message-box * p {
+ padding: 0em;
+ margin: 0.1em;
+}
.msg-error {
background-color: red;
border-color: red;
+ color: white;
+ font-weight: bold;
}
.msg-success {
position: relative;
text-align: center;
background-color: #CCC;
- }
\ No newline at end of file
+ }